[PATCH v2 0/2] thunderbolt: Fix S4 resume incongruities

Mario Limonciello (AMD) posted 2 patches 1 month ago
drivers/thunderbolt/nhi.c | 77 ++++++++++++++++++++++-----------------
drivers/thunderbolt/tb.c  | 29 ++++++++-------
drivers/thunderbolt/tb.h  |  1 +
3 files changed, 61 insertions(+), 46 deletions(-)
[PATCH v2 0/2] thunderbolt: Fix S4 resume incongruities
Posted by Mario Limonciello (AMD) 1 month ago
When a machine is restored from S4 if the firmware CM has created
tunnels there can be an incongruity of expectation from the kernel
when compared to booting from S5.  This series addresses those.

v1:
Link: https://lore.kernel.org/linux-usb/20251023050354.115015-1-superm1@kernel.org/

Mario Limonciello (AMD) (2):
  thunderbolt: Move nhi_reset before pmops declaration
  thunderbolt: Reset NHI during S4 restore_noirq() callback

 drivers/thunderbolt/nhi.c | 77 ++++++++++++++++++++++-----------------
 drivers/thunderbolt/tb.c  | 29 ++++++++-------
 drivers/thunderbolt/tb.h  |  1 +
 3 files changed, 61 insertions(+), 46 deletions(-)

-- 
2.43.0
Re: [PATCH v2 0/2] thunderbolt: Fix S4 resume incongruities
Posted by Mika Westerberg 1 month ago
Hi,

On Mon, Jan 05, 2026 at 11:37:47PM -0600, Mario Limonciello (AMD) wrote:
> When a machine is restored from S4 if the firmware CM has created
> tunnels there can be an incongruity of expectation from the kernel
> when compared to booting from S5.  This series addresses those.

I suspect there is no Firmware CM in AMD platforms so this actually means
the BIOS CM, correct?

However, on S4 we actually do reset host router when the "boot kernel" is
started before loading and jumping to the hibernation image. It might be
that this boot kernel tunnel configuration is causing the issues you are
seeing (can you elaborate on those?) but given that it is (typically the
same kernel binary) it should be creating the tunnels the same way.

> 
> v1:
> Link: https://lore.kernel.org/linux-usb/20251023050354.115015-1-superm1@kernel.org/
> 
> Mario Limonciello (AMD) (2):
>   thunderbolt: Move nhi_reset before pmops declaration
>   thunderbolt: Reset NHI during S4 restore_noirq() callback
> 
>  drivers/thunderbolt/nhi.c | 77 ++++++++++++++++++++++-----------------
>  drivers/thunderbolt/tb.c  | 29 ++++++++-------
>  drivers/thunderbolt/tb.h  |  1 +
>  3 files changed, 61 insertions(+), 46 deletions(-)
> 
> -- 
> 2.43.0
Re: [PATCH v2 0/2] thunderbolt: Fix S4 resume incongruities
Posted by Mario Limonciello 1 month ago
On 1/7/26 3:33 AM, Mika Westerberg wrote:
> Hi,
> 
> On Mon, Jan 05, 2026 at 11:37:47PM -0600, Mario Limonciello (AMD) wrote:
>> When a machine is restored from S4 if the firmware CM has created
>> tunnels there can be an incongruity of expectation from the kernel
>> when compared to booting from S5.  This series addresses those.
> 
> I suspect there is no Firmware CM in AMD platforms so this actually means
> the BIOS CM, correct?

That's correct.

> 
> However, on S4 we actually do reset host router when the "boot kernel" is
> started before loading and jumping to the hibernation image. 

That's only if thunderbolt.ko is built into the kernel or is included in 
the initramfs before it does the pivot to the hibernation image.

At least in the tests we were doing it's not part of the boot kernel.

> It might be
> that this boot kernel tunnel configuration is causing the issues you are
> seeing (can you elaborate on those?) 

The issues manifest "downstream" in the GPU driver.  There are a bunch 
of aux failures and a non functional display.  Tracing it back the GPU 
driver isn't alive at the time that the tunnels are attempted to be 
reconstructed at the moment and so CM tears DP tunnel down and then when 
GPU driver does come up it is not functional.

DP tunnel constructed at:

[  486.007194] thunderbolt 0000:c6:00.6: AUX RX path activation complete

First DPRx timeout at:

[  486.135483] thunderbolt 0000:c6:00.6: 0:6 <-> 2:13 (DP): DPRX read 
timeout

DP tunnel deactivating at:

  [  486.331856] thunderbolt 0000:c6:00.6: 0:6 <-> 2:13 (DP): deactivating

First DPRx DPCD reading starts at:

[  486.351765] amdgpu 0000:c4:00.0: amdgpu: [drm] DPIA AUX failed on 
0xf0000(10), error 7

I believe by doing the reset in this series we instead get HPD events 
and react to those.  If we keep things as they are today I think we need 
to work out some changes to device ordering.

> but given that it is (typically the
> same kernel binary) it should be creating the tunnels the same way.
> 
>>
>> v1:
>> Link: https://lore.kernel.org/linux-usb/20251023050354.115015-1-superm1@kernel.org/
>>
>> Mario Limonciello (AMD) (2):
>>    thunderbolt: Move nhi_reset before pmops declaration
>>    thunderbolt: Reset NHI during S4 restore_noirq() callback
>>
>>   drivers/thunderbolt/nhi.c | 77 ++++++++++++++++++++++-----------------
>>   drivers/thunderbolt/tb.c  | 29 ++++++++-------
>>   drivers/thunderbolt/tb.h  |  1 +
>>   3 files changed, 61 insertions(+), 46 deletions(-)
>>
>> -- 
>> 2.43.0
Re: [PATCH v2 0/2] thunderbolt: Fix S4 resume incongruities
Posted by Mika Westerberg 1 month ago
On Wed, Jan 07, 2026 at 02:50:54PM -0600, Mario Limonciello wrote:
> On 1/7/26 3:33 AM, Mika Westerberg wrote:
> > Hi,
> > 
> > On Mon, Jan 05, 2026 at 11:37:47PM -0600, Mario Limonciello (AMD) wrote:
> > > When a machine is restored from S4 if the firmware CM has created
> > > tunnels there can be an incongruity of expectation from the kernel
> > > when compared to booting from S5.  This series addresses those.
> > 
> > I suspect there is no Firmware CM in AMD platforms so this actually means
> > the BIOS CM, correct?
> 
> That's correct.
> 
> > 
> > However, on S4 we actually do reset host router when the "boot kernel" is
> > started before loading and jumping to the hibernation image.
> 
> That's only if thunderbolt.ko is built into the kernel or is included in the
> initramfs before it does the pivot to the hibernation image.

Ah good point.

> At least in the tests we were doing it's not part of the boot kernel.
> 
> > It might be
> > that this boot kernel tunnel configuration is causing the issues you are
> > seeing (can you elaborate on those?)
> 
> The issues manifest "downstream" in the GPU driver.  There are a bunch of
> aux failures and a non functional display.  Tracing it back the GPU driver
> isn't alive at the time that the tunnels are attempted to be reconstructed
> at the moment and so CM tears DP tunnel down and then when GPU driver does
> come up it is not functional.
> 
> DP tunnel constructed at:
> 
> [  486.007194] thunderbolt 0000:c6:00.6: AUX RX path activation complete
> 
> First DPRx timeout at:
> 
> [  486.135483] thunderbolt 0000:c6:00.6: 0:6 <-> 2:13 (DP): DPRX read
> timeout
> 
> DP tunnel deactivating at:
> 
>  [  486.331856] thunderbolt 0000:c6:00.6: 0:6 <-> 2:13 (DP): deactivating

Hmm, we have dprx_timeout by default 12 seconds. How come it tears down the
tunnel already?

> 
> First DPRx DPCD reading starts at:
> 
> [  486.351765] amdgpu 0000:c4:00.0: amdgpu: [drm] DPIA AUX failed on
> 0xf0000(10), error 7

This would have maked it within the 12s if I read the timestamps right.
Re: [PATCH v2 0/2] thunderbolt: Fix S4 resume incongruities
Posted by Mario Limonciello 4 weeks, 1 day ago
On 1/8/26 5:42 AM, Mika Westerberg wrote:
> On Wed, Jan 07, 2026 at 02:50:54PM -0600, Mario Limonciello wrote:
>> On 1/7/26 3:33 AM, Mika Westerberg wrote:
>>> Hi,
>>>
>>> On Mon, Jan 05, 2026 at 11:37:47PM -0600, Mario Limonciello (AMD) wrote:
>>>> When a machine is restored from S4 if the firmware CM has created
>>>> tunnels there can be an incongruity of expectation from the kernel
>>>> when compared to booting from S5.  This series addresses those.
>>>
>>> I suspect there is no Firmware CM in AMD platforms so this actually means
>>> the BIOS CM, correct?
>>
>> That's correct.
>>
>>>
>>> However, on S4 we actually do reset host router when the "boot kernel" is
>>> started before loading and jumping to the hibernation image.
>>
>> That's only if thunderbolt.ko is built into the kernel or is included in the
>> initramfs before it does the pivot to the hibernation image.
> 
> Ah good point.
> 
>> At least in the tests we were doing it's not part of the boot kernel.
>>
>>> It might be
>>> that this boot kernel tunnel configuration is causing the issues you are
>>> seeing (can you elaborate on those?)
>>
>> The issues manifest "downstream" in the GPU driver.  There are a bunch of
>> aux failures and a non functional display.  Tracing it back the GPU driver
>> isn't alive at the time that the tunnels are attempted to be reconstructed
>> at the moment and so CM tears DP tunnel down and then when GPU driver does
>> come up it is not functional.
>>
>> DP tunnel constructed at:
>>
>> [  486.007194] thunderbolt 0000:c6:00.6: AUX RX path activation complete
>>
>> First DPRx timeout at:
>>
>> [  486.135483] thunderbolt 0000:c6:00.6: 0:6 <-> 2:13 (DP): DPRX read
>> timeout
>>
>> DP tunnel deactivating at:
>>
>>   [  486.331856] thunderbolt 0000:c6:00.6: 0:6 <-> 2:13 (DP): deactivating
> 
> Hmm, we have dprx_timeout by default 12 seconds. How come it tears down the
> tunnel already?

*I believe* it's because of a hot unplug event that occurs from it not 
working.

> 
>>
>> First DPRx DPCD reading starts at:
>>
>> [  486.351765] amdgpu 0000:c4:00.0: amdgpu: [drm] DPIA AUX failed on
>> 0xf0000(10), error 7
> 
> This would have maked it within the 12s if I read the timestamps right.

Let me just share the whole log so you can see the full context.

https://gist.github.com/superm1/6798fff44d0875b4ed0fe43d0794f81e

Notice that GPU driver resume hasn't started yet at the time of the 
first two instances of DPRX timeout.  This is the time that display has 
been brought back up.

[  486.328339] amdgpu 0000:c4:00.0: amdgpu: [drm] DMUB hardware 
initialized: version=0x09001C01
Re: [PATCH v2 0/2] thunderbolt: Fix S4 resume incongruities
Posted by Mika Westerberg 4 weeks, 1 day ago
On Thu, Jan 08, 2026 at 01:18:58PM -0600, Mario Limonciello wrote:
> On 1/8/26 5:42 AM, Mika Westerberg wrote:
> > On Wed, Jan 07, 2026 at 02:50:54PM -0600, Mario Limonciello wrote:
> > > On 1/7/26 3:33 AM, Mika Westerberg wrote:
> > > > Hi,
> > > > 
> > > > On Mon, Jan 05, 2026 at 11:37:47PM -0600, Mario Limonciello (AMD) wrote:
> > > > > When a machine is restored from S4 if the firmware CM has created
> > > > > tunnels there can be an incongruity of expectation from the kernel
> > > > > when compared to booting from S5.  This series addresses those.
> > > > 
> > > > I suspect there is no Firmware CM in AMD platforms so this actually means
> > > > the BIOS CM, correct?
> > > 
> > > That's correct.
> > > 
> > > > 
> > > > However, on S4 we actually do reset host router when the "boot kernel" is
> > > > started before loading and jumping to the hibernation image.
> > > 
> > > That's only if thunderbolt.ko is built into the kernel or is included in the
> > > initramfs before it does the pivot to the hibernation image.
> > 
> > Ah good point.
> > 
> > > At least in the tests we were doing it's not part of the boot kernel.
> > > 
> > > > It might be
> > > > that this boot kernel tunnel configuration is causing the issues you are
> > > > seeing (can you elaborate on those?)
> > > 
> > > The issues manifest "downstream" in the GPU driver.  There are a bunch of
> > > aux failures and a non functional display.  Tracing it back the GPU driver
> > > isn't alive at the time that the tunnels are attempted to be reconstructed
> > > at the moment and so CM tears DP tunnel down and then when GPU driver does
> > > come up it is not functional.
> > > 
> > > DP tunnel constructed at:
> > > 
> > > [  486.007194] thunderbolt 0000:c6:00.6: AUX RX path activation complete
> > > 
> > > First DPRx timeout at:
> > > 
> > > [  486.135483] thunderbolt 0000:c6:00.6: 0:6 <-> 2:13 (DP): DPRX read
> > > timeout
> > > 
> > > DP tunnel deactivating at:
> > > 
> > >   [  486.331856] thunderbolt 0000:c6:00.6: 0:6 <-> 2:13 (DP): deactivating
> > 
> > Hmm, we have dprx_timeout by default 12 seconds. How come it tears down the
> > tunnel already?
> 
> *I believe* it's because of a hot unplug event that occurs from it not
> working.
> 
> > 
> > > 
> > > First DPRx DPCD reading starts at:
> > > 
> > > [  486.351765] amdgpu 0000:c4:00.0: amdgpu: [drm] DPIA AUX failed on
> > > 0xf0000(10), error 7
> > 
> > This would have maked it within the 12s if I read the timestamps right.
> 
> Let me just share the whole log so you can see the full context.
> 
> https://gist.github.com/superm1/6798fff44d0875b4ed0fe43d0794f81e

Thanks!

[Side note, you seem to have the link trained at Gen2 (20G) instead of Gen3
(40G).]

Looking at the dmesg I recalled that there is an internal report about
similar issue by Pooja and Rene (Cc'd) and it all boils down to this log
entry:

[  489.339148] thunderbolt 0000:c6:00.6: 2:13: could not allocate DP tunnel

They made a hack patch that works it around, see below. I wonder if you
could try that too? If that's the issue (not releasing HopIDs) then we need
to figure a way to fix it properly. One suggestion is to release DP
resources earlier, and of course doing full reset as done here. I would
prefer "smallest" possible change.

@Pooja, any updates on your side to this?

diff --git a/drivers/thunderbolt/tunnel.c b/drivers/thunderbolt/tunnel.c
index 28c1e5c062f3..45f7ee940f10 100644
--- a/drivers/thunderbolt/tunnel.c
+++ b/drivers/thunderbolt/tunnel.c
@@ -1084,6 +1084,9 @@ static void tb_dp_dprx_work(struct work_struct *work)
 
 static int tb_dp_dprx_start(struct tb_tunnel *tunnel)
 {
+	if (tunnel->dprx_started)
+		return 0;
+
 	/*
 	 * Bump up the reference to keep the tunnel around. It will be
 	 * dropped in tb_dp_dprx_stop() once the tunnel is deactivated.
-- 
2.43.0
Re: [PATCH v2 0/2] thunderbolt: Fix S4 resume incongruities
Posted by Katiyar, Pooja 4 weeks ago
Hi,

On Thu, Jan 8, 2026 at 11:23:18PM -0800, Mika Westerberg wrote:
> On Thu, Jan 08, 2026 at 01:18:58PM -0600, Mario Limonciello wrote:
>> On 1/8/26 5:42 AM, Mika Westerberg wrote:
>>
>> Let me just share the whole log so you can see the full context.
>>
>> https://gist.github.com/superm1/6798fff44d0875b4ed0fe43d0794f81e
> 
> Thanks!
> 
> [Side note, you seem to have the link trained at Gen2 (20G) instead of Gen3
> (40G).]
> 
> Looking at the dmesg I recalled that there is an internal report about
> similar issue by Pooja and Rene (Cc'd) and it all boils down to this log
> entry:
> 
> [  489.339148] thunderbolt 0000:c6:00.6: 2:13: could not allocate DP tunnel
> 
> They made a hack patch that works it around, see below. I wonder if you
> could try that too? If that's the issue (not releasing HopIDs) then we need
> to figure a way to fix it properly. One suggestion is to release DP
> resources earlier, and of course doing full reset as done here. I would
> prefer "smallest" possible change.
> 
> @Pooja, any updates on your side to this?

Looking at the log "could not allocate DP tunnel", this appears to be
similar to kref synchronization issue during S4 resume that we are
facing. The problem we have identified is during S4 entry, hibernation
image is created first, and then the DP tunnels are freed. This means
the hibernation image still contains the tunnels in their active state.
However, when resuming from S4, the tunnels are restored from the
hibernation image (as active) and then the resume flow reactivates
them again, causing kref count mismatch. This leads to HopID allocation
conflicts and the "could not allocate DP tunnel" error on next
connect/tunnel activation.

The hack patch works around this by preventing double activation via
dprx_started flag. You could try this hack to confirm if it's the same
issue we're dealing with.

For a proper fix, we are working on a patch which releases the DP resources
before saving the hibernation image and creates them again during resume,
managing the resources properly. The patch is currently under review and
testing and will send shortly.


> 
> diff --git a/drivers/thunderbolt/tunnel.c b/drivers/thunderbolt/tunnel.c
> index 28c1e5c062f3..45f7ee940f10 100644
> --- a/drivers/thunderbolt/tunnel.c
> +++ b/drivers/thunderbolt/tunnel.c
> @@ -1084,6 +1084,9 @@ static void tb_dp_dprx_work(struct work_struct *work)
>  
>  static int tb_dp_dprx_start(struct tb_tunnel *tunnel)
>  {
> +	if (tunnel->dprx_started)
> +		return 0;
> +
>  	/*
>  	 * Bump up the reference to keep the tunnel around. It will be
>  	 * dropped in tb_dp_dprx_stop() once the tunnel is deactivated.

Thanks,
Pooja
Re: [PATCH v2 0/2] thunderbolt: Fix S4 resume incongruities
Posted by Mario Limonciello (AMD) (kernel.org) 3 weeks, 3 days ago

On 1/9/2026 6:42 PM, Katiyar, Pooja wrote:
> Hi,
> 
> On Thu, Jan 8, 2026 at 11:23:18PM -0800, Mika Westerberg wrote:
>> On Thu, Jan 08, 2026 at 01:18:58PM -0600, Mario Limonciello wrote:
>>> On 1/8/26 5:42 AM, Mika Westerberg wrote:
>>>
>>> Let me just share the whole log so you can see the full context.
>>>
>>> https://gist.github.com/superm1/6798fff44d0875b4ed0fe43d0794f81e
>>
>> Thanks!
>>
>> [Side note, you seem to have the link trained at Gen2 (20G) instead of Gen3
>> (40G).]
>>
>> Looking at the dmesg I recalled that there is an internal report about
>> similar issue by Pooja and Rene (Cc'd) and it all boils down to this log
>> entry:
>>
>> [  489.339148] thunderbolt 0000:c6:00.6: 2:13: could not allocate DP tunnel
>>
>> They made a hack patch that works it around, see below. I wonder if you
>> could try that too? If that's the issue (not releasing HopIDs) then we need
>> to figure a way to fix it properly. One suggestion is to release DP
>> resources earlier, and of course doing full reset as done here. I would
>> prefer "smallest" possible change.
>>
>> @Pooja, any updates on your side to this?
> 
> Looking at the log "could not allocate DP tunnel", this appears to be
> similar to kref synchronization issue during S4 resume that we are
> facing. The problem we have identified is during S4 entry, hibernation
> image is created first, and then the DP tunnels are freed. This means
> the hibernation image still contains the tunnels in their active state.
> However, when resuming from S4, the tunnels are restored from the
> hibernation image (as active) and then the resume flow reactivates
> them again, causing kref count mismatch. This leads to HopID allocation
> conflicts and the "could not allocate DP tunnel" error on next
> connect/tunnel activation.
> 
> The hack patch works around this by preventing double activation via
> dprx_started flag. You could try this hack to confirm if it's the same
> issue we're dealing with.
> 
> For a proper fix, we are working on a patch which releases the DP resources
> before saving the hibernation image and creates them again during resume,
> managing the resources properly. The patch is currently under review and
> testing and will send shortly.
> 
> 

I have confirmation the hack patch does help the issue for us too.

If your patch doesn't work another logical solution could be to destroy 
all the tunnels as part of the PM freeze callback (not just the DP 
resources).  Maybe even unify the suspend and freeze codepaths for more 
opportunities for code reuse?

>>
>> diff --git a/drivers/thunderbolt/tunnel.c b/drivers/thunderbolt/tunnel.c
>> index 28c1e5c062f3..45f7ee940f10 100644
>> --- a/drivers/thunderbolt/tunnel.c
>> +++ b/drivers/thunderbolt/tunnel.c
>> @@ -1084,6 +1084,9 @@ static void tb_dp_dprx_work(struct work_struct *work)
>>   
>>   static int tb_dp_dprx_start(struct tb_tunnel *tunnel)
>>   {
>> +	if (tunnel->dprx_started)
>> +		return 0;
>> +
>>   	/*
>>   	 * Bump up the reference to keep the tunnel around. It will be
>>   	 * dropped in tb_dp_dprx_stop() once the tunnel is deactivated.
> 
> Thanks,
> Pooja
Re: [PATCH v2 0/2] thunderbolt: Fix S4 resume incongruities
Posted by Katiyar, Pooja 2 weeks, 6 days ago
Hi,

On Tue, Jan 13, 2026 at 10:44:18AM -0800, Mario Limonciello (AMD) (kernel.org) wrote:
> 
> 
> On 1/9/2026 6:42 PM, Katiyar, Pooja wrote:
>> Hi,
>>
>> On Thu, Jan 8, 2026 at 11:23:18PM -0800, Mika Westerberg wrote:
>>> On Thu, Jan 08, 2026 at 01:18:58PM -0600, Mario Limonciello wrote:
>>>> On 1/8/26 5:42 AM, Mika Westerberg wrote:
>>>>
>>>> Let me just share the whole log so you can see the full context.
>>>>
>>>> https://gist.github.com/superm1/6798fff44d0875b4ed0fe43d0794f81e
>>>
>>> Thanks!
>>>
>>> [Side note, you seem to have the link trained at Gen2 (20G) instead of Gen3
>>> (40G).]
>>>
>>> Looking at the dmesg I recalled that there is an internal report about
>>> similar issue by Pooja and Rene (Cc'd) and it all boils down to this log
>>> entry:
>>>
>>> [  489.339148] thunderbolt 0000:c6:00.6: 2:13: could not allocate DP tunnel
>>>
>>> They made a hack patch that works it around, see below. I wonder if you
>>> could try that too? If that's the issue (not releasing HopIDs) then we need
>>> to figure a way to fix it properly. One suggestion is to release DP
>>> resources earlier, and of course doing full reset as done here. I would
>>> prefer "smallest" possible change.
>>>
>>> @Pooja, any updates on your side to this?
>>
>> Looking at the log "could not allocate DP tunnel", this appears to be
>> similar to kref synchronization issue during S4 resume that we are
>> facing. The problem we have identified is during S4 entry, hibernation
>> image is created first, and then the DP tunnels are freed. This means
>> the hibernation image still contains the tunnels in their active state.
>> However, when resuming from S4, the tunnels are restored from the
>> hibernation image (as active) and then the resume flow reactivates
>> them again, causing kref count mismatch. This leads to HopID allocation
>> conflicts and the "could not allocate DP tunnel" error on next
>> connect/tunnel activation.
>>
>> The hack patch works around this by preventing double activation via
>> dprx_started flag. You could try this hack to confirm if it's the same
>> issue we're dealing with.
>>
>> For a proper fix, we are working on a patch which releases the DP resources
>> before saving the hibernation image and creates them again during resume,
>> managing the resources properly. The patch is currently under review and
>> testing and will send shortly.
>>
>>
> 
> I have confirmation the hack patch does help the issue for us too.
> 
> If your patch doesn't work another logical solution could be to destroy
> all the tunnels as part of the PM freeze callback (not just the DP
> resources).  Maybe even unify the suspend and freeze codepaths for more
> opportunities for code reuse?
> 

Thanks for confirming the hack patch helps! 

We are actually working on a solution that releases the DP resources and
suspends the switch as part of the freeze sequence. This way the hibernation
image that is stored doesn't contain any active tunnels, and during resume
we get a DP hotplug notification for a new tunnel, similar to S5. So far
this patch is working fine but is under review.

>>>
>>> diff --git a/drivers/thunderbolt/tunnel.c b/drivers/thunderbolt/tunnel.c
>>> index 28c1e5c062f3..45f7ee940f10 100644
>>> --- a/drivers/thunderbolt/tunnel.c
>>> +++ b/drivers/thunderbolt/tunnel.c
>>> @@ -1084,6 +1084,9 @@ static void tb_dp_dprx_work(struct work_struct *work)
>>>     static int tb_dp_dprx_start(struct tb_tunnel *tunnel)
>>>   {
>>> +    if (tunnel->dprx_started)
>>> +        return 0;
>>> +
>>>       /*
>>>        * Bump up the reference to keep the tunnel around. It will be
>>>        * dropped in tb_dp_dprx_stop() once the tunnel is deactivated.


Thanks,
Pooja
Re: [PATCH v2 0/2] thunderbolt: Fix S4 resume incongruities
Posted by Mario Limonciello (AMD) (kernel.org) 2 weeks, 4 days ago

On 1/17/2026 10:57 AM, Katiyar, Pooja wrote:

>> I have confirmation the hack patch does help the issue for us too.
>>
>> If your patch doesn't work another logical solution could be to destroy
>> all the tunnels as part of the PM freeze callback (not just the DP
>> resources).  Maybe even unify the suspend and freeze codepaths for more
>> opportunities for code reuse?
>>
> 
> Thanks for confirming the hack patch helps!
> 
> We are actually working on a solution that releases the DP resources and
> suspends the switch as part of the freeze sequence. This way the hibernation
> image that is stored doesn't contain any active tunnels, and during resume
> we get a DP hotplug notification for a new tunnel, similar to S5. So far
> this patch is working fine but is under review.
> 

Thanks.  If you want early testing from us too before you're ready to 
post publicly feel free to ping it offline to me too.

Thanks,
Re: [PATCH v2 0/2] thunderbolt: Fix S4 resume incongruities
Posted by Kenneth Crudup 2 weeks, 4 days ago
On 1/19/26 11:59, Mario Limonciello (AMD) (kernel.org) wrote:

> On 1/17/2026 10:57 AM, Katiyar, Pooja wrote:
> 
>>> I have confirmation the hack patch does help the issue for us too.
>>>
>>> If your patch doesn't work another logical solution could be to destroy
>>> all the tunnels as part of the PM freeze callback (not just the DP
>>> resources).  Maybe even unify the suspend and freeze codepaths for more
>>> opportunities for code reuse?
>>>
>>
>> Thanks for confirming the hack patch helps!
>>
>> We are actually working on a solution that releases the DP resources and
>> suspends the switch as part of the freeze sequence. This way the 
>> hibernation
>> image that is stored doesn't contain any active tunnels, and during 
>> resume
>> we get a DP hotplug notification for a new tunnel, similar to S5. So far
>> this patch is working fine but is under review.
>>
> 
> Thanks.  If you want early testing from us too before you're ready to 
> post publicly feel free to ping it offline to me too.

I'd like to get a CC: on that, too.

I've been testing that hack patch and will test further later tonight.

The issue I'm trying to chase down (and not sure if any of this will 
help with this, I wonder if it's really BIOS/EC related) is often times 
that after a suspend (or hibernate, but I use "suspend then hibernate", 
which I think does both and chooses which to use upon resume) and then 
connect to a different dock (or setup) from the one I'd suspended with, 
sometimes I have to unplug/replug my TB cable, otherwise I either get no 
recognition of my new display setup (and sometimes TB devices) or it'll 
try and use the same monitor resolution of the previously-connected 
monitor (as if the TB subsystem doesn't recognize things have changed).

-Kenny

-- 
Kenneth R. Crudup / Sr. SW Engineer, Scott County Consulting, Orange 
County CA

Re: [PATCH v2 0/2] thunderbolt: Fix S4 resume incongruities
Posted by Katiyar, Pooja 1 week, 1 day ago
Hello,

On Mon, Jan 19, 2026 at 02:13:50PM -0800, Kenneth Crudup wrote:
> 
> On 1/19/26 11:59, Mario Limonciello (AMD) (kernel.org) wrote:
> 
>> On 1/17/2026 10:57 AM, Katiyar, Pooja wrote:
>>
>>>> I have confirmation the hack patch does help the issue for us too.
>>>>
>>>> If your patch doesn't work another logical solution could be to destroy
>>>> all the tunnels as part of the PM freeze callback (not just the DP
>>>> resources).  Maybe even unify the suspend and freeze codepaths for more
>>>> opportunities for code reuse?
>>>>
>>>
>>> Thanks for confirming the hack patch helps!
>>>
>>> We are actually working on a solution that releases the DP resources and
>>> suspends the switch as part of the freeze sequence. This way the hibernation
>>> image that is stored doesn't contain any active tunnels, and during resume
>>> we get a DP hotplug notification for a new tunnel, similar to S5. So far
>>> this patch is working fine but is under review.
>>>
>>
>> Thanks.  If you want early testing from us too before you're ready to
>> post publicly feel free to ping it offline to me too.
> 
> I'd like to get a CC: on that, too.
> 
> I've been testing that hack patch and will test further later tonight.
> 
> The issue I'm trying to chase down (and not sure if any of this will
> help with this, I wonder if it's really BIOS/EC related) is often times
> that after a suspend (or hibernate, but I use "suspend then hibernate",
> which I think does both and chooses which to use upon resume) and then
> connect to a different dock (or setup) from the one I'd suspended with,
> sometimes I have to unplug/replug my TB cable, otherwise I either get no
> recognition of my new display setup (and sometimes TB devices) or it'll
> try and use the same monitor resolution of the previously-connected
> monitor (as if the TB subsystem doesn't recognize things have changed).
> 

Below is the patch series that addresses mentioned issue. There are two
patches in this series. The series takes care of releasing the DP resources
as part of freeze call before the hibernation image is created. You can test
it for your issues and let us know if it helps.

Please note that these changes are still under internal review and are
subject to change.

From: Pooja Katiyar <pooja.katiyar@intel.com>
Date: Thu, 22 Jan 2026 11:57:07 -0800
Subject: [RFC PATCH 1/2] thunderbolt: Add helper functions for suspend/resume
 operations

Extract common resume logic from tb_resume_noirq() into
tb_recover_tunnels() helper function to consolidate switch resume,
tunnel discovery/teardown, tunnel recreation, and topology
reinitialization logic.

Introduce __nhi_suspend_ops() and __nhi_resume_noirq() helper functions
to consolidate common suspend/resume logic used by multiple PM callbacks.

This is a preparatory cleanup for hibernation improvements.

Co-developed-by: Rene Sapiens <rene.sapiens@linux.intel.com>
Signed-off-by: Rene Sapiens <rene.sapiens@linux.intel.com>
Signed-off-by: Pooja Katiyar <pooja.katiyar@intel.com>
---
 drivers/thunderbolt/nhi.c | 46 ++++++++++++++++++++++++++-------------
 drivers/thunderbolt/tb.c  | 34 ++++++++++++++++++++---------
 2 files changed, 55 insertions(+), 25 deletions(-)

diff --git a/drivers/thunderbolt/nhi.c b/drivers/thunderbolt/nhi.c
index 6d0c9d37c55d..5b84223937fb 100644
--- a/drivers/thunderbolt/nhi.c
+++ b/drivers/thunderbolt/nhi.c
@@ -971,7 +971,14 @@ static irqreturn_t nhi_msi(int irq, void *data)
 	return IRQ_HANDLED;
 }
 
-static int __nhi_suspend_noirq(struct device *dev, bool wakeup)
+static int __nhi_suspend_ops(struct tb_nhi *nhi, bool wakeup)
+{
+	if (nhi->ops && nhi->ops->suspend_noirq)
+		return nhi->ops->suspend_noirq(nhi, wakeup);
+	return 0;
+}
+
+static int nhi_suspend_noirq(struct device *dev)
 {
 	struct pci_dev *pdev = to_pci_dev(dev);
 	struct tb *tb = pci_get_drvdata(pdev);
@@ -982,18 +989,7 @@ static int __nhi_suspend_noirq(struct device *dev, bool wakeup)
 	if (ret)
 		return ret;
 
-	if (nhi->ops && nhi->ops->suspend_noirq) {
-		ret = nhi->ops->suspend_noirq(tb->nhi, wakeup);
-		if (ret)
-			return ret;
-	}
-
-	return 0;
-}
-
-static int nhi_suspend_noirq(struct device *dev)
-{
-	return __nhi_suspend_noirq(dev, device_may_wakeup(dev));
+	return __nhi_suspend_ops(nhi, device_may_wakeup(dev));
 }
 
 static int nhi_freeze_noirq(struct device *dev)
@@ -1029,10 +1025,17 @@ static bool nhi_wake_supported(struct pci_dev *pdev)
 static int nhi_poweroff_noirq(struct device *dev)
 {
 	struct pci_dev *pdev = to_pci_dev(dev);
+	struct tb *tb = pci_get_drvdata(pdev);
+	struct tb_nhi *nhi = tb->nhi;
 	bool wakeup;
+	int ret;
+
+	ret = tb_domain_suspend_noirq(tb);
+	if (ret)
+		return ret;
 
 	wakeup = device_may_wakeup(dev) && nhi_wake_supported(pdev);
-	return __nhi_suspend_noirq(dev, wakeup);
+	return __nhi_suspend_ops(nhi, wakeup);
 }
 
 static void nhi_enable_int_throttling(struct tb_nhi *nhi)
@@ -1051,7 +1054,7 @@ static void nhi_enable_int_throttling(struct tb_nhi *nhi)
 	}
 }
 
-static int nhi_resume_noirq(struct device *dev)
+static int __nhi_resume_noirq(struct device *dev)
 {
 	struct pci_dev *pdev = to_pci_dev(dev);
 	struct tb *tb = pci_get_drvdata(pdev);
@@ -1074,6 +1077,19 @@ static int nhi_resume_noirq(struct device *dev)
 		nhi_enable_int_throttling(tb->nhi);
 	}
 
+	return 0;
+}
+
+static int nhi_resume_noirq(struct device *dev)
+{
+	struct pci_dev *pdev = to_pci_dev(dev);
+	struct tb *tb = pci_get_drvdata(pdev);
+	int ret;
+
+	ret = __nhi_resume_noirq(dev);
+	if (ret)
+		return ret;
+
 	return tb_domain_resume_noirq(tb);
 }
 
diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
index 4f5f1dfc0fbf..69015def6cd1 100644
--- a/drivers/thunderbolt/tb.c
+++ b/drivers/thunderbolt/tb.c
@@ -3110,22 +3110,21 @@ static void tb_restore_children(struct tb_switch *sw)
 	}
 }
 
-static int tb_resume_noirq(struct tb *tb)
+/**
+ * tb_recover_tunnels() - Common resume logic for suspend and hibernate
+ * @tb: Domain to resume
+ *
+ * Common recovery logic shared between suspend resume and hibernate restore.
+ * Handles switch resume, tunnel discovery/teardown, tunnel recreation, and
+ * topology reinitialization.
+ */
+static void tb_recover_tunnels(struct tb *tb)
 {
 	struct tb_cm *tcm = tb_priv(tb);
 	struct tb_tunnel *tunnel, *n;
 	unsigned int usb3_delay = 0;
 	LIST_HEAD(tunnels);
 
-	tb_dbg(tb, "resuming...\n");
-
-	/*
-	 * For non-USB4 hosts (Apple systems) remove any PCIe devices
-	 * the firmware might have setup.
-	 */
-	if (!tb_switch_is_usb4(tb->root_switch))
-		tb_switch_reset(tb->root_switch);
-
 	tb_switch_resume(tb->root_switch, false);
 	tb_free_invalid_tunnels(tb);
 	tb_free_unplugged_children(tb->root_switch);
@@ -3166,6 +3165,21 @@ static int tb_resume_noirq(struct tb *tb)
 	tb_switch_enter_redrive(tb->root_switch);
 	 /* Allow tb_handle_hotplug to progress events */
 	tcm->hotplug_active = true;
+}
+
+static int tb_resume_noirq(struct tb *tb)
+{
+	tb_dbg(tb, "resuming...\n");
+
+	/*
+	 * For non-USB4 hosts (Apple systems) remove any PCIe devices
+	 * the firmware might have setup.
+	 */
+	if (!tb_switch_is_usb4(tb->root_switch))
+		tb_switch_reset(tb->root_switch);
+
+	tb_recover_tunnels(tb);
+
 	tb_dbg(tb, "resume finished\n");
 
 	return 0;
-- 
2.43.0



From: Pooja Katiyar <pooja.katiyar@intel.com>
Date: Thu, 22 Jan 2026 15:09:19 -0800
Subject: [RFC PATCH 2/2] thunderbolt: Redefine hibernate sequence for proper
 resource management

The current implementation uses the same suspend_noirq() callback
for both system suspend and hibernation flows. This creates a fundamental
timing issue during hibernation that corrupts tunnel resources.

Current hibernation flow:
1. Hibernation begins and kernel prepares to create hibernation image.
2. Active tunnel contexts, software references (krefs), and hardware
   states are captured and preserved in the hibernation image.
3. suspend_noirq() is called after hibernation image creation is
   complete.
4. Resources are freed and switch is suspended. Since image creation
   happened before this step, the release of resources is not part of
   hibernation image.
5. System transition to S4 and firmware reinitializes all hardware state.
6. During resume, hibernation image is restored with stale tunnel data.
7. Driver attempts to use invalid references that no longer match
   hardware.
8. SWCM flow tries to reactivate tunnels based on corrupted state.

This sequence is flawed because the hibernation image contains active
tunnel contexts, software references, and hardware register states that
become completely invalid after the power cycle and firmware reset.
When the system restores from this image, the thunderbolt driver attempts
to operate on stale data structures that no longer correspond to the
actual hardware state after reinitialization.

The DP tunneling failure illustrates this clearly:
- Before hibernation entry: DP tunnel created with kref=2.
- During image creation: Tunnel context preserved with kref=2 in
  hibernation image.
- After power-off/during S4 transition: Hardware completely reset, all
  tunnels cleared by firmware.
- During restore: Hibernation image restored with stale tunnel context
  (kref=2).
- During SWCM reactivation: Driver increments kref to 3 for same tunnel
  object.
- Result: Reference count mismatch (kref=3 instead of expected 2).
- Subsequent hotplug events fail due to not enough hopids available due
  to kref count mismatch.

Fix this by redefining the hibernate sequence with dedicated callbacks:

- Hibernate prepare callback: Tear down tunnels and release resources
  as part of freeze before hibernation image creation, ensuring clean
  state is captured.
- Separate poweroff/restore callbacks: Handle hibernation-specific reset
  requirements, accounting for complete hardware reinitialization by
  firmware.
- Clear separation from suspend/resume: Distinct code paths prevent
  resource management conflicts and ensure proper timing for each flow.

This redefines the hibernate sequence to ensure hibernation images contain
only clean, inactive tunnel state that can be safely restored without
resource conflicts or hardware state mismatches.

Co-developed-by: Rene Sapiens <rene.sapiens@linux.intel.com>
Signed-off-by: Rene Sapiens <rene.sapiens@linux.intel.com>
Signed-off-by: Pooja Katiyar <pooja.katiyar@intel.com>
---
 drivers/thunderbolt/domain.c | 27 +++++++++++++
 drivers/thunderbolt/nhi.c    | 21 +++++++++-
 drivers/thunderbolt/tb.c     | 77 +++++++++++++++++++++++++++++++++---
 drivers/thunderbolt/tb.h     |  6 +++
 4 files changed, 124 insertions(+), 7 deletions(-)

diff --git a/drivers/thunderbolt/domain.c b/drivers/thunderbolt/domain.c
index 3ced37b4a869..d4f1aabb98c4 100644
--- a/drivers/thunderbolt/domain.c
+++ b/drivers/thunderbolt/domain.c
@@ -595,6 +595,33 @@ int tb_domain_thaw_noirq(struct tb *tb)
 	return ret;
 }
 
+int tb_domain_poweroff_noirq(struct tb *tb)
+{
+	int ret = 0;
+
+	mutex_lock(&tb->lock);
+	if (tb->cm_ops->poweroff_noirq)
+		ret = tb->cm_ops->poweroff_noirq(tb);
+	if (!ret)
+		tb_ctl_stop(tb->ctl);
+	mutex_unlock(&tb->lock);
+
+	return ret;
+}
+
+int tb_domain_restore_noirq(struct tb *tb)
+{
+	int ret = 0;
+
+	mutex_lock(&tb->lock);
+	tb_ctl_start(tb->ctl);
+	if (tb->cm_ops->restore_noirq)
+		ret = tb->cm_ops->restore_noirq(tb);
+	mutex_unlock(&tb->lock);
+
+	return ret;
+}
+
 void tb_domain_complete(struct tb *tb)
 {
 	if (tb->cm_ops->complete)
diff --git a/drivers/thunderbolt/nhi.c b/drivers/thunderbolt/nhi.c
index 5b84223937fb..e70201d72d2e 100644
--- a/drivers/thunderbolt/nhi.c
+++ b/drivers/thunderbolt/nhi.c
@@ -51,6 +51,8 @@ static bool host_reset = true;
 module_param(host_reset, bool, 0444);
 MODULE_PARM_DESC(host_reset, "reset USB4 host router (default: true)");
 
+static void nhi_reset(struct tb_nhi *nhi);
+
 static int ring_interrupt_index(const struct tb_ring *ring)
 {
 	int bit = ring->hop;
@@ -1030,7 +1032,7 @@ static int nhi_poweroff_noirq(struct device *dev)
 	bool wakeup;
 	int ret;
 
-	ret = tb_domain_suspend_noirq(tb);
+	ret = tb_domain_poweroff_noirq(tb);
 	if (ret)
 		return ret;
 
@@ -1080,6 +1082,21 @@ static int __nhi_resume_noirq(struct device *dev)
 	return 0;
 }
 
+static int nhi_restore_noirq(struct device *dev)
+{
+	struct pci_dev *pdev = to_pci_dev(dev);
+	struct tb *tb = pci_get_drvdata(pdev);
+	struct tb_nhi *nhi = tb->nhi;
+	int ret;
+
+	ret = __nhi_resume_noirq(dev);
+	if (ret)
+		return ret;
+
+	nhi_reset(nhi);
+	return tb_domain_restore_noirq(tb);
+}
+
 static int nhi_resume_noirq(struct device *dev)
 {
 	struct pci_dev *pdev = to_pci_dev(dev);
@@ -1465,7 +1482,7 @@ static const struct dev_pm_ops nhi_pm_ops = {
 					    * pci-tunnels stay alive.
 					    */
 	.thaw_noirq = nhi_thaw_noirq,
-	.restore_noirq = nhi_resume_noirq,
+	.restore_noirq = nhi_restore_noirq,
 	.suspend = nhi_suspend,
 	.poweroff_noirq = nhi_poweroff_noirq,
 	.poweroff = nhi_suspend,
diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
index 69015def6cd1..6d2a1814fa9a 100644
--- a/drivers/thunderbolt/tb.c
+++ b/drivers/thunderbolt/tb.c
@@ -3111,14 +3111,16 @@ static void tb_restore_children(struct tb_switch *sw)
 }
 
 /**
- * tb_recover_tunnels() - Common resume logic for suspend and hibernate
+ * tb_recover_tunnels() - Common resume logic for suspend and hibernate resume
  * @tb: Domain to resume
+ * @restore: true if this is hibernate restore, false for suspend resume
  *
  * Common recovery logic shared between suspend resume and hibernate restore.
  * Handles switch resume, tunnel discovery/teardown, tunnel recreation, and
- * topology reinitialization.
+ * topology reinitialization. For hibernate restore, also handles TMU
+ * configuration and DP resource management.
  */
-static void tb_recover_tunnels(struct tb *tb)
+static void tb_recover_tunnels(struct tb *tb, bool restore)
 {
 	struct tb_cm *tcm = tb_priv(tb);
 	struct tb_tunnel *tunnel, *n;
@@ -3128,6 +3130,18 @@ static void tb_recover_tunnels(struct tb *tb)
 	tb_switch_resume(tb->root_switch, false);
 	tb_free_invalid_tunnels(tb);
 	tb_free_unplugged_children(tb->root_switch);
+
+	if (restore) {
+		/*
+		 * Configure host router's TMU to normal mode to support
+		 * the highest CLx state. This must be done before
+		 * restoring child to ensure proper TMU configuration
+		 * based on parent setting.
+		 */
+		tb_switch_tmu_configure(tb->root_switch, TB_SWITCH_TMU_MODE_LOWRES);
+		tb_switch_tmu_enable(tb->root_switch);
+	}
+
 	tb_restore_children(tb->root_switch);
 
 	/*
@@ -3144,6 +3158,18 @@ static void tb_recover_tunnels(struct tb *tb)
 		tb_tunnel_put(tunnel);
 	}
 
+	if (restore) {
+		/*
+		 * In case of hibernation, DP resources were freed
+		 * during freeze phase. Re-discover them to make those
+		 * DP IN adapters available for tunneling.
+		 */
+		tb_discover_dp_resources(tb);
+
+		/* Add DP IN resources for the root switch */
+		tb_add_dp_resources(tb->root_switch);
+	}
+
 	/* Re-create our tunnels now */
 	list_for_each_entry_safe(tunnel, n, &tcm->tunnel_list, list) {
 		/* USB3 requires delay before it can be re-activated */
@@ -3178,13 +3204,30 @@ static int tb_resume_noirq(struct tb *tb)
 	if (!tb_switch_is_usb4(tb->root_switch))
 		tb_switch_reset(tb->root_switch);
 
-	tb_recover_tunnels(tb);
-
+	tb_recover_tunnels(tb, false);
 	tb_dbg(tb, "resume finished\n");
 
 	return 0;
 }
 
+static int tb_restore_noirq(struct tb *tb)
+{
+	tb_dbg(tb, "restoring...\n");
+
+	/*
+	 * For USB4 hosts, always reset the root switch after hibernate
+	 * restore to trigger port re-enumeration and hotplug events.
+	 */
+	if (!tb_switch_is_usb4(tb->root_switch) ||
+	    usb4_switch_version(tb->root_switch) == 1)
+		tb_switch_reset(tb->root_switch);
+
+	tb_recover_tunnels(tb, true);
+	tb_dbg(tb, "restore finished\n");
+
+	return 0;
+}
+
 static int tb_free_unplugged_xdomains(struct tb_switch *sw)
 {
 	struct tb_port *port;
@@ -3211,7 +3254,13 @@ static int tb_freeze_noirq(struct tb *tb)
 {
 	struct tb_cm *tcm = tb_priv(tb);
 
+	tb_dbg(tb, "freezing...\n");
+	tb_disconnect_and_release_dp(tb);
+	tb_switch_exit_redrive(tb->root_switch);
+	tb_switch_suspend(tb->root_switch, false);
 	tcm->hotplug_active = false;
+	tb_dbg(tb, "freeze finished\n");
+
 	return 0;
 }
 
@@ -3223,6 +3272,22 @@ static int tb_thaw_noirq(struct tb *tb)
 	return 0;
 }
 
+static int tb_poweroff_noirq(struct tb *tb)
+{
+	struct tb_cm *tcm = tb_priv(tb);
+
+	tb_dbg(tb, "powering off...\n");
+	/*
+	 * During hibernate, freeze_noirq has already suspended
+	 * the topology and freed resources. Only disable hotplug
+	 * processing.
+	 */
+	tcm->hotplug_active = false;
+	tb_dbg(tb, "poweroff finished\n");
+
+	return 0;
+}
+
 static void tb_complete(struct tb *tb)
 {
 	/*
@@ -3297,8 +3362,10 @@ static const struct tb_cm_ops tb_cm_ops = {
 	.deinit = tb_deinit,
 	.suspend_noirq = tb_suspend_noirq,
 	.resume_noirq = tb_resume_noirq,
+	.restore_noirq = tb_restore_noirq,
 	.freeze_noirq = tb_freeze_noirq,
 	.thaw_noirq = tb_thaw_noirq,
+	.poweroff_noirq = tb_poweroff_noirq,
 	.complete = tb_complete,
 	.runtime_suspend = tb_runtime_suspend,
 	.runtime_resume = tb_runtime_resume,
diff --git a/drivers/thunderbolt/tb.h b/drivers/thunderbolt/tb.h
index e96474f17067..42d924137f31 100644
--- a/drivers/thunderbolt/tb.h
+++ b/drivers/thunderbolt/tb.h
@@ -476,9 +476,11 @@ struct tb_path {
  *	     it is unregistered. Called without @tb->lock taken. Optional.
  * @suspend_noirq: Connection manager specific suspend_noirq
  * @resume_noirq: Connection manager specific resume_noirq
+ * @restore_noirq: Connection manager specific restore_noirq
  * @suspend: Connection manager specific suspend
  * @freeze_noirq: Connection manager specific freeze_noirq
  * @thaw_noirq: Connection manager specific thaw_noirq
+ * @poweroff_noirq: Connection manager specific poweroff_noirq
  * @complete: Connection manager specific complete
  * @runtime_suspend: Connection manager specific runtime_suspend
  * @runtime_resume: Connection manager specific runtime_resume
@@ -510,9 +512,11 @@ struct tb_cm_ops {
 	void (*deinit)(struct tb *tb);
 	int (*suspend_noirq)(struct tb *tb);
 	int (*resume_noirq)(struct tb *tb);
+	int (*restore_noirq)(struct tb *tb);
 	int (*suspend)(struct tb *tb);
 	int (*freeze_noirq)(struct tb *tb);
 	int (*thaw_noirq)(struct tb *tb);
+	int (*poweroff_noirq)(struct tb *tb);
 	void (*complete)(struct tb *tb);
 	int (*runtime_suspend)(struct tb *tb);
 	int (*runtime_resume)(struct tb *tb);
@@ -777,6 +781,8 @@ int tb_domain_resume_noirq(struct tb *tb);
 int tb_domain_suspend(struct tb *tb);
 int tb_domain_freeze_noirq(struct tb *tb);
 int tb_domain_thaw_noirq(struct tb *tb);
+int tb_domain_poweroff_noirq(struct tb *tb);
+int tb_domain_restore_noirq(struct tb *tb);
 void tb_domain_complete(struct tb *tb);
 int tb_domain_runtime_suspend(struct tb *tb);
 int tb_domain_runtime_resume(struct tb *tb);
-- 
2.43.0



Thanks and Regards,
Pooja

Re: [PATCH v2 0/2] thunderbolt: Fix S4 resume incongruities
Posted by Kenneth Crudup 1 week, 1 day ago
>> The issue I'm trying to chase down (and not sure if any of this will
>> help with this, I wonder if it's really BIOS/EC related) is often times
>> that after a suspend (or hibernate, but I use "suspend then hibernate",
>> which I think does both and chooses which to use upon resume) and then
>> connect to a different dock (or setup) from the one I'd suspended with,
>> sometimes I have to unplug/replug my TB cable, otherwise I either get no
>> recognition of my new display setup (and sometimes TB devices) or it'll
>> try and use the same monitor resolution of the previously-connected
>> monitor (as if the TB subsystem doesn't recognize things have changed).

On 1/29/26 15:13, Katiyar, Pooja wrote:

> Below is the patch series that addresses mentioned issue. There are two
> patches in this series. The series takes care of releasing the DP resources
> as part of freeze call before the hibernation image is created. You can test
> it for your issues and let us know if it helps.
> 
> Please note that these changes are still under internal review and are
> subject to change.

I tested this against Linus' master (4d310797262) and while the jury is 
still out on my issue (a few tests against different monitors looked 
good, the big test is when I get back home later), I did see this on the 
3rd resume from hibernate (full dmesg attached):

----
[Thu Jan 29 17:25:10 2026] [   T5543] ------------[ cut here ]------------
[Thu Jan 29 17:25:10 2026] [   T5543] WARNING: 
drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, 
CPU#12: kworker/u80:19/5543
[Thu Jan 29 17:25:10 2026] [   T5543] Modules linked in: intel_ipu6_isys 
videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm 
snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl 
snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp 
intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec 
drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper 
ttm drm_gpuvm drm_exec
[Thu Jan 29 17:25:10 2026] [   T5543] CPU: 12 UID: 0 PID: 5543 Comm: 
kworker/u80:19 Tainted: G S         O        6.19.0-rc7-kenny+ #33 PREEMPT
[Thu Jan 29 17:25:10 2026] [   T5543] Tainted: [S]=CPU_OUT_OF_SPEC, 
[O]=OOT_MODULE
[Thu Jan 29 17:25:10 2026] [   T5543] Hardware name: Dell Inc. XPS 
9320/0KNXGD, BIOS 2.26.0 10/27/2025
[Thu Jan 29 17:25:10 2026] [   T5543] Workqueue: thunderbolt1 
tb_dp_dprx_work
[Thu Jan 29 17:25:10 2026] [   T5543] RIP: 
0010:tb_tunnel_is_invalid+0x46/0x60
[Thu Jan 29 17:25:10 2026] [   T5543] Code: 00 00 00 00 48 8b 43 20 48 
8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 
01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 
5e 5d c3 31 c0 c3 cc cc
[Thu Jan 29 17:25:10 2026] [   T5543] RSP: 0000:ffffa3dc86ebbbd0 EFLAGS: 
00010246
[Thu Jan 29 17:25:10 2026] [   T5543] RAX: ffff938db2f6b8e0 RBX: 
ffff938d59164c00 RCX: 0000000000000000
[Thu Jan 29 17:25:10 2026] [   T5543] RDX: ffffa3dc86ebbc08 RSI: 
ffffa3dc86ebbc0c RDI: ffff938d4efb7680
[Thu Jan 29 17:25:10 2026] [   T5543] RBP: ffffa3dc86ebbbe0 R08: 
0000000000000000 R09: ffff938dc5344ac0
[Thu Jan 29 17:25:10 2026] [   T5543] R10: 00000000000002bf R11: 
0000000000000400 R12: ffff938d412ed960
[Thu Jan 29 17:25:10 2026] [   T5543] R13: ffff938d412ed0c8 R14: 
0000000000000001 R15: ffff938d42d30358
[Thu Jan 29 17:25:10 2026] [   T5543] FS:  0000000000000000(0000) 
GS:ffff939518d71000(0000) knlGS:0000000000000000
[Thu Jan 29 17:25:10 2026] [   T5543] CS:  0010 DS: 0000 ES: 0000 CR0: 
0000000080050033
[Thu Jan 29 17:25:10 2026] [   T5543] CR2: 0000000000000000 CR3: 
000000018aa0d001 CR4: 0000000000770ef0
[Thu Jan 29 17:25:10 2026] [   T5543] PKRU: 55555554
[Thu Jan 29 17:25:10 2026] [   T5543] Call Trace:
[Thu Jan 29 17:25:10 2026] [   T5543]  <TASK>
[Thu Jan 29 17:25:10 2026] [   T5543]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[Thu Jan 29 17:25:10 2026] [   T5543]  tb_available_bandwidth+0x333/0x450
[Thu Jan 29 17:25:10 2026] [   T5543]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[Thu Jan 29 17:25:10 2026] [   T5543]  tb_dp_tunnel_active+0x73/0x310
[Thu Jan 29 17:25:10 2026] [   T5543]  ? tb_tunnel_event+0x131/0x160
[Thu Jan 29 17:25:10 2026] [   T5543]  tb_dp_dprx_work+0xf4/0x110
[Thu Jan 29 17:25:10 2026] [   T5543]  process_scheduled_works+0x1e7/0x370
[Thu Jan 29 17:25:10 2026] [   T5543]  worker_thread+0x2ee/0x390
[Thu Jan 29 17:25:10 2026] [   T5543]  kthread+0x237/0x250
[Thu Jan 29 17:25:10 2026] [   T5543]  ? pr_cont_work+0x1c0/0x1c0
[Thu Jan 29 17:25:10 2026] [   T5543]  ? kthread_blkcg+0x30/0x30
[Thu Jan 29 17:25:10 2026] [   T5543]  ret_from_fork+0xc0/0x550
[Thu Jan 29 17:25:10 2026] [   T5543]  ? __switch_to+0x134/0x460
[Thu Jan 29 17:25:10 2026] [   T5543]  ? kthread_blkcg+0x30/0x30
[Thu Jan 29 17:25:10 2026] [   T5543]  ret_from_fork_asm+0x11/0x20
[Thu Jan 29 17:25:10 2026] [   T5543]  </TASK>
[Thu Jan 29 17:25:10 2026] [   T5543] ---[ end trace 0000000000000000 ]---
[Thu Jan 29 17:25:10 2026] [   T5543] ------------[ cut here ]------------
----

-Kenny

-- 
Kenneth R. Crudup / Sr. SW Engineer, Scott County Consulting, Orange 
County CA
[    0.000000] [      T0] Linux version 6.19.0-rc7-kenny+ (kenny@xps-9320) (Ubuntu clang version 20.1.8 (0ubuntu4), Ubuntu LLD 20.1.8) #33 SMP PREEMPT Thu Jan 29 16:54:56 PST 2026
[    0.000000] [      T0] Command line: BOOT_IMAGE=/boot/vmlinuz-6.19.0-rc7-kenny+ root=UUID=17354762-b6e0-4196-8528-2db4de1025f6 ro net.ifnames=0 mitigations=off lsm=capability,yama,selinux,bpf resume=UUID=17354762-b6e0-4196-8528-2db4de1025f6 resume_offset=368220160 panic=5 selinux=0 bdev_allow_write_mounted=1 intel_pmc_core.warn_on_s0ix_failures=1 nosmt intel_pstate=passive cpuidle.governor=teo pcie_ports=native intel_idle.max_cstate=0
[    0.000000] [      T0] KERNEL supported cpus:
[    0.000000] [      T0]   Intel GenuineIntel
[    0.000000] [      T0] x86/tme: not enabled by BIOS
[    0.000000] [      T0] x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
[    0.000000] [      T0] BIOS-provided physical RAM map:
[    0.000000] [      T0] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[    0.000000] [      T0] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x0000000000100000-0x0000000057cb5fff] usable
[    0.000000] [      T0] BIOS-e820: [mem 0x0000000057cb6000-0x000000005cd10fff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x000000005cd11000-0x000000005d571fff] ACPI NVS
[    0.000000] [      T0] BIOS-e820: [mem 0x000000005d572000-0x000000005d7fefff] ACPI data
[    0.000000] [      T0] BIOS-e820: [mem 0x000000005d7ff000-0x000000005d7fffff] usable
[    0.000000] [      T0] BIOS-e820: [mem 0x000000005d800000-0x00000000661fffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x0000000066a00000-0x00000000707fffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000f9000000-0x00000000f9ffffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] [      T0] BIOS-e820: [mem 0x0000000100000000-0x000000088f7fffff] usable
[    0.000000] [      T0] Kernel compiled without mitigations, ignoring 'mitigations'; system may still be vulnerable
[    0.000000] [      T0] SMT: disabled
[    0.000000] [      T0] NX (Execute Disable) protection: active
[    0.000000] [      T0] APIC: Static calls initialized
[    0.000000] [      T0] efi: EFI v2.7 by Dell
[    0.000000] [      T0] efi: ACPI=0x5d7fe000 ACPI 2.0=0x5d7fe014 SMBIOS=0x58806000 TPMFinalLog=0x5d48b000 ESRT=0x5879e818 MEMATTR=0x52504018 INITRD=0x52505818 RNG=0x5d747018 TPMEventLog=0x5d73a018 
[    0.000000] [      T0] random: crng init done
[    0.000000] [      T0] efi: Remove mem103: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
[    0.000000] [      T0] e820: remove [mem 0xc0000000-0xcfffffff] reserved
[    0.000000] [      T0] efi: Remove mem104: MMIO range=[0xf9000000-0xf9ffffff] (16MB) from e820 map
[    0.000000] [      T0] e820: remove [mem 0xf9000000-0xf9ffffff] reserved
[    0.000000] [      T0] efi: Remove mem106: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[    0.000000] [      T0] e820: remove [mem 0xff000000-0xffffffff] reserved
[    0.000000] [      T0] SMBIOS 3.4 present.
[    0.000000] [      T0] DMI: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[    0.000000] [      T0] DMI: Memory slots populated: 8/8
[    0.000000] [      T0] tsc: Detected 2000.000 MHz processor
[    0.000000] [      T0] tsc: Detected 1996.800 MHz TSC
[    0.000006] [      T0] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000008] [      T0] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000012] [      T0] last_pfn = 0x88f800 max_arch_pfn = 0x400000000
[    0.000018] [      T0] total RAM covered: 63168M
[    0.000161] [      T0] Found optimal setting for mtrr clean up
[    0.000162] [      T0]  gran_size: 64K 	chunk_size: 512M 	num_reg: 7  	lose cover RAM: 0G
[    0.000166] [      T0] MTRR map: 6 entries (3 fixed + 3 variable; max 23), built from 10 variable MTRRs
[    0.000168] [      T0] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000559] [      T0] e820: update [mem 0x6c000000-0xffffffff] usable ==> reserved
[    0.000562] [      T0] last_pfn = 0x5d800 max_arch_pfn = 0x400000000
[    0.006515] [      T0] esrt: Reserving ESRT space from 0x000000005879e818 to 0x000000005879e8a0.
[    0.006526] [      T0] Using GB pages for direct mapping
[    0.006749] [      T0] Secure boot disabled
[    0.006750] [      T0] RAMDISK: [mem 0x40cbc000-0x45927fff]
[    0.006754] [      T0] ACPI: Early table checksum verification disabled
[    0.006757] [      T0] ACPI: RSDP 0x000000005D7FE014 000024 (v02 DELL  )
[    0.006760] [      T0] ACPI: XSDT 0x000000005D758188 000134 (v01 DELL   Dell Inc 00000002      01000013)
[    0.006766] [      T0] ACPI: FACP 0x000000005D7F0000 000114 (v06 DELL   Dell Inc 00000002      01000013)
[    0.006771] [      T0] ACPI: DSDT 0x000000005D77B000 071977 (v02 DELL   Dell Inc 00000002      01000013)
[    0.006773] [      T0] ACPI: FACS 0x000000005D4BB000 000040
[    0.006775] [      T0] ACPI: SSDT 0x000000005D7FC000 00038C (v02 PmaxDv Pmax_Dev 00000001 INTL 20200717)
[    0.006777] [      T0] ACPI: SSDT 0x000000005D7F6000 005C55 (v02 CpuRef CpuSsdt  00003000 INTL 20200717)
[    0.006780] [      T0] ACPI: SSDT 0x000000005D7F1000 00478D (v02 DptfTb DptfTabl 00001000 INTL 20200717)
[    0.006782] [      T0] ACPI: HPET 0x000000005D7EF000 000038 (v01 DELL   Dell Inc 00000002      01000013)
[    0.006784] [      T0] ACPI: APIC 0x000000005D7EE000 0001DC (v05 DELL   Dell Inc 00000002      01000013)
[    0.006786] [      T0] ACPI: MCFG 0x000000005D7ED000 00003C (v01 DELL   Dell Inc 00000002      01000013)
[    0.006787] [      T0] ACPI: SSDT 0x000000005D779000 0013DF (v02 DELL   DellRtd3 00001000 INTL 20200717)
[    0.006789] [      T0] ACPI: SSDT 0x000000005D776000 002E95 (v02 SaSsdt SaSsdt   00003000 INTL 20200717)
[    0.006791] [      T0] ACPI: SSDT 0x000000005D774000 00132D (v02 INTEL  IgfxSsdt 00003000 INTL 20200717)
[    0.006793] [      T0] ACPI: SSDT 0x000000005D766000 00D39F (v02 INTEL  TcssSsdt 00001000 INTL 20200717)
[    0.006795] [      T0] ACPI: SSDT 0x000000005D765000 000150 (v02 INTEL  IpuSsdt  00001000 INTL 20200717)
[    0.006797] [      T0] ACPI: NHLT 0x000000005D764000 0002F1 (v00 DELL   Dell Inc 00000002      01000013)
[    0.006799] [      T0] ACPI: SSDT 0x000000005D762000 00107C (v02 DELL   UsbCTabl 00001000 INTL 20200717)
[    0.006801] [      T0] ACPI: LPIT 0x000000005D761000 0000CC (v01 DELL   Dell Inc 00000002      01000013)
[    0.006803] [      T0] ACPI: WSMT 0x000000005D760000 000028 (v01 DELL   Dell Inc 00000002      01000013)
[    0.006805] [      T0] ACPI: SSDT 0x000000005D75F000 000B44 (v02 DELL   PtidDevc 00001000 INTL 20200717)
[    0.006807] [      T0] ACPI: SSDT 0x000000005D75C000 002357 (v02 DELL   TbtTypeC 00000000 INTL 20200717)
[    0.006809] [      T0] ACPI: DBGP 0x000000005D75B000 000034 (v01 DELL   Dell Inc 00000002      01000013)
[    0.006811] [      T0] ACPI: DBG2 0x000000005D75A000 000054 (v00 DELL   Dell Inc 00000002      01000013)
[    0.006813] [      T0] ACPI: BOOT 0x000000005D759000 000028 (v01 DELL   CBX3     00000002      01000013)
[    0.006815] [      T0] ACPI: MSDM 0x000000005D7FD000 000055 (v03 DELL   CBX3     06222004 AMI  00010013)
[    0.006817] [      T0] ACPI: SSDT 0x000000005D757000 00060E (v02 DELL   Tpm2Tabl 00001000 INTL 20200717)
[    0.006819] [      T0] ACPI: TPM2 0x000000005D756000 00004C (v04 DELL   Dell Inc 00000002      01000013)
[    0.006821] [      T0] ACPI: DMAR 0x000000005D755000 0000A0 (v02 INTEL  Dell Inc 00000002      01000013)
[    0.006823] [      T0] ACPI: SSDT 0x000000005D754000 00091C (v02 DELL   xh_Dell_ 00000000 INTL 20200717)
[    0.006825] [      T0] ACPI: SSDT 0x000000005D750000 003AEA (v02 SocGpe SocGpe   00003000 INTL 20200717)
[    0.006827] [      T0] ACPI: SSDT 0x000000005D74C000 0039DA (v02 SocCmn SocCmn   00003000 INTL 20200717)
[    0.006828] [      T0] ACPI: SSDT 0x000000005D74B000 000144 (v02 Intel  ADebTabl 00001000 INTL 20200717)
[    0.006831] [      T0] ACPI: UEFI 0x000000005D486000 00063A (v01 INTEL  RstVmdE  00000000 INTL 00000000)
[    0.006833] [      T0] ACPI: UEFI 0x000000005D485000 00005C (v01 INTEL  RstVmdV  00000000 INTL 00000000)
[    0.006836] [      T0] ACPI: PHAT 0x000000005D74A000 0005AD (v01 DELL   Dell Inc 00000005 MSFT 0100000D)
[    0.006837] [      T0] ACPI: BGRT 0x000000005D749000 000038 (v01 DELL   Dell Inc 00000002      01000013)
[    0.006839] [      T0] ACPI: FPDT 0x000000005D748000 000034 (v01 DELL   Dell Inc 00000002      01000013)
[    0.006840] [      T0] ACPI: Reserving FACP table memory at [mem 0x5d7f0000-0x5d7f0113]
[    0.006841] [      T0] ACPI: Reserving DSDT table memory at [mem 0x5d77b000-0x5d7ec976]
[    0.006842] [      T0] ACPI: Reserving FACS table memory at [mem 0x5d4bb000-0x5d4bb03f]
[    0.006842] [      T0] ACPI: Reserving SSDT table memory at [mem 0x5d7fc000-0x5d7fc38b]
[    0.006843] [      T0] ACPI: Reserving SSDT table memory at [mem 0x5d7f6000-0x5d7fbc54]
[    0.006843] [      T0] ACPI: Reserving SSDT table memory at [mem 0x5d7f1000-0x5d7f578c]
[    0.006844] [      T0] ACPI: Reserving HPET table memory at [mem 0x5d7ef000-0x5d7ef037]
[    0.006844] [      T0] ACPI: Reserving APIC table memory at [mem 0x5d7ee000-0x5d7ee1db]
[    0.006845] [      T0] ACPI: Reserving MCFG table memory at [mem 0x5d7ed000-0x5d7ed03b]
[    0.006845] [      T0] ACPI: Reserving SSDT table memory at [mem 0x5d779000-0x5d77a3de]
[    0.006846] [      T0] ACPI: Reserving SSDT table memory at [mem 0x5d776000-0x5d778e94]
[    0.006846] [      T0] ACPI: Reserving SSDT table memory at [mem 0x5d774000-0x5d77532c]
[    0.006847] [      T0] ACPI: Reserving SSDT table memory at [mem 0x5d766000-0x5d77339e]
[    0.006847] [      T0] ACPI: Reserving SSDT table memory at [mem 0x5d765000-0x5d76514f]
[    0.006848] [      T0] ACPI: Reserving NHLT table memory at [mem 0x5d764000-0x5d7642f0]
[    0.006848] [      T0] ACPI: Reserving SSDT table memory at [mem 0x5d762000-0x5d76307b]
[    0.006848] [      T0] ACPI: Reserving LPIT table memory at [mem 0x5d761000-0x5d7610cb]
[    0.006849] [      T0] ACPI: Reserving WSMT table memory at [mem 0x5d760000-0x5d760027]
[    0.006849] [      T0] ACPI: Reserving SSDT table memory at [mem 0x5d75f000-0x5d75fb43]
[    0.006850] [      T0] ACPI: Reserving SSDT table memory at [mem 0x5d75c000-0x5d75e356]
[    0.006850] [      T0] ACPI: Reserving DBGP table memory at [mem 0x5d75b000-0x5d75b033]
[    0.006851] [      T0] ACPI: Reserving DBG2 table memory at [mem 0x5d75a000-0x5d75a053]
[    0.006851] [      T0] ACPI: Reserving BOOT table memory at [mem 0x5d759000-0x5d759027]
[    0.006852] [      T0] ACPI: Reserving MSDM table memory at [mem 0x5d7fd000-0x5d7fd054]
[    0.006852] [      T0] ACPI: Reserving SSDT table memory at [mem 0x5d757000-0x5d75760d]
[    0.006853] [      T0] ACPI: Reserving TPM2 table memory at [mem 0x5d756000-0x5d75604b]
[    0.006853] [      T0] ACPI: Reserving DMAR table memory at [mem 0x5d755000-0x5d75509f]
[    0.006854] [      T0] ACPI: Reserving SSDT table memory at [mem 0x5d754000-0x5d75491b]
[    0.006854] [      T0] ACPI: Reserving SSDT table memory at [mem 0x5d750000-0x5d753ae9]
[    0.006855] [      T0] ACPI: Reserving SSDT table memory at [mem 0x5d74c000-0x5d74f9d9]
[    0.006855] [      T0] ACPI: Reserving SSDT table memory at [mem 0x5d74b000-0x5d74b143]
[    0.006855] [      T0] ACPI: Reserving UEFI table memory at [mem 0x5d486000-0x5d486639]
[    0.006856] [      T0] ACPI: Reserving UEFI table memory at [mem 0x5d485000-0x5d48505b]
[    0.006856] [      T0] ACPI: Reserving PHAT table memory at [mem 0x5d74a000-0x5d74a5ac]
[    0.006857] [      T0] ACPI: Reserving BGRT table memory at [mem 0x5d749000-0x5d749037]
[    0.006857] [      T0] ACPI: Reserving FPDT table memory at [mem 0x5d748000-0x5d748033]
[    0.006915] [      T0] Zone ranges:
[    0.006915] [      T0]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.006917] [      T0]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.006918] [      T0]   Normal   [mem 0x0000000100000000-0x000000088f7fffff]
[    0.006919] [      T0] Movable zone start for each node
[    0.006920] [      T0] Early memory node ranges
[    0.006920] [      T0]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.006921] [      T0]   node   0: [mem 0x0000000000100000-0x0000000057cb5fff]
[    0.006922] [      T0]   node   0: [mem 0x000000005d7ff000-0x000000005d7fffff]
[    0.006923] [      T0]   node   0: [mem 0x0000000100000000-0x000000088f7fffff]
[    0.006925] [      T0] Initmem setup node 0 [mem 0x0000000000001000-0x000000088f7fffff]
[    0.006929] [      T0] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.006955] [      T0] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.009208] [      T0] On node 0, zone DMA32: 23369 pages in unavailable ranges
[    0.055328] [      T0] On node 0, zone Normal: 10240 pages in unavailable ranges
[    0.055341] [      T0] On node 0, zone Normal: 2048 pages in unavailable ranges
[    0.055403] [      T0] Reserving Intel graphics memory at [mem 0x6c800000-0x707fffff]
[    0.056585] [      T0] ACPI: PM-Timer IO Port: 0x1808
[    0.056592] [      T0] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.056593] [      T0] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.056593] [      T0] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.056594] [      T0] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.056594] [      T0] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.056595] [      T0] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.056595] [      T0] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.056595] [      T0] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.056596] [      T0] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.056596] [      T0] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.056596] [      T0] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.056597] [      T0] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.056597] [      T0] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.056598] [      T0] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.056598] [      T0] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.056598] [      T0] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.056599] [      T0] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.056599] [      T0] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.056599] [      T0] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.056600] [      T0] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.056600] [      T0] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.056601] [      T0] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.056601] [      T0] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.056601] [      T0] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.056719] [      T0] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.056721] [      T0] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.056723] [      T0] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.056726] [      T0] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.056726] [      T0] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.056733] [      T0] e820: update [mem 0x523e6000-0x52426fff] usable ==> reserved
[    0.056739] [      T0] TSC deadline timer available
[    0.056741] [      T0] CPU topo: Max. logical packages:   1
[    0.056742] [      T0] CPU topo: Max. logical dies:       1
[    0.056742] [      T0] CPU topo: Max. dies per package:   1
[    0.056745] [      T0] CPU topo: Max. threads per core:   2
[    0.056745] [      T0] CPU topo: Num. cores per package:    14
[    0.056746] [      T0] CPU topo: Num. threads per package:  20
[    0.056746] [      T0] CPU topo: Allowing 20 present CPUs plus 0 hotplug CPUs
[    0.056756] [      T0] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.056758] [      T0] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    0.056759] [      T0] PM: hibernation: Registered nosave memory: [mem 0x523e6000-0x52426fff]
[    0.056760] [      T0] PM: hibernation: Registered nosave memory: [mem 0x57cb6000-0x5d7fefff]
[    0.056761] [      T0] PM: hibernation: Registered nosave memory: [mem 0x5d800000-0xffffffff]
[    0.056762] [      T0] [mem 0x70800000-0xfed1ffff] available for PCI devices
[    0.056764] [      T0] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.056771] [      T0] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:20 nr_cpu_ids:20 nr_node_ids:1
[    0.057426] [      T0] percpu: Embedded 46 pages/cpu s148824 r8192 d31400 u262144
[    0.057431] [      T0] pcpu-alloc: s148824 r8192 d31400 u262144 alloc=1*2097152
[    0.057433] [      T0] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.057437] [      T0] pcpu-alloc: [0] 16 17 18 19 -- -- -- -- 
[    0.057448] [      T0] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.19.0-rc7-kenny+ root=UUID=17354762-b6e0-4196-8528-2db4de1025f6 ro net.ifnames=0 mitigations=off lsm=capability,yama,selinux,bpf resume=UUID=17354762-b6e0-4196-8528-2db4de1025f6 resume_offset=368220160 panic=5 selinux=0 bdev_allow_write_mounted=1 intel_pmc_core.warn_on_s0ix_failures=1 nosmt intel_pstate=passive cpuidle.governor=teo pcie_ports=native intel_idle.max_cstate=0
[    0.057598] [      T0] printk: log buffer data + meta data: 4194304 + 14680064 = 18874368 bytes
[    0.060005] [      T0] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.061216] [      T0] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.061382] [      T0] software IO TLB: area num 32.
[    0.071207] [      T0] Built 1 zonelists, mobility grouping on.  Total pages: 8287317
[    0.071209] [      T0] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.115659] [      T0] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=20, Nodes=1
[    0.115773] [      T0] rcu: Preemptible hierarchical RCU implementation.
[    0.115774] [      T0] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=20.
[    0.115775] [      T0] 	Trampoline variant of Tasks RCU enabled.
[    0.115775] [      T0] 	Tracing variant of Tasks RCU enabled.
[    0.115776] [      T0] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.115776] [      T0] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=20
[    0.115787] [      T0] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=20.
[    0.115789] [      T0] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=20.
[    0.115794] [      T0] NR_IRQS: 524544, nr_irqs: 2216, preallocated irqs: 16
[    0.116238] [      T0] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.116788] [      T0] Console: colour dummy device 80x25
[    0.116791] [      T0] printk: legacy console [tty0] enabled
[    0.116985] [      T0] ACPI: Core revision 20250807
[    0.117275] [      T0] hpet: HPET dysfunctional in PC10. Force disabled.
[    0.117390] [      T0] APIC: Switch to symmetric I/O mode setup
[    0.117393] [      T0] DMAR: Host address width 39
[    0.117394] [      T0] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.117399] [      T0] DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
[    0.117402] [      T0] DMAR: DRHD base: 0x000000fed92000 flags: 0x0
[    0.117405] [      T0] DMAR: dmar1: reg_base_addr fed92000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.117408] [      T0] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.117412] [      T0] DMAR: dmar2: reg_base_addr fed91000 ver 5:0 cap d2008c40660462 ecap f050da
[    0.117414] [      T0] DMAR: RMRR base: 0x0000006c000000 end: 0x000000707fffff
[    0.117417] [      T0] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 2
[    0.117419] [      T0] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.117420] [      T0] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.122755] [      T0] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.122758] [      T0] x2apic enabled
[    0.122861] [      T0] APIC: Switched APIC routing to: cluster x2apic
[    0.137197] [      T0] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x3990bec8342, max_idle_ns: 881590769617 ns
[    0.137204] [      T0] Calibrating delay loop (skipped), value calculated using timer frequency.. 3993.60 BogoMIPS (lpj=1996800)
[    0.137263] [      T0] CPU0: Thermal monitoring enabled (TM1)
[    0.137266] [      T0] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.137376] [      T0] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.137378] [      T0] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.137381] [      T0] process: using mwait in idle threads
[    0.137383] [      T0] mitigations: Enabled attack vectors: SMT mitigations: off
[    0.137386] [      T0] Speculative Store Bypass: Vulnerable
[    0.137387] [      T0] Spectre V2 : Vulnerable
[    0.137389] [      T0] Spectre V2 : User space: Vulnerable
[    0.137390] [      T0] Register File Data Sampling: Vulnerable
[    0.137391] [      T0] VMSCAPE: Vulnerable
[    0.137392] [      T0] Spectre V1 : Vulnerable: __user pointer sanitization and usercopy barriers only; no swapgs barriers
[    0.137404] [      T0] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.137406] [      T0] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.137408] [      T0] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.137409] [      T0] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.137411] [      T0] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    0.137412] [      T0] x86/fpu: Supporting XSAVE feature 0x1000: 'Control-flow Kernel registers (KVM only)'
[    0.137414] [      T0] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.137416] [      T0] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    0.137417] [      T0] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    0.137419] [      T0] x86/fpu: xstate_offset[12]:  856, xstate_sizes[12]:   24
[    0.137420] [      T0] x86/fpu: Enabled xstate features 0x1a07, context size is 880 bytes, using 'compacted' format.
[    0.138202] [      T0] Freeing SMP alternatives memory: 76K
[    0.138202] [      T0] pid_max: default: 32768 minimum: 301
[    0.138202] [      T0] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.138202] [      T0] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.138202] [      T1] smpboot: CPU0: 12th Gen Intel(R) Core(TM) i7-1280P (family: 0x6, model: 0x9a, stepping: 0x3)
[    0.138202] [      T1] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline,  AnyThread deprecated, Alderlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.138202] [      T1] core: cpu_core PMU driver: 
[    0.138202] [      T1] ... version:                   5
[    0.138202] [      T1] ... bit width:                 48
[    0.138202] [      T1] ... generic counters:          8
[    0.138202] [      T1] ... generic bitmap:            00000000000000ff
[    0.138202] [      T1] ... fixed-purpose counters:    4
[    0.138202] [      T1] ... fixed-purpose bitmap:      000000000000000f
[    0.138202] [      T1] ... value mask:                0000ffffffffffff
[    0.138202] [      T1] ... max period:                00007fffffffffff
[    0.138202] [      T1] ... global_ctrl mask:          0001000f000000ff
[    0.138202] [      T1] signal: max sigframe size: 3632
[    0.138202] [      T1] Estimated ratio of average max frequency by base frequency (times 1024): 1945
[    0.138202] [      T1] rcu: Hierarchical SRCU implementation.
[    0.138202] [      T1] rcu: 	Max phase no-delay instances is 400.
[    0.138202] [      T1] Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
[    0.138596] [     T11] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.138698] [      T1] smp: Bringing up secondary CPUs ...
[    0.138756] [      T1] smpboot: x86: Booting SMP configuration:
[    0.138757] [      T1] .... node  #0, CPUs:        #2  #4  #6  #8 #10 #12 #13 #14 #15 #16 #17 #18 #19
[    0.021454] [      T0] core: cpu_atom PMU driver: 
[    0.021454] [      T0] ... version:                   5
[    0.021454] [      T0] ... bit width:                 48
[    0.021454] [      T0] ... generic counters:          6
[    0.021454] [      T0] ... generic bitmap:            000000000000003f
[    0.021454] [      T0] ... fixed-purpose counters:    3
[    0.021454] [      T0] ... fixed-purpose bitmap:      0000000000000007
[    0.021454] [      T0] ... value mask:                0000ffffffffffff
[    0.021454] [      T0] ... max period:                00007fffffffffff
[    0.021454] [      T0] ... global_ctrl mask:          000000070000003f
[    0.144276] [      T1]   #1  #3  #5  #7  #9 #11
[    0.160067] [      T1] smp: Brought up 1 node, 14 CPUs
[    0.160077] [      T1] smpboot: Total of 14 processors activated (55910.40 BogoMIPS)
[    0.160314] [      T1] Memory: 32340852K/33149268K available (23141K kernel code, 16266K rwdata, 14028K rodata, 1636K init, 6368K bss, 782196K reserved, 0K cma-reserved)
[    0.161054] [      T1] devtmpfs: initialized
[    0.161612] [      T1] ACPI: PM: Registering ACPI NVS region [mem 0x5cd11000-0x5d571fff] (8785920 bytes)
[    0.161612] [      T1] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.161612] [      T1] posixtimers hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.161612] [      T1] futex hash table entries: 8192 (524288 bytes on 1 NUMA nodes, total 512 KiB, linear).
[    0.162203] [      T1] PM: RTC time: 01:03:35, date: 2026-01-30
[    0.162488] [      T1] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.162645] [      T1] audit: initializing netlink subsys (disabled)
[    0.162658] [    T140] audit: type=2000 audit(1769735015.025:1): state=initialized audit_enabled=0 res=1
[    0.162658] [      T1] thermal_sys: Registered thermal governor 'fair_share'
[    0.162658] [      T1] thermal_sys: Registered thermal governor 'bang_bang'
[    0.162658] [      T1] thermal_sys: Registered thermal governor 'step_wise'
[    0.162658] [      T1] thermal_sys: Registered thermal governor 'power_allocator'
[    0.162658] [      T1] cpuidle: using governor ladder
[    0.162658] [      T1] cpuidle: using governor menu
[    0.162658] [      T1] cpuidle: using governor teo
[    0.162658] [      T1] Simple Boot Flag at 0x47 set to 0x80
[    0.162658] [      T1] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.162658] [      T1] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.162658] [      T1] PCI: ECAM [mem 0xc0000000-0xce0fffff] (base 0xc0000000) for domain 0000 [bus 00-e0]
[    0.162658] [      T1] PCI: Using configuration type 1 for base access
[    0.163309] [      T1] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.163309] [      T1] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.164311] [      T1] ACPI: Added _OSI(Module Device)
[    0.164313] [      T1] ACPI: Added _OSI(Processor Device)
[    0.164315] [      T1] ACPI: Added _OSI(Processor Aggregator Device)
[    0.252492] [      T1] ACPI: 17 ACPI AML tables successfully acquired and loaded
[    0.273255] [      T1] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
[    0.273259] [      T1] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
[    0.274556] [      T1] ACPI: Dynamic OEM Table Load:
[    0.274565] [      T1] ACPI: SSDT 0xFFFF938D41DD2000 000394 (v02 PmRef  Cpu0Cst  00003001 INTL 20200717)
[    0.275529] [      T1] ACPI: Dynamic OEM Table Load:
[    0.275535] [      T1] ACPI: SSDT 0xFFFF938D428C3000 00053F (v02 PmRef  Cpu0Ist  00003000 INTL 20200717)
[    0.276498] [      T1] ACPI: Dynamic OEM Table Load:
[    0.276503] [      T1] ACPI: SSDT 0xFFFF938D41F94E00 0001AB (v02 PmRef  Cpu0Psd  00003000 INTL 20200717)
[    0.277409] [      T1] ACPI: Dynamic OEM Table Load:
[    0.277415] [      T1] ACPI: SSDT 0xFFFF938D428C1800 0004BA (v02 PmRef  Cpu0Hwp  00003000 INTL 20200717)
[    0.278637] [      T1] ACPI: Dynamic OEM Table Load:
[    0.278644] [      T1] ACPI: SSDT 0xFFFF938D428CA000 001BAF (v02 PmRef  ApIst    00003000 INTL 20200717)
[    0.280102] [      T1] ACPI: Dynamic OEM Table Load:
[    0.280108] [      T1] ACPI: SSDT 0xFFFF938D428CC000 001038 (v02 PmRef  ApHwp    00003000 INTL 20200717)
[    0.281404] [      T1] ACPI: Dynamic OEM Table Load:
[    0.281410] [      T1] ACPI: SSDT 0xFFFF938D428C8000 001349 (v02 PmRef  ApPsd    00003000 INTL 20200717)
[    0.282734] [      T1] ACPI: Dynamic OEM Table Load:
[    0.282740] [      T1] ACPI: SSDT 0xFFFF938D400DA000 000FBB (v02 PmRef  ApCst    00003000 INTL 20200717)
[    0.290080] [      T1] ACPI: EC: EC started
[    0.290081] [      T1] ACPI: EC: interrupt blocked
[    0.293282] [      T1] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[    0.293284] [      T1] ACPI: \_SB_.PC00.LPCB.ECDV: Boot DSDT EC used to handle transactions
[    0.293287] [      T1] ACPI: Interpreter enabled
[    0.293338] [      T1] ACPI: PM: (supports S0 S4 S5)
[    0.293340] [      T1] ACPI: Using IOAPIC for interrupt routing
[    0.293378] [      T1] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.293380] [      T1] PCI: Ignoring E820 reservations for host bridge windows
[    0.294663] [      T1] ACPI: Enabled 8 GPEs in block 00 to 7F
[    0.298653] [      T1] ACPI: \_SB_.PC00.XHCI.RHUB.HS10.BTRT: New power resource
[    0.304667] [      T1] ACPI: \_SB_.PC00.CNVW.WRST: New power resource
[    0.321087] [      T1] ACPI: \_SB_.PC00.TBT0: New power resource
[    0.321141] [      T1] ACPI: \_SB_.PC00.TBT1: New power resource
[    0.321191] [      T1] ACPI: \_SB_.PC00.D3C_: New power resource
[    0.541077] [      T1] ACPI: \PIN_: New power resource
[    0.541583] [      T1] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
[    0.541589] [      T1] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.543537] [      T1] acpi PNP0A08:00: _OSC: platform does not support [AER]
[    0.547438] [      T1] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR DPC]
[    0.547440] [      T1] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.552043] [      T1] PCI host bridge to bus 0000:00
[    0.552046] [      T1] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.552049] [      T1] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.552051] [      T1] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.552053] [      T1] pci_bus 0000:00: root bus resource [mem 0x70800000-0xbfffffff window]
[    0.552055] [      T1] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[    0.552057] [      T1] pci_bus 0000:00: root bus resource [bus 00-e0]
[    0.552127] [      T1] pci 0000:00:00.0: [8086:4641] type 00 class 0x060000 conventional PCI endpoint
[    0.552514] [      T1] pci 0000:00:02.0: [8086:46a6] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
[    0.552533] [      T1] pci 0000:00:02.0: BAR 0 [mem 0x603f000000-0x603fffffff 64bit]
[    0.552536] [      T1] pci 0000:00:02.0: BAR 2 [mem 0x4000000000-0x400fffffff 64bit pref]
[    0.552539] [      T1] pci 0000:00:02.0: BAR 4 [io  0x3000-0x303f]
[    0.552550] [      T1] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
[    0.552553] [      T1] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.552586] [      T1] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x00ffffff 64bit]
[    0.552588] [      T1] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x06ffffff 64bit]: contains BAR 0 for 7 VFs
[    0.552591] [      T1] pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0x1fffffff 64bit pref]
[    0.552593] [      T1] pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0xdfffffff 64bit pref]: contains BAR 2 for 7 VFs
[    0.552694] [      T1] pci 0000:00:04.0: [8086:461d] type 00 class 0x118000 conventional PCI endpoint
[    0.552726] [      T1] pci 0000:00:04.0: BAR 0 [mem 0x6040280000-0x604029ffff 64bit]
[    0.552927] [      T1] pci 0000:00:05.0: [8086:465d] type 00 class 0x048000 PCIe Root Complex Integrated Endpoint
[    0.552945] [      T1] pci 0000:00:05.0: BAR 0 [mem 0x603e000000-0x603effffff 64bit]
[    0.552952] [      T1] pci 0000:00:05.0: enabling Extended Tags
[    0.553043] [      T1] pci 0000:00:06.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[    0.553638] [      T1] pci 0000:00:07.0: [8086:466e] type 01 class 0x060400 PCIe Root Port
[    0.553655] [      T1] pci 0000:00:07.0: PCI bridge to [bus 01-3f]
[    0.553661] [      T1] pci 0000:00:07.0:   bridge window [mem 0x82000000-0x8e1fffff]
[    0.553668] [      T1] pci 0000:00:07.0:   bridge window [mem 0x6000000000-0x601bffffff 64bit pref]
[    0.553692] [      T1] pci 0000:00:07.0: Overriding RP PIO Log Size to 4
[    0.553755] [      T1] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[    0.553784] [      T1] pci 0000:00:07.0: PTM enabled (root), 4ns granularity
[    0.554528] [      T1] pci 0000:00:07.2: [8086:462f] type 01 class 0x060400 PCIe Root Port
[    0.554545] [      T1] pci 0000:00:07.2: PCI bridge to [bus 40-7e]
[    0.554550] [      T1] pci 0000:00:07.2:   bridge window [mem 0x74000000-0x801fffff]
[    0.554557] [      T1] pci 0000:00:07.2:   bridge window [mem 0x6020000000-0x603bffffff 64bit pref]
[    0.554581] [      T1] pci 0000:00:07.2: Overriding RP PIO Log Size to 4
[    0.554643] [      T1] pci 0000:00:07.2: PME# supported from D0 D3hot D3cold
[    0.554670] [      T1] pci 0000:00:07.2: PTM enabled (root), 4ns granularity
[    0.555458] [      T1] pci 0000:00:08.0: [8086:464f] type 00 class 0x088000 conventional PCI endpoint
[    0.555478] [      T1] pci 0000:00:08.0: BAR 0 [mem 0x60402e5000-0x60402e5fff 64bit]
[    0.555627] [      T1] pci 0000:00:0d.0: [8086:461e] type 00 class 0x0c0330 conventional PCI endpoint
[    0.555651] [      T1] pci 0000:00:0d.0: BAR 0 [mem 0x60402c0000-0x60402cffff 64bit]
[    0.555678] [      T1] pci 0000:00:0d.0: PME# supported from D3hot D3cold
[    0.556085] [      T1] pci 0000:00:0d.2: [8086:463e] type 00 class 0x0c0340 conventional PCI endpoint
[    0.556109] [      T1] pci 0000:00:0d.2: BAR 0 [mem 0x6040240000-0x604027ffff 64bit]
[    0.556111] [      T1] pci 0000:00:0d.2: BAR 2 [mem 0x60402e4000-0x60402e4fff 64bit]
[    0.556135] [      T1] pci 0000:00:0d.2: supports D1 D2
[    0.556136] [      T1] pci 0000:00:0d.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.556228] [      T1] pci 0000:00:0d.3: [8086:466d] type 00 class 0x0c0340 conventional PCI endpoint
[    0.556251] [      T1] pci 0000:00:0d.3: BAR 0 [mem 0x6040200000-0x604023ffff 64bit]
[    0.556254] [      T1] pci 0000:00:0d.3: BAR 2 [mem 0x60402e3000-0x60402e3fff 64bit]
[    0.556278] [      T1] pci 0000:00:0d.3: supports D1 D2
[    0.556279] [      T1] pci 0000:00:0d.3: PME# supported from D0 D1 D2 D3hot D3cold
[    0.556499] [      T1] pci 0000:00:0e.0: [8086:467f] type 00 class 0x010400 PCIe Root Complex Integrated Endpoint
[    0.556530] [      T1] pci 0000:00:0e.0: BAR 0 [mem 0x603c000000-0x603dffffff 64bit]
[    0.556533] [      T1] pci 0000:00:0e.0: BAR 2 [mem 0x72000000-0x73ffffff]
[    0.556536] [      T1] pci 0000:00:0e.0: BAR 4 [mem 0x6040100000-0x60401fffff 64bit]
[    0.556917] [      T1] pci 0000:00:12.0: [8086:51fc] type 00 class 0x070000 conventional PCI endpoint
[    0.556973] [      T1] pci 0000:00:12.0: BAR 0 [mem 0x60402b0000-0x60402bffff 64bit]
[    0.557026] [      T1] pci 0000:00:12.0: PME# supported from D0 D3hot
[    0.557394] [      T1] pci 0000:00:14.0: [8086:51ed] type 00 class 0x0c0330 conventional PCI endpoint
[    0.557446] [      T1] pci 0000:00:14.0: BAR 0 [mem 0x60402a0000-0x60402affff 64bit]
[    0.557505] [      T1] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.557942] [      T1] pci 0000:00:14.2: [8086:51ef] type 00 class 0x050000 conventional PCI endpoint
[    0.557997] [      T1] pci 0000:00:14.2: BAR 0 [mem 0x60402d8000-0x60402dbfff 64bit]
[    0.558004] [      T1] pci 0000:00:14.2: BAR 2 [mem 0x60402e2000-0x60402e2fff 64bit]
[    0.558260] [      T1] pci 0000:00:14.3: [8086:51f0] type 00 class 0x028000 PCIe Root Complex Integrated Endpoint
[    0.558361] [      T1] pci 0000:00:14.3: BAR 0 [mem 0x60402d4000-0x60402d7fff 64bit]
[    0.558542] [      T1] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
[    0.559546] [      T1] pci 0000:00:15.0: [8086:51e8] type 00 class 0x0c8000 conventional PCI endpoint
[    0.561467] [      T1] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[    0.573521] [      T1] pci 0000:00:15.1: [8086:51e9] type 00 class 0x0c8000 conventional PCI endpoint
[    0.573632] [      T1] pci 0000:00:15.1: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[    0.583588] [      T1] pci 0000:00:16.0: [8086:51e0] type 00 class 0x078000 conventional PCI endpoint
[    0.583648] [      T1] pci 0000:00:16.0: BAR 0 [mem 0x60402df000-0x60402dffff 64bit]
[    0.583713] [      T1] pci 0000:00:16.0: PME# supported from D3hot
[    0.584207] [      T1] pci 0000:00:1e.0: [8086:51a8] type 00 class 0x078000 conventional PCI endpoint
[    0.584324] [      T1] pci 0000:00:1e.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[    0.594564] [      T1] pci 0000:00:1e.3: [8086:51ab] type 00 class 0x0c8000 conventional PCI endpoint
[    0.594632] [      T1] pci 0000:00:1e.3: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[    0.604506] [      T1] pci 0000:00:1f.0: [8086:5182] type 00 class 0x060100 conventional PCI endpoint
[    0.604856] [      T1] pci 0000:00:1f.3: [8086:51c8] type 00 class 0x040100 conventional PCI endpoint
[    0.604992] [      T1] pci 0000:00:1f.3: BAR 0 [mem 0x60402d0000-0x60402d3fff 64bit]
[    0.605009] [      T1] pci 0000:00:1f.3: BAR 4 [mem 0x6040000000-0x60400fffff 64bit]
[    0.605138] [      T1] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.605463] [      T1] pci 0000:00:1f.4: [8086:51a3] type 00 class 0x0c0500 conventional PCI endpoint
[    0.605522] [      T1] pci 0000:00:1f.4: BAR 0 [mem 0x60402dc000-0x60402dc0ff 64bit]
[    0.605543] [      T1] pci 0000:00:1f.4: BAR 4 [io  0xefa0-0xefbf]
[    0.605803] [      T1] pci 0000:00:1f.5: [8086:51a4] type 00 class 0x0c8000 conventional PCI endpoint
[    0.605864] [      T1] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[    0.605971] [      T1] pci 0000:00:07.0: PCI bridge to [bus 01-3f]
[    0.606044] [      T1] pci 0000:40:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Upstream Port
[    0.606087] [      T1] pci 0000:40:00.0: PCI bridge to [bus 41-7e]
[    0.606100] [      T1] pci 0000:40:00.0:   bridge window [mem 0x74000000-0x7fffffff]
[    0.606116] [      T1] pci 0000:40:00.0:   bridge window [mem 0x6020000000-0x603befffff 64bit pref]
[    0.606135] [      T1] pci 0000:40:00.0: enabling Extended Tags
[    0.606290] [      T1] pci 0000:40:00.0: supports D1 D2
[    0.606291] [      T1] pci 0000:40:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.606432] [      T1] pci 0000:40:00.0: PTM enabled, 4ns granularity
[    0.608245] [      T1] pci 0000:00:07.2: PCI bridge to [bus 40-7e]
[    0.608340] [      T1] pci 0000:41:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[    0.608383] [      T1] pci 0000:41:00.0: PCI bridge to [bus 42]
[    0.608431] [      T1] pci 0000:41:00.0: enabling Extended Tags
[    0.608593] [      T1] pci 0000:41:00.0: supports D1 D2
[    0.608594] [      T1] pci 0000:41:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.608853] [      T1] pci 0000:41:01.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[    0.608896] [      T1] pci 0000:41:01.0: PCI bridge to [bus 43-55]
[    0.608909] [      T1] pci 0000:41:01.0:   bridge window [mem 0x7c000000-0x7fffffff]
[    0.608926] [      T1] pci 0000:41:01.0:   bridge window [mem 0x6032a00000-0x603befffff 64bit pref]
[    0.608947] [      T1] pci 0000:41:01.0: enabling Extended Tags
[    0.609111] [      T1] pci 0000:41:01.0: supports D1 D2
[    0.609113] [      T1] pci 0000:41:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.609367] [      T1] pci 0000:41:02.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[    0.609410] [      T1] pci 0000:41:02.0: PCI bridge to [bus 56-68]
[    0.609423] [      T1] pci 0000:41:02.0:   bridge window [mem 0x78000000-0x7bffffff]
[    0.609439] [      T1] pci 0000:41:02.0:   bridge window [mem 0x6029500000-0x60329fffff 64bit pref]
[    0.609461] [      T1] pci 0000:41:02.0: enabling Extended Tags
[    0.609625] [      T1] pci 0000:41:02.0: supports D1 D2
[    0.609626] [      T1] pci 0000:41:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.609880] [      T1] pci 0000:41:03.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[    0.609923] [      T1] pci 0000:41:03.0: PCI bridge to [bus 69-7d]
[    0.609936] [      T1] pci 0000:41:03.0:   bridge window [mem 0x74000000-0x77ffffff]
[    0.609953] [      T1] pci 0000:41:03.0:   bridge window [mem 0x6020000000-0x60294fffff 64bit pref]
[    0.609974] [      T1] pci 0000:41:03.0: enabling Extended Tags
[    0.610138] [      T1] pci 0000:41:03.0: supports D1 D2
[    0.610140] [      T1] pci 0000:41:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.610393] [      T1] pci 0000:41:04.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[    0.610437] [      T1] pci 0000:41:04.0: PCI bridge to [bus 7e]
[    0.610484] [      T1] pci 0000:41:04.0: enabling Extended Tags
[    0.610648] [      T1] pci 0000:41:04.0: supports D1 D2
[    0.610650] [      T1] pci 0000:41:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.610910] [      T1] pci 0000:40:00.0: PCI bridge to [bus 41-7e]
[    0.610979] [      T1] pci 0000:41:00.0: PCI bridge to [bus 42]
[    0.611051] [      T1] pci 0000:41:01.0: PCI bridge to [bus 43-55]
[    0.611124] [      T1] pci 0000:41:02.0: PCI bridge to [bus 56-68]
[    0.611198] [      T1] pci 0000:41:03.0: PCI bridge to [bus 69-7d]
[    0.611270] [      T1] pci 0000:41:04.0: PCI bridge to [bus 7e]
[    0.611352] [      T1] pci_bus 0000:00: on NUMA node 0
[    0.615593] [      T1] ACPI: \_SB_.PEPD: Duplicate LPS0 _DSM functions (mask: 0x7f)
[    0.615596] [      T1] Low-power S0 idle used by default for system suspend
[    0.624207] [      T1] ACPI: EC: interrupt unblocked
[    0.624209] [      T1] ACPI: EC: event unblocked
[    0.624249] [      T1] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[    0.624251] [      T1] ACPI: EC: GPE=0x6e
[    0.624252] [      T1] ACPI: \_SB_.PC00.LPCB.ECDV: Boot DSDT EC initialization complete
[    0.624254] [      T1] ACPI: \_SB_.PC00.LPCB.ECDV: EC: Used to handle transactions and events
[    0.624320] [      T1] iommu: Default domain type: Translated
[    0.624320] [      T1] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.624320] [      T1] SCSI subsystem initialized
[    0.624320] [      T1] ACPI: bus type USB registered
[    0.624320] [      T1] usbcore: registered new interface driver usbfs
[    0.624320] [      T1] usbcore: registered new interface driver hub
[    0.624320] [      T1] usbcore: registered new device driver usb
[    0.624320] [      T1] mc: Linux media interface: v0.10
[    0.624324] [      T1] videodev: Linux video capture interface: v2.00
[    0.624366] [      T1] EDAC MC: Ver: 3.0.0
[    0.624396] [      T1] efivars: Registered efivars operations
[    0.624396] [      T1] Advanced Linux Sound Architecture Driver Initialized.
[    0.624396] [      T1] Bluetooth: Core ver 2.22
[    0.624396] [      T1] NET: Registered PF_BLUETOOTH protocol family
[    0.624396] [      T1] Bluetooth: HCI device and connection manager initialized
[    0.624396] [      T1] Bluetooth: HCI socket layer initialized
[    0.624396] [      T1] Bluetooth: L2CAP socket layer initialized
[    0.624396] [      T1] Bluetooth: SCO socket layer initialized
[    0.624396] [      T1] PCI: Using ACPI for IRQ routing
[    0.681904] [      T1] PCI: pci_cache_line_size set to 64 bytes
[    0.682051] [      T1] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
[    0.682150] [      T1] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    0.682151] [      T1] e820: reserve RAM buffer [mem 0x523e6000-0x53ffffff]
[    0.682152] [      T1] e820: reserve RAM buffer [mem 0x57cb6000-0x57ffffff]
[    0.682153] [      T1] e820: reserve RAM buffer [mem 0x5d800000-0x5fffffff]
[    0.682154] [      T1] e820: reserve RAM buffer [mem 0x88f800000-0x88fffffff]
[    0.682394] [      T1] wmi_bus wmi_bus-PNP0C14:02: [Firmware Bug]: WQBC data block query control method not found
[    0.686611] [      T1] clocksource: Switched to clocksource tsc-early
[    0.686611] [      T1] VFS: Disk quotas dquot_6.6.0
[    0.686611] [      T1] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.686611] [      T1] netfs: FS-Cache loaded
[    0.686611] [      T1] CacheFiles: Loaded
[    0.686611] [      T1] pnp: PnP ACPI init
[    0.686611] [      T1] system 00:00: [io  0x0680-0x069f] has been reserved
[    0.686611] [      T1] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.687611] [      T1] pnp 00:04: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
[    0.687631] [      T1] system 00:04: [mem 0xfedc0000-0xfedc7fff] has been reserved
[    0.687633] [      T1] system 00:04: [mem 0xfeda0000-0xfeda0fff] has been reserved
[    0.687635] [      T1] system 00:04: [mem 0xfeda1000-0xfeda1fff] has been reserved
[    0.687637] [      T1] system 00:04: [mem 0xfed20000-0xfed7ffff] could not be reserved
[    0.687639] [      T1] system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.687640] [      T1] system 00:04: [mem 0xfed45000-0xfed8ffff] could not be reserved
[    0.687642] [      T1] system 00:04: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.688580] [      T1] system 00:05: [io  0x2000-0x20fe] has been reserved
[    0.694350] [      T1] pnp: PnP ACPI: found 7 devices
[    0.699643] [      T1] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.699698] [      T1] NET: Registered PF_INET protocol family
[    0.699863] [      T1] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.701640] [      T1] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.701662] [      T1] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.701667] [      T1] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.701826] [      T1] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.701956] [      T1] TCP: Hash tables configured (established 262144 bind 65536)
[    0.701985] [      T1] UDP hash table entries: 16384 (order: 8, 1048576 bytes, linear)
[    0.702080] [      T1] UDP-Lite hash table entries: 16384 (order: 8, 1048576 bytes, linear)
[    0.702198] [      T1] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.702305] [      T1] RPC: Registered named UNIX socket transport module.
[    0.702307] [      T1] RPC: Registered udp transport module.
[    0.702308] [      T1] RPC: Registered tcp transport module.
[    0.702309] [      T1] RPC: Registered tcp-with-tls transport module.
[    0.702310] [      T1] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.702313] [      T1] pci_bus 0000:00: max bus depth: 3 pci_try_num: 4
[    0.702321] [      T1] pci 0000:00:02.0: VF BAR 2 [mem 0x4020000000-0x40ffffffff 64bit pref]: assigned
[    0.702325] [      T1] pci 0000:00:02.0: VF BAR 0 [mem 0x4010000000-0x4016ffffff 64bit]: assigned
[    0.702328] [      T1] pci 0000:00:07.0: bridge window [io  0x4000-0x4fff]: assigned
[    0.702330] [      T1] pci 0000:00:07.2: bridge window [io  0x5000-0x8fff]: assigned
[    0.702332] [      T1] pci 0000:00:15.0: BAR 0 [mem 0x4017000000-0x4017000fff 64bit]: assigned
[    0.702359] [      T1] pci 0000:00:15.1: BAR 0 [mem 0x4017001000-0x4017001fff 64bit]: assigned
[    0.702380] [      T1] pci 0000:00:1e.0: BAR 0 [mem 0x4017002000-0x4017002fff 64bit]: assigned
[    0.702393] [      T1] pci 0000:00:1e.3: BAR 0 [mem 0x4017003000-0x4017003fff 64bit]: assigned
[    0.702413] [      T1] pci 0000:00:1f.5: BAR 0 [mem 0x70800000-0x70800fff]: assigned
[    0.702430] [      T1] pci 0000:00:07.0: PCI bridge to [bus 01-3f]
[    0.702432] [      T1] pci 0000:00:07.0:   bridge window [io  0x4000-0x4fff]
[    0.702436] [      T1] pci 0000:00:07.0:   bridge window [mem 0x82000000-0x8e1fffff]
[    0.702439] [      T1] pci 0000:00:07.0:   bridge window [mem 0x6000000000-0x601bffffff 64bit pref]
[    0.702443] [      T1] pci 0000:40:00.0: bridge window [io  0x5000-0x7fff]: assigned
[    0.702446] [      T1] pci 0000:41:01.0: bridge window [io  0x5000-0x5fff]: assigned
[    0.702447] [      T1] pci 0000:41:02.0: bridge window [io  0x6000-0x6fff]: assigned
[    0.702449] [      T1] pci 0000:41:03.0: bridge window [io  0x7000-0x7fff]: assigned
[    0.702450] [      T1] pci 0000:41:00.0: PCI bridge to [bus 42]
[    0.702471] [      T1] pci 0000:41:01.0: PCI bridge to [bus 43-55]
[    0.702474] [      T1] pci 0000:41:01.0:   bridge window [io  0x5000-0x5fff]
[    0.702480] [      T1] pci 0000:41:01.0:   bridge window [mem 0x7c000000-0x7fffffff]
[    0.702485] [      T1] pci 0000:41:01.0:   bridge window [mem 0x6032a00000-0x603befffff 64bit pref]
[    0.702493] [      T1] pci 0000:41:02.0: PCI bridge to [bus 56-68]
[    0.702496] [      T1] pci 0000:41:02.0:   bridge window [io  0x6000-0x6fff]
[    0.702502] [      T1] pci 0000:41:02.0:   bridge window [mem 0x78000000-0x7bffffff]
[    0.702507] [      T1] pci 0000:41:02.0:   bridge window [mem 0x6029500000-0x60329fffff 64bit pref]
[    0.702515] [      T1] pci 0000:41:03.0: PCI bridge to [bus 69-7d]
[    0.702518] [      T1] pci 0000:41:03.0:   bridge window [io  0x7000-0x7fff]
[    0.702524] [      T1] pci 0000:41:03.0:   bridge window [mem 0x74000000-0x77ffffff]
[    0.702529] [      T1] pci 0000:41:03.0:   bridge window [mem 0x6020000000-0x60294fffff 64bit pref]
[    0.702537] [      T1] pci 0000:41:04.0: PCI bridge to [bus 7e]
[    0.702553] [      T1] pci 0000:40:00.0: PCI bridge to [bus 41-7e]
[    0.702556] [      T1] pci 0000:40:00.0:   bridge window [io  0x5000-0x7fff]
[    0.702562] [      T1] pci 0000:40:00.0:   bridge window [mem 0x74000000-0x7fffffff]
[    0.702567] [      T1] pci 0000:40:00.0:   bridge window [mem 0x6020000000-0x603befffff 64bit pref]
[    0.702575] [      T1] pci 0000:00:07.2: PCI bridge to [bus 40-7e]
[    0.702577] [      T1] pci 0000:00:07.2:   bridge window [io  0x5000-0x8fff]
[    0.702580] [      T1] pci 0000:00:07.2:   bridge window [mem 0x74000000-0x801fffff]
[    0.702582] [      T1] pci 0000:00:07.2:   bridge window [mem 0x6020000000-0x603bffffff 64bit pref]
[    0.702587] [      T1] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.702589] [      T1] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.702590] [      T1] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.702592] [      T1] pci_bus 0000:00: resource 7 [mem 0x70800000-0xbfffffff window]
[    0.702593] [      T1] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
[    0.702595] [      T1] pci_bus 0000:01: resource 0 [io  0x4000-0x4fff]
[    0.702596] [      T1] pci_bus 0000:01: resource 1 [mem 0x82000000-0x8e1fffff]
[    0.702598] [      T1] pci_bus 0000:01: resource 2 [mem 0x6000000000-0x601bffffff 64bit pref]
[    0.702599] [      T1] pci_bus 0000:40: resource 0 [io  0x5000-0x8fff]
[    0.702601] [      T1] pci_bus 0000:40: resource 1 [mem 0x74000000-0x801fffff]
[    0.702602] [      T1] pci_bus 0000:40: resource 2 [mem 0x6020000000-0x603bffffff 64bit pref]
[    0.702603] [      T1] pci_bus 0000:41: resource 0 [io  0x5000-0x7fff]
[    0.702605] [      T1] pci_bus 0000:41: resource 1 [mem 0x74000000-0x7fffffff]
[    0.702606] [      T1] pci_bus 0000:41: resource 2 [mem 0x6020000000-0x603befffff 64bit pref]
[    0.702607] [      T1] pci_bus 0000:43: resource 0 [io  0x5000-0x5fff]
[    0.702609] [      T1] pci_bus 0000:43: resource 1 [mem 0x7c000000-0x7fffffff]
[    0.702610] [      T1] pci_bus 0000:43: resource 2 [mem 0x6032a00000-0x603befffff 64bit pref]
[    0.702611] [      T1] pci_bus 0000:56: resource 0 [io  0x6000-0x6fff]
[    0.702613] [      T1] pci_bus 0000:56: resource 1 [mem 0x78000000-0x7bffffff]
[    0.702614] [      T1] pci_bus 0000:56: resource 2 [mem 0x6029500000-0x60329fffff 64bit pref]
[    0.702616] [      T1] pci_bus 0000:69: resource 0 [io  0x7000-0x7fff]
[    0.702617] [      T1] pci_bus 0000:69: resource 1 [mem 0x74000000-0x77ffffff]
[    0.702618] [      T1] pci_bus 0000:69: resource 2 [mem 0x6020000000-0x60294fffff 64bit pref]
[    0.703088] [      T1] PCI: CLS 0 bytes, default 64
[    0.703198] [      T1] DMAR: No ATSR found
[    0.703200] [      T1] DMAR: No SATC found
[    0.703201] [      T1] DMAR: dmar1: Using Queued invalidation
[    0.703204] [      T1] DMAR: dmar0: Using Queued invalidation
[    0.703206] [      T1] DMAR: dmar2: Using Queued invalidation
[    0.703250] [     T12] Trying to unpack rootfs image as initramfs...
[    0.703386] [      T1] pci 0000:00:05.0: Adding to iommu group 0
[    0.703467] [      T1] pci 0000:00:02.0: Adding to iommu group 1
[    0.703581] [      T1] pci 0000:00:00.0: Adding to iommu group 2
[    0.703588] [      T1] pci 0000:00:04.0: Adding to iommu group 3
[    0.703598] [      T1] pci 0000:00:06.0: Adding to iommu group 4
[    0.703606] [      T1] pci 0000:00:07.0: Adding to iommu group 5
[    0.703614] [      T1] pci 0000:00:07.2: Adding to iommu group 6
[    0.703621] [      T1] pci 0000:00:08.0: Adding to iommu group 7
[    0.703637] [      T1] pci 0000:00:0d.0: Adding to iommu group 8
[    0.703644] [      T1] pci 0000:00:0d.2: Adding to iommu group 8
[    0.703651] [      T1] pci 0000:00:0d.3: Adding to iommu group 8
[    0.703658] [      T1] pci 0000:00:0e.0: Adding to iommu group 9
[    0.703668] [      T1] pci 0000:00:12.0: Adding to iommu group 10
[    0.703681] [      T1] pci 0000:00:14.0: Adding to iommu group 11
[    0.703688] [      T1] pci 0000:00:14.2: Adding to iommu group 11
[    0.703694] [      T1] pci 0000:00:14.3: Adding to iommu group 12
[    0.703707] [      T1] pci 0000:00:15.0: Adding to iommu group 13
[    0.703714] [      T1] pci 0000:00:15.1: Adding to iommu group 13
[    0.703724] [      T1] pci 0000:00:16.0: Adding to iommu group 14
[    0.703737] [      T1] pci 0000:00:1e.0: Adding to iommu group 15
[    0.703744] [      T1] pci 0000:00:1e.3: Adding to iommu group 15
[    0.703763] [      T1] pci 0000:00:1f.0: Adding to iommu group 16
[    0.703771] [      T1] pci 0000:00:1f.3: Adding to iommu group 16
[    0.703779] [      T1] pci 0000:00:1f.4: Adding to iommu group 16
[    0.703788] [      T1] pci 0000:00:1f.5: Adding to iommu group 16
[    0.703796] [      T1] pci 0000:40:00.0: Adding to iommu group 17
[    0.703804] [      T1] pci 0000:41:00.0: Adding to iommu group 18
[    0.703812] [      T1] pci 0000:41:01.0: Adding to iommu group 19
[    0.703821] [      T1] pci 0000:41:02.0: Adding to iommu group 20
[    0.703829] [      T1] pci 0000:41:03.0: Adding to iommu group 21
[    0.703836] [      T1] pci 0000:41:04.0: Adding to iommu group 22
[    0.704638] [      T1] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    0.704640] [      T1] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.704641] [      T1] software IO TLB: mapped [mem 0x00000000489c2000-0x000000004c9c2000] (64MB)
[    0.704645] [      T1] ACPI: bus type thunderbolt registered
[    0.840305] [      T1] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[    0.840310] [      T1] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    0.840311] [      T1] RAPL PMU: hw unit of domain package 2^-14 Joules
[    0.840313] [      T1] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    0.840314] [      T1] RAPL PMU: hw unit of domain psys 2^-14 Joules
[    0.840657] [      T1] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x3990bec8342, max_idle_ns: 881590769617 ns
[    0.840671] [      T1] clocksource: Switched to clocksource tsc
[    0.842528] [      T1] AVX512/GFNI instructions are not detected.
[    0.842875] [      T1] Initialise system trusted keyrings
[    0.842881] [      T1] Key type blacklist registered
[    0.842943] [      T1] workingset: timestamp_bits=46 max_order=23 bucket_order=0
[    0.843054] [      T1] DLM installed
[    0.843141] [      T1] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.843240] [      T1] NFS: Registering the id_resolver key type
[    0.843243] [      T1] Key type id_resolver registered
[    0.843244] [      T1] Key type id_legacy registered
[    0.843247] [      T1] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    0.843250] [      T1] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[    0.843373] [      T1] Key type cifs.spnego registered
[    0.843378] [      T1] Key type cifs.idmap registered
[    0.843440] [      T1] ntfs3: Enabled Linux POSIX ACLs support
[    0.843442] [      T1] ntfs3: Read-only LZX/Xpress compression included
[    0.843447] [      T1] romfs: ROMFS MTD (C) 2007 Red Hat, Inc.
[    0.843466] [      T1] fuse: init (API version 7.45)
[    0.843524] [      T1] SGI XFS with ACLs, security attributes, quota, no debug enabled
[    0.843811] [      T1] cryptd: max_cpu_qlen set to 1000
[    0.848863] [      T1] NET: Registered PF_ALG protocol family
[    0.848874] [      T1] Key type asymmetric registered
[    0.848876] [      T1] Asymmetric key parser 'x509' registered
[    0.848877] [      T1] Asymmetric key parser 'pkcs8' registered
[    0.848886] [      T1] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    0.848947] [      T1] io scheduler mq-deadline registered
[    0.848948] [      T1] io scheduler kyber registered
[    0.848954] [      T1] io scheduler bfq registered
[    0.856670] [      T1] ledtrig-cpu: registered to indicate activity on CPUs
[    0.856820] [      T1] pcieport 0000:00:07.0: PME: Signaling with IRQ 155
[    0.856877] [      T1] pcieport 0000:00:07.0: AER: enabled with IRQ 155
[    0.856889] [      T1] pcieport 0000:00:07.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.856935] [      T1] pcieport 0000:00:07.0: DPC: enabled with IRQ 155
[    0.856937] [      T1] pcieport 0000:00:07.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP- SwTrigger- RP PIO Log 4, DL_ActiveErr-
[    0.857125] [      T1] pcieport 0000:00:07.2: PME: Signaling with IRQ 156
[    0.857154] [      T1] pcieport 0000:00:07.2: AER: enabled with IRQ 156
[    0.857166] [      T1] pcieport 0000:00:07.2: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    0.857521] [      T1] pcieport 0000:00:07.2: DPC: enabled with IRQ 156
[    0.857517] [    T192] pcieport 0000:00:07.2: pciehp: Slot(5): Card not present
[    0.857523] [      T1] pcieport 0000:00:07.2: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP- SwTrigger- RP PIO Log 4, DL_ActiveErr-
[    0.857534] [    T192] pci_bus 0000:42: busn_res: [bus 42] is released
[    0.857612] [    T192] pci_bus 0000:43: busn_res: [bus 43-55] is released
[    0.857667] [    T192] pci_bus 0000:56: busn_res: [bus 56-68] is released
[    0.857719] [    T192] pci_bus 0000:69: busn_res: [bus 69-7d] is released
[    0.857771] [    T192] pci_bus 0000:7e: busn_res: [bus 7e] is released
[    0.857819] [    T192] pci_bus 0000:41: busn_res: [bus 41-7e] is released
[    0.859326] [      T1] vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
[    0.859329] [      T1] pci_bus 10000:e0: root bus resource [bus e0-ff]
[    0.859331] [      T1] pci_bus 10000:e0: root bus resource [mem 0x72000000-0x73ffffff]
[    0.859334] [      T1] pci_bus 10000:e0: root bus resource [mem 0x6040102000-0x60401fffff 64bit]
[    0.859353] [      T1] pci 10000:e0:06.0: [8086:464d] type 01 class 0x060400 PCIe Root Port
[    0.859367] [      T1] pci 10000:e0:06.0: PCI bridge to [bus e1]
[    0.859371] [      T1] pci 10000:e0:06.0:   bridge window [io  0x0000-0x0fff]
[    0.859374] [      T1] pci 10000:e0:06.0:   bridge window [mem 0x72000000-0x720fffff]
[    0.859413] [      T1] pci 10000:e0:06.0: PME# supported from D0 D3hot D3cold
[    0.859437] [      T1] pci 10000:e0:06.0: PTM enabled (root), 4ns granularity
[    0.859503] [      T1] pci 10000:e0:06.0: Adding to iommu group 9
[    0.859514] [      T1] pci 10000:e0:06.0: Primary bus is hard wired to 0
[    0.859542] [      T1] pci 10000:e1:00.0: [1c5c:1959] type 00 class 0x010802 PCIe Endpoint
[    0.859575] [      T1] pci 10000:e1:00.0: BAR 0 [mem 0x72000000-0x72003fff 64bit]
[    0.859711] [      T1] pci 10000:e1:00.0: Adding to iommu group 9
[    0.859745] [      T1] pci 10000:e0:06.0: PCI bridge to [bus e1]
[    0.859751] [      T1] pci 10000:e0:06.0: Primary bus is hard wired to 0
[    0.942265] [     T12] Freeing initrd memory: 78256K
[    1.176551] [      T1] pci 10000:e0:06.0: disabling bridge window [mem size 0x00000000 64bit pref disabled] to [bus e1] (unused)
[    1.176559] [      T1] pci 10000:e0:06.0: bridge window [mem 0x72000000-0x720fffff]: assigned
[    1.176561] [      T1] pci 10000:e0:06.0: bridge window [io  size 0x1000]: can't assign; no space
[    1.176563] [      T1] pci 10000:e0:06.0: bridge window [io  size 0x1000]: failed to assign
[    1.176565] [      T1] pci 10000:e0:06.0: bridge window [io  size 0x1000]: can't assign; no space
[    1.176566] [      T1] pci 10000:e0:06.0: bridge window [io  size 0x1000]: failed to assign
[    1.176569] [      T1] pci 10000:e1:00.0: BAR 0 [mem 0x72000000-0x72003fff 64bit]: assigned
[    1.176578] [      T1] pci 10000:e0:06.0: PCI bridge to [bus e1]
[    1.176581] [      T1] pci 10000:e0:06.0:   bridge window [mem 0x72000000-0x720fffff]
[    1.176592] [      T1] pci 10000:e1:00.0: can't override BIOS ASPM; OS doesn't have ASPM control
[    1.176627] [      T1] pcieport 10000:e0:06.0: can't derive routing for PCI INT D
[    1.176629] [      T1] pcieport 10000:e0:06.0: PCI INT D: no GSI
[    1.176672] [      T1] pcieport 10000:e0:06.0: PME: Signaling with IRQ 176
[    1.176768] [      T1] pcieport 10000:e0:06.0: AER: enabled with IRQ 176
[    1.176844] [      T1] vmd 0000:00:0e.0: Bound to PCI domain 10000
[    1.176894] [      T1] usbcore: registered new interface driver udlfb
[    1.178235] [      T1] ACPI: AC: AC Adapter [AC] (on-line)
[    1.178281] [      T1] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    1.181521] [      T1] ACPI: button: Lid Switch [LID0]
[    1.181537] [      T1] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    1.185519] [      T1] ACPI: button: Power Button [PBTN]
[    1.186039] [     T20] Monitor-Mwait will be used to enter C-1 state
[    1.186040] [     T20] Monitor-Mwait will be used to enter C-2 state
[    1.186041] [     T20] Monitor-Mwait will be used to enter C-3 state
[    1.191723] [      T1]   #1  #3  #5  #7  #9 #11
[    1.251821] [      T1] hpet_acpi_add: no address or irqs in _CRS
[    1.251936] [      T1] Non-volatile memory driver v1.3
[    1.253734] [      T1] tpm_tis STM0125:00: 2.0 TPM (device-id 0x0, rev-id 78)
[    1.264521] [      T1] ACPI: bus type drm_connector registered
[    1.264534] [      T1] usbcore: registered new interface driver udl
[    1.266299] [      T1] brd: module loaded
[    1.266310] [      T1] loop: module loaded
[    1.266350] [      T1] zram: Added device: zram0
[    1.266405] [      T1] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[    1.266838] [      T1] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    1.289204] [    T166] ACPI: battery: Slot [BAT0] (battery present)
[    1.299185] [      T1] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
[    1.299302] [      T1] idma64 idma64.1: Found Intel integrated DMA 64-bit
[    1.310218] [      T1] intel-lpss 0000:00:1e.0: enabling device (0000 -> 0002)
[    1.310375] [      T1] idma64 idma64.2: Found Intel integrated DMA 64-bit
[    1.310413] [      T1] intel-lpss 0000:00:1e.3: enabling device (0000 -> 0002)
[    1.310597] [      T1] idma64 idma64.3: Found Intel integrated DMA 64-bit
[    1.310930] [      T1] st: Version 20160209, fixed bufsize 32768, s/g segs 256
[    1.310950] [      T1] SCSI Media Changer driver v0.25 
[    1.311271] [      T1] usbcore: registered new interface driver spi-ch341
[    1.311486] [    T202] nvme nvme0: pci function 10000:e1:00.0
[    1.311657] [      T1] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
[    1.311659] [      T1] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
[    1.311720] [      T1] tun: Universal TUN/TAP device driver, 1.6
[    1.311787] [      T1] Intel(R) 2.5G Ethernet Linux Driver
[    1.311788] [      T1] Copyright(c) 2018 Intel Corporation.
[    1.311795] [      T1] PPP generic driver version 2.4.2
[    1.311810] [      T1] PPP BSD Compression module registered
[    1.311811] [      T1] PPP Deflate Compression module registered
[    1.311813] [      T1] PPP MPPE Compression module registered
[    1.311814] [      T1] NET: Registered PF_PPPOX protocol family
[    1.311822] [      T1] usbcore: registered new interface driver hso
[    1.311826] [      T1] usbcore: registered new interface driver ax88179_178a
[    1.311831] [      T1] usbcore: registered new interface driver cdc_ether
[    1.311835] [      T1] usbcore: registered new interface driver cdc_eem
[    1.311839] [      T1] usbcore: registered new interface driver sierra_net
[    1.311844] [      T1] usbcore: registered new interface driver cdc_ncm
[    1.311848] [      T1] usbcore: registered new interface driver cdc_mbim
[    1.311852] [      T1] usbcore: registered new interface driver aqc111
[    1.311859] [      T1] usbcore: registered new interface driver r8153_ecm
[    1.311884] [      T1] xhci_hcd 0000:00:0d.0: xHCI Host Controller
[    1.311888] [      T1] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 1
[    1.312140] [    T202] pcieport 10000:e0:06.0: can't derive routing for PCI INT A
[    1.312144] [    T202] nvme 10000:e1:00.0: PCI INT A: not connected
[    1.312971] [      T1] xhci_hcd 0000:00:0d.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[    1.313179] [      T1] xhci_hcd 0000:00:0d.0: xHCI Host Controller
[    1.313182] [      T1] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 2
[    1.313183] [      T1] xhci_hcd 0000:00:0d.0: Host supports USB 3.2 Enhanced SuperSpeed
[    1.313208] [      T1] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.19
[    1.313211] [      T1] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.313212] [      T1] usb usb1: Product: xHCI Host Controller
[    1.313214] [      T1] usb usb1: Manufacturer: Linux 6.19.0-rc7-kenny+ xhci-hcd
[    1.313215] [      T1] usb usb1: SerialNumber: 0000:00:0d.0
[    1.313296] [      T1] hub 1-0:1.0: USB hub found
[    1.313302] [      T1] hub 1-0:1.0: 1 port detected
[    1.313444] [      T1] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.19
[    1.313446] [      T1] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.313448] [      T1] usb usb2: Product: xHCI Host Controller
[    1.313449] [      T1] usb usb2: Manufacturer: Linux 6.19.0-rc7-kenny+ xhci-hcd
[    1.313450] [      T1] usb usb2: SerialNumber: 0000:00:0d.0
[    1.313487] [      T1] hub 2-0:1.0: USB hub found
[    1.313496] [      T1] hub 2-0:1.0: 3 ports detected
[    1.313911] [      T1] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.313914] [      T1] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    1.315100] [      T1] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000100200009810
[    1.315436] [      T1] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.315438] [      T1] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    1.315440] [      T1] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[    1.315487] [      T1] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.19
[    1.315490] [      T1] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.315491] [      T1] usb usb3: Product: xHCI Host Controller
[    1.315493] [      T1] usb usb3: Manufacturer: Linux 6.19.0-rc7-kenny+ xhci-hcd
[    1.315508] [      T1] usb usb3: SerialNumber: 0000:00:14.0
[    1.315571] [      T1] hub 3-0:1.0: USB hub found
[    1.315612] [      T1] hub 3-0:1.0: 12 ports detected
[    1.316407] [      T1] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.19
[    1.316409] [      T1] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.316410] [      T1] usb usb4: Product: xHCI Host Controller
[    1.316412] [      T1] usb usb4: Manufacturer: Linux 6.19.0-rc7-kenny+ xhci-hcd
[    1.316413] [      T1] usb usb4: SerialNumber: 0000:00:14.0
[    1.316516] [      T1] hub 4-0:1.0: USB hub found
[    1.316552] [      T1] hub 4-0:1.0: 4 ports detected
[    1.316923] [      T1] usbcore: registered new interface driver cdc_acm
[    1.316925] [      T1] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    1.316930] [      T1] usbcore: registered new interface driver usblp
[    1.316935] [      T1] usbcore: registered new interface driver cdc_wdm
[    1.317038] [      T1] usbcore: registered new interface driver uas
[    1.317046] [      T1] usbcore: registered new interface driver usb-storage
[    1.317056] [      T1] usbcore: registered new interface driver usbserial_generic
[    1.317059] [      T1] usbserial: USB Serial support registered for generic
[    1.317064] [      T1] usbcore: registered new interface driver belkin_sa
[    1.317067] [      T1] usbserial: USB Serial support registered for Belkin / Peracom / GoHubs USB Serial Adapter
[    1.317072] [      T1] usbcore: registered new interface driver ch341
[    1.317075] [      T1] usbserial: USB Serial support registered for ch341-uart
[    1.317079] [      T1] usbcore: registered new interface driver cp210x
[    1.317081] [      T1] usbserial: USB Serial support registered for cp210x
[    1.317087] [      T1] usbcore: registered new interface driver keyspan
[    1.317089] [      T1] usbserial: USB Serial support registered for Keyspan - (without firmware)
[    1.317092] [      T1] usbserial: USB Serial support registered for Keyspan 1 port adapter
[    1.317095] [      T1] usbserial: USB Serial support registered for Keyspan 2 port adapter
[    1.317098] [      T1] usbserial: USB Serial support registered for Keyspan 4 port adapter
[    1.317103] [      T1] usbcore: registered new interface driver keyspan_pda
[    1.317105] [      T1] usbserial: USB Serial support registered for Keyspan PDA
[    1.317108] [      T1] usbserial: USB Serial support registered for Keyspan PDA - (prerenumeration)
[    1.317113] [      T1] usbcore: registered new interface driver mct_u232
[    1.317115] [      T1] usbserial: USB Serial support registered for MCT U232
[    1.317119] [      T1] usbcore: registered new interface driver mxuport
[    1.317122] [      T1] usbserial: USB Serial support registered for MOXA UPort
[    1.317126] [      T1] usbcore: registered new interface driver option
[    1.317129] [      T1] usbserial: USB Serial support registered for GSM modem (1-port)
[    1.317140] [      T1] usbcore: registered new interface driver pl2303
[    1.317143] [      T1] usbserial: USB Serial support registered for pl2303
[    1.317147] [      T1] usbcore: registered new interface driver sierra
[    1.317150] [      T1] usbserial: USB Serial support registered for Sierra USB modem
[    1.317155] [      T1] usbcore: registered new interface driver usb_serial_simple
[    1.317158] [      T1] usbserial: USB Serial support registered for carelink
[    1.317160] [      T1] usbserial: USB Serial support registered for flashloader
[    1.317163] [      T1] usbserial: USB Serial support registered for funsoft
[    1.317165] [      T1] usbserial: USB Serial support registered for google
[    1.317167] [      T1] usbserial: USB Serial support registered for hp4x
[    1.317170] [      T1] usbserial: USB Serial support registered for kaufmann
[    1.317172] [      T1] usbserial: USB Serial support registered for libtransistor
[    1.317175] [      T1] usbserial: USB Serial support registered for moto_modem
[    1.317178] [      T1] usbserial: USB Serial support registered for motorola_tetra
[    1.317180] [      T1] usbserial: USB Serial support registered for nokia
[    1.317183] [      T1] usbserial: USB Serial support registered for novatel_gps
[    1.317185] [      T1] usbserial: USB Serial support registered for owon
[    1.317188] [      T1] usbserial: USB Serial support registered for siemens_mpi
[    1.317190] [      T1] usbserial: USB Serial support registered for suunto
[    1.317192] [      T1] usbserial: USB Serial support registered for vivopay
[    1.317195] [      T1] usbserial: USB Serial support registered for zio
[    1.317200] [      T1] usbcore: registered new interface driver ljca
[    1.317205] [      T1] usbcore: registered new interface driver usbio-bridge
[    1.323923] [    T202] nvme nvme0: 20/0/0 default/read/poll queues
[    1.327399] [    T201]  nvme0n1: p1 p2 p3 p4 p5 p6 p7
[    1.335676] [      T1] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    1.336241] [      T1] i8042: Warning: Keylock active
[    1.339504] [      T1] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.339510] [      T1] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.339755] [      T1] mousedev: PS/2 mouse device common for all mice
[    1.340065] [      T1] input: PC Speaker as /devices/platform/pcspkr/input/input3
[    1.340104] [      T1] rtc_cmos 00:01: RTC can wake from S4
[    1.341726] [      T1] rtc_cmos 00:01: registered as rtc0
[    1.341770] [    T153] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    1.342041] [      T1] rtc_cmos 00:01: setting system clock to 2026-01-30T01:03:36 UTC (1769735016)
[    1.342130] [      T1] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
[    1.342142] [      T1] i2c_dev: i2c /dev entries driver
[    1.342251] [      T1] gspca_main: v2.14.0 registered
[    1.342273] [      T1] usbcore: registered new interface driver uvcvideo
[    1.342294] [    T202] i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003)
[    1.342401] [    T202] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    1.342419] [    T202] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    1.369717] [    T153] input: PS/2 Generic Mouse as /devices/platform/i8042/serio1/input/input5
[    1.388918] [      T1] proc_thermal_pci 0000:00:04.0: enabling device (0000 -> 0002)
[    1.389000] [      T1] intel_rapl_common: Found RAPL domain package
[    1.395593] [      T1] intel_tcc_cooling: TCC Offset locked
[    1.396598] [      T1] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[    1.396798] [      T1] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    1.396802] [      T1] iTCO_vendor_support: vendor-support=0
[    1.396908] [      T1] device-mapper: uevent: version 1.0.3
[    1.396937] [      T1] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
[    1.396953] [      T1] resource: resource sanity check: requesting [mem 0x00000000fedc0000-0x00000000fedcffff], which spans more than pnp 00:04 [mem 0xfedc0000-0xfedc7fff]
[    1.396957] [      T1] caller pci_device_probe.llvm.16230106213785979753+0xb5/0x150 mapping multiple BARs
[    1.396993] [      T1] EDAC MC0: Giving out device to module igen6_edac controller Intel_client_SoC MC#0: DEV 0000:00:00.0 (INTERRUPT)
[    1.397028] [      T1] EDAC MC1: Giving out device to module igen6_edac controller Intel_client_SoC MC#1: DEV 0000:00:00.0 (INTERRUPT)
[    1.397047] [      T1] EDAC igen6: v2.5.1
[    1.397050] [      T1] intel_pstate: Intel P-state driver initializing
[    1.399770] [      T1] Hybrid CPU capacity scaling enabled
[    1.399789] [      T1] processor cpu0: EM: created perf domain
[    1.399802] [      T1] processor cpu2: EM: created perf domain
[    1.399814] [      T1] processor cpu4: EM: created perf domain
[    1.399828] [      T1] processor cpu6: EM: created perf domain
[    1.399841] [      T1] processor cpu8: EM: created perf domain
[    1.399853] [      T1] processor cpu10: EM: created perf domain
[    1.399865] [      T1] processor cpu12: EM: created perf domain
[    1.399877] [      T1] processor cpu13: EM: created perf domain
[    1.399889] [      T1] processor cpu14: EM: created perf domain
[    1.399900] [      T1] processor cpu15: EM: created perf domain
[    1.399912] [      T1] processor cpu16: EM: created perf domain
[    1.399926] [      T1] processor cpu17: EM: created perf domain
[    1.399937] [      T1] processor cpu18: EM: created perf domain
[    1.399949] [      T1] processor cpu19: EM: created perf domain
[    1.400218] [      T1] intel_pstate: HWP enabled
[    1.400752] [      T1] [drm] Initialized efidrm 1.0.0 for efi-framebuffer.0 on minor 0
[    1.409056] [      T1] Console: switching to colour frame buffer device 240x75
[    1.414718] [      T1] efi-framebuffer efi-framebuffer.0: [drm] fb0: efidrmdrmfb frame buffer device
[    1.414759] [      T1] pstore: Using crash dump compression: deflate
[    1.414767] [      T1] pstore: Registered efi_pstore as persistent store backend
[    1.414784] [      T1] hid: raw HID events driver (C) Jiri Kosina
[    1.415945] [      T1] usbcore: registered new interface driver usbhid
[    1.415953] [      T1] usbhid: USB HID core driver
[    1.429697] [    T206] ACPI: battery: new hook: Dell DDV Battery Extension
[    1.553460] [    T210] usb 3-8: new full-speed USB device number 2 using xhci_hcd
[    1.590517] [    T201] input: LXT2021:00 29BD:3201 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-LXT2021:00/0018:29BD:3201.0001/input/input6
[    1.590721] [    T201] hid-multitouch 0018:29BD:3201.0001: input,hidraw0: I2C HID v1.00 Device [LXT2021:00 29BD:3201] on i2c-LXT2021:00
[    1.655421] [    T151] input: VEN_04F3:00 04F3:31D1 Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-VEN_04F3:00/0018:04F3:31D1.0002/input/input8
[    1.655763] [    T151] input: VEN_04F3:00 04F3:31D1 Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-VEN_04F3:00/0018:04F3:31D1.0002/input/input9
[    1.655995] [    T151] input: VEN_04F3:00 04F3:31D1 UNKNOWN as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-VEN_04F3:00/0018:04F3:31D1.0002/input/input11
[    1.656225] [    T151] hid-multitouch 0018:04F3:31D1.0002: input,hidraw1: I2C HID v1.00 Mouse [VEN_04F3:00 04F3:31D1] on i2c-VEN_04F3:00
[    1.679904] [    T210] usb 3-8: New USB device found, idVendor=8086, idProduct=0b63, bcdDevice=10.05
[    1.679930] [    T210] usb 3-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.679945] [    T210] usb 3-8: Product: USB Bridge
[    1.679955] [    T210] usb 3-8: Manufacturer: MCHP
[    2.552473] [    T210] usb 3-9: new full-speed USB device number 3 using xhci_hcd
[    2.676706] [    T210] usb 3-9: New USB device found, idVendor=27c6, idProduct=63bc, bcdDevice= 1.00
[    2.676728] [    T210] usb 3-9: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.676743] [    T210] usb 3-9: Product: Goodix Fingerprint USB Device
[    2.676755] [    T210] usb 3-9: Manufacturer: Goodix Technology Co., Ltd.
[    2.676767] [    T210] usb 3-9: SerialNumber: UID09B8B084_XXXX_MOC_B0
[    2.792624] [    T210] usb 3-10: new full-speed USB device number 4 using xhci_hcd
[    2.919947] [    T210] usb 3-10: New USB device found, idVendor=8087, idProduct=0033, bcdDevice= 0.00
[    2.919967] [    T210] usb 3-10: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.807247] [     T12] thunderbolt 1-1: new device found, vendor=0xee device=0x1330
[    3.807272] [     T12] thunderbolt 1-1: Good Way Technology Thunderbolt4/USB4 Dock Pro
[    4.065399] [     T12] thunderbolt 1-0:1.1: new retimer found, vendor=0x8087 device=0x15ee
[    4.246477] [     T11] usb 3-3: new high-speed USB device number 5 using xhci_hcd
[    4.370233] [     T11] usb 3-3: New USB device found, idVendor=1d5c, idProduct=5801, bcdDevice= 1.01
[    4.370242] [     T11] usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.370248] [     T11] usb 3-3: Product: USB2.0 Hub
[    4.370251] [     T11] usb 3-3: Manufacturer: Fresco Logic, Inc.
[    4.371694] [     T11] hub 3-3:1.0: USB hub found
[    4.371873] [     T11] hub 3-3:1.0: 4 ports detected
[    4.849526] [    T210] usb 2-3: new SuperSpeed Plus Gen 2x1 USB device number 2 using xhci_hcd
[    4.860958] [    T210] usb 2-3: New USB device found, idVendor=8087, idProduct=0b40, bcdDevice=12.34
[    4.860981] [    T210] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.860995] [    T210] usb 2-3: Product: USB3.0 Hub
[    4.861004] [    T210] usb 2-3: Manufacturer: Intel Corporation.
[    4.862092] [    T210] hub 2-3:1.0: USB hub found
[    4.862126] [    T210] hub 2-3:1.0: 4 ports detected
[    4.906500] [     T86] usb 3-3.1: new low-speed USB device number 6 using xhci_hcd
[    5.003996] [     T86] usb 3-3.1: New USB device found, idVendor=0451, idProduct=ace1, bcdDevice= 1.50
[    5.004532] [     T86] usb 3-3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    5.008180] [     T86] usb 3-3.1: Product: TPS DMC Family
[    5.008685] [     T86] usb 3-3.1: Manufacturer: Texas Instruments Inc
[    5.009216] [     T86] usb 3-3.1: SerialNumber: 331964161CF1E0B5624D9D096602BC1
[    5.089666] [     T86] usb 3-3.4: new high-speed USB device number 7 using xhci_hcd
[    5.182514] [     T86] usb 3-3.4: New USB device found, idVendor=2109, idProduct=2822, bcdDevice=90.44
[    5.183029] [     T86] usb 3-3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    5.183579] [     T86] usb 3-3.4: Product: USB2.0 Hub             
[    5.184101] [     T86] usb 3-3.4: Manufacturer: VIA Labs, Inc.         
[    5.187869] [     T86] hub 3-3.4:1.0: USB hub found
[    5.188467] [     T86] hub 3-3.4:1.0: 4 ports detected
[    5.483464] [    T225] usb 3-3.4.2: new high-speed USB device number 8 using xhci_hcd
[    5.564109] [    T225] usb 3-3.4.2: New USB device found, idVendor=2109, idProduct=2822, bcdDevice=90.43
[    5.564580] [    T225] usb 3-3.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    5.565034] [    T225] usb 3-3.4.2: Product: USB2.0 Hub             
[    5.565699] [    T225] usb 3-3.4.2: Manufacturer: VIA Labs, Inc.         
[    5.569983] [    T225] hub 3-3.4.2:1.0: USB hub found
[    5.570804] [    T225] hub 3-3.4.2:1.0: 4 ports detected
[    5.857534] [    T214] usb 3-3.4.2.1: new high-speed USB device number 9 using xhci_hcd
[    5.947344] [    T214] usb 3-3.4.2.1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.56
[    5.948039] [    T214] usb 3-3.4.2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    5.948636] [    T214] usb 3-3.4.2.1: Product: USB2.1 Hub
[    5.949255] [    T214] usb 3-3.4.2.1: Manufacturer: GenesysLogic
[    5.951023] [    T214] hub 3-3.4.2.1:1.0: USB hub found
[    5.954464] [    T214] hub 3-3.4.2.1:1.0: 4 ports detected
[    6.254315] [    T167] usb 2-3.4: new SuperSpeed Plus Gen 2x1 USB device number 3 using xhci_hcd
[    6.255466] [    T220] usb 3-3.4.2.1.2: new full-speed USB device number 10 using xhci_hcd
[    6.269686] [    T167] usb 2-3.4: New USB device found, idVendor=2109, idProduct=0822, bcdDevice=90.44
[    6.270274] [    T167] usb 2-3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    6.270875] [    T167] usb 2-3.4: Product: USB3.1 Hub             
[    6.271454] [    T167] usb 2-3.4: Manufacturer: VIA Labs, Inc.         
[    6.275714] [    T167] hub 2-3.4:1.0: USB hub found
[    6.276330] [    T167] hub 2-3.4:1.0: 4 ports detected
[    6.364015] [    T220] usb 3-3.4.2.1.2: New USB device found, idVendor=05ac, idProduct=110b, bcdDevice=26.81
[    6.364591] [    T220] usb 3-3.4.2.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    6.365139] [    T220] usb 3-3.4.2.1.2: Product: EarPods
[    6.365659] [    T220] usb 3-3.4.2.1.2: Manufacturer: Apple, Inc.
[    6.366166] [    T220] usb 3-3.4.2.1.2: SerialNumber: GNXTP7WK57
[    6.379692] [    T220] input: Apple, Inc. EarPods as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.2/3-3.4.2.1.2:2.3/0003:05AC:110B.0003/input/input12
[    6.431562] [    T220] hid-generic 0003:05AC:110B.0003: input,hidraw2: USB HID v1.11 Device [Apple, Inc. EarPods] on usb-0000:00:14.0-3.4.2.1.2/input3
[    6.433669] [    T220] hid-generic 0003:05AC:110B.0004: hiddev0,hidraw3: USB HID v1.11 Device [Apple, Inc. EarPods] on usb-0000:00:14.0-3.4.2.1.2/input4
[    6.534505] [    T220] usb 3-3.4.2.1.3: new full-speed USB device number 11 using xhci_hcd
[    6.555717] [    T218] usb 2-3.4.1: new SuperSpeed USB device number 4 using xhci_hcd
[    6.567761] [    T218] usb 2-3.4.1: New USB device found, idVendor=0bda, idProduct=8156, bcdDevice=31.04
[    6.568353] [    T218] usb 2-3.4.1: New USB device strings: Mfr=1, Product=2, SerialNumber=6
[    6.568943] [    T218] usb 2-3.4.1: Product: USB 10/100/1G/2.5G LAN
[    6.569500] [    T218] usb 2-3.4.1: Manufacturer: Realtek
[    6.570041] [    T218] usb 2-3.4.1: SerialNumber: 401385A8AD
[    6.594746] [    T218] cdc_ncm 2-3.4.1:2.0: MAC-Address: 80:6d:97:85:a8:ad
[    6.595263] [    T218] cdc_ncm 2-3.4.1:2.0: setting rx_max = 16384
[    6.595848] [    T218] cdc_ncm 2-3.4.1:2.0: setting tx_max = 16384
[    6.599616] [    T218] cdc_ncm 2-3.4.1:2.0 eth0: register 'cdc_ncm' at usb-0000:00:0d.0-3.4.1, CDC NCM (NO ZLP), 80:6d:97:85:a8:ad
[    6.637247] [    T220] usb 3-3.4.2.1.3: New USB device found, idVendor=05ac, idProduct=024f, bcdDevice= 1.12
[    6.637815] [    T220] usb 3-3.4.2.1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    6.638364] [    T220] usb 3-3.4.2.1.3: Product: Keychron K2
[    6.638903] [    T220] usb 3-3.4.2.1.3: Manufacturer: Keychron
[    6.646227] [    T220] input: Keychron Keychron K2 as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.0/0003:05AC:024F.0005/input/input13
[    6.648805] [    T220] hid-generic 0003:05AC:024F.0005: input,hidraw4: USB HID v1.11 Keyboard [Keychron Keychron K2] on usb-0000:00:14.0-3.4.2.1.3/input0
[    6.650399] [    T220] input: Keychron Keychron K2 Consumer Control as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.0006/input/input14
[    6.652383] [    T220] input: Keychron Keychron K2 System Control as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.0006/input/input15
[    6.652987] [    T220] input: Keychron Keychron K2 Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.0006/input/input16
[    6.653590] [    T220] input: Keychron Keychron K2 Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.0006/input/input17
[    6.654214] [    T220] input: Keychron Keychron K2 as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.0006/input/input18
[    6.654896] [    T220] hid-generic 0003:05AC:024F.0006: input,hiddev1,hidraw5: USB HID v1.11 Keyboard [Keychron Keychron K2] on usb-0000:00:14.0-3.4.2.1.3/input1
[    6.664738] [    T218] usb 2-3.4.2: new SuperSpeed Plus Gen 2x1 USB device number 5 using xhci_hcd
[    6.680942] [    T218] usb 2-3.4.2: New USB device found, idVendor=2109, idProduct=0822, bcdDevice=90.43
[    6.681571] [    T218] usb 2-3.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    6.682181] [    T218] usb 2-3.4.2: Product: USB3.1 Hub             
[    6.684742] [    T218] usb 2-3.4.2: Manufacturer: VIA Labs, Inc.         
[    6.686032] [    T218] hub 2-3.4.2:1.0: USB hub found
[    6.689466] [    T218] hub 2-3.4.2:1.0: 4 ports detected
[    6.742489] [    T220] usb 3-3.4.2.1.4: new low-speed USB device number 12 using xhci_hcd
[    6.849780] [    T220] usb 3-3.4.2.1.4: New USB device found, idVendor=093a, idProduct=2510, bcdDevice= 1.00
[    6.850522] [    T220] usb 3-3.4.2.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    6.851651] [    T220] usb 3-3.4.2.1.4: Product: USB Optical Mouse
[    6.852318] [    T220] usb 3-3.4.2.1.4: Manufacturer: PixArt
[    6.865672] [    T220] input: PixArt USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.4/3-3.4.2.1.4:1.0/0003:093A:2510.0007/input/input19
[    6.866936] [    T220] hid-generic 0003:093A:2510.0007: input,hidraw6: USB HID v1.11 Mouse [PixArt USB Optical Mouse] on usb-0000:00:14.0-3.4.2.1.4/input0
[    6.970873] [     T86] usb 2-3.4.2.1: new SuperSpeed USB device number 6 using xhci_hcd
[    6.986109] [     T86] usb 2-3.4.2.1: New USB device found, idVendor=05e3, idProduct=0626, bcdDevice= 6.56
[    6.986847] [     T86] usb 2-3.4.2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    6.990730] [     T86] usb 2-3.4.2.1: Product: USB3.1 Hub
[    6.991430] [     T86] usb 2-3.4.2.1: Manufacturer: GenesysLogic
[    6.992958] [     T86] hub 2-3.4.2.1:1.0: USB hub found
[    6.999465] [     T86] hub 2-3.4.2.1:1.0: 4 ports detected
[    7.052833] [      T1] int3472-discrete INT3472:01: INT3472 seems to have no dependents.
[    7.054256] [      T1] int3472-discrete INT3472:06: GPIO type 0x02 unknown; the sensor may not work
[    7.055523] [      T1] intel_pmc_core INT33A1:00:  initialized
[    7.056975] [      T1] input: Intel HID events as /devices/platform/INTC1070:00/input/input20
[    7.057382] [      T1] intel-hid INTC1070:00: platform supports 5 button array
[    7.057707] [      T1] input: Intel HID 5 button array as /devices/platform/INTC1070:00/input/input21
[    7.058512] [      T1] intel_rapl_msr: PL4 support detected.
[    7.058854] [     T20] intel_rapl_common: Found RAPL domain package
[    7.059574] [     T20] intel_rapl_common: Found RAPL domain core
[    7.060163] [     T20] intel_rapl_common: Found RAPL domain uncore
[    7.060784] [     T20] intel_rapl_common: Found RAPL domain psys
[    7.095477] [      T1] usbcore: registered new interface driver snd-usb-audio
[    7.097904] [      T1] NET: Registered PF_LLC protocol family
[    7.098768] [      T1] xt_time: kernel timezone is -0000
[    7.099488] [      T1] Initializing XFRM netlink socket
[    7.099804] [      T1] IPsec XFRM device driver
[    7.100142] [      T1] NET: Registered PF_INET6 protocol family
[    7.101128] [      T1] Segment Routing with IPv6
[    7.101428] [      T1] RPL Segment Routing with IPv6
[    7.101791] [      T1] In-situ OAM (IOAM) with IPv6
[    7.102109] [      T1] mip6: Mobile IPv6
[    7.102521] [      T1] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    7.102945] [      T1] NET: Registered PF_PACKET protocol family
[    7.103226] [      T1] PFKEY is deprecated and scheduled to be removed in 2027, please contact the netdev mailing list
[    7.103513] [      T1] NET: Registered PF_KEY protocol family
[    7.103974] [      T1] Bluetooth: RFCOMM TTY layer initialized
[    7.104311] [      T1] Bluetooth: RFCOMM socket layer initialized
[    7.104577] [      T1] Bluetooth: RFCOMM ver 1.11
[    7.104808] [      T1] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    7.105033] [      T1] Bluetooth: BNEP filters: protocol multicast
[    7.105253] [      T1] Bluetooth: BNEP socket layer initialized
[    7.105487] [      T1] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    7.105715] [      T1] Bluetooth: HIDP socket layer initialized
[    7.106463] [      T1] l2tp_core: L2TP core driver, V2.0
[    7.106689] [      T1] l2tp_ppp: PPPoL2TP kernel driver, V2.0
[    7.106909] [      T1] l2tp_ip: L2TP IP encapsulation support (L2TPv3)
[    7.107130] [      T1] l2tp_netlink: L2TP netlink interface
[    7.107354] [      T1] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)
[    7.107599] [      T1] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)
[    7.107811] [      T1] sctp: Hash tables configured (bind 512/512)
[    7.108025] [      T1] Key type dns_resolver registered
[    7.112144] [     T20] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    7.113493] [      T1] microcode: Current revision: 0x00000437
[    7.114634] [      T1] IPI shorthand broadcast: enabled
[    7.116606] [      T1] sched_clock: Marking stable (7096000561, 20454870)->(7138838083, -22382652)
[    7.117449] [      T1] registered taskstats version 1
[    7.117767] [      T1] Loading compiled-in X.509 certificates
[    7.119089] [      T1] Key type .fscrypt registered
[    7.119296] [      T1] Key type fscrypt-provisioning registered
[    7.119529] [      T1] Key type big_key registered
[    7.119723] [      T1] Key type trusted registered
[    7.120859] [      T1] Key type encrypted registered
[    7.121291] [      T1] PM:   Magic number: 10:838:54
[    7.121520] [      T1] usb_power_delivery pd0: hash matches
[    7.121787] [      T1] thunderbolt 0000:00:0d.2: hash matches
[    7.138383] [      T1] ACPI: battery: new hook: Dell Primary Battery Extension
[    7.139664] [      T1] input: Dell WMI hotkeys as /devices/platform/PNP0C14:02/wmi_bus/wmi_bus-PNP0C14:02/9DBB5994-A997-11DA-B012-B622A1EF5492-8/input/input22
[    7.139954] [      T1] RAS: Correctable Errors collector initialized.
[    7.140208] [      T1] clk: Disabling unused clocks
[    7.140549] [      T1] ALSA device list:
[    7.140744] [      T1]   #0: Apple, Inc. EarPods at usb-0000:00:14.0-3.4.2.1.2, full speed
[    7.141736] [      T1] Freeing unused kernel image (initmem) memory: 1636K
[    7.141963] [      T1] Write protecting the kernel read-only data: 38912k
[    7.143194] [      T1] Freeing unused kernel image (text/rodata gap) memory: 1432K
[    7.143739] [      T1] Freeing unused kernel image (rodata/data gap) memory: 308K
[    7.150532] [      T1] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    7.152244] [      T1] Run /init as init process
[    7.152399] [      T1]   with arguments:
[    7.152400] [      T1]     /init
[    7.152401] [      T1]   with environment:
[    7.152401] [      T1]     HOME=/
[    7.152402] [      T1]     TERM=linux
[    7.306446] [    T313] cdc_ncm 2-3.4.1:2.0 eth0: unregister 'cdc_ncm' usb-0000:00:0d.0-3.4.1, CDC NCM (NO ZLP)
[    7.401707] [    T305] Console: switching to colour dummy device 80x25
[    7.402670] [    T305] xe 0000:00:02.0: [drm] Running in SR-IOV PF mode
[    7.402745] [    T305] xe 0000:00:02.0: [drm] Found alderlake_p (device ID 46a6) integrated display version 13.00 stepping D0
[    7.402756] [    T305] xe 0000:00:02.0: [drm] PF: migration disabled: requires memory-based IRQ support
[    7.406380] [     T31] xe 0000:00:02.0: [drm] Finished loading DMC firmware i915/adlp_dmc.bin (v2.20)
[    7.441589] [    T305] xe 0000:00:02.0: [drm] Tile0: GT0: Using GuC firmware from i915/adlp_guc_70.bin version 70.49.4
[    7.442840] [    T305] xe 0000:00:02.0: [drm] Tile0: GT0: Using HuC firmware from i915/tgl_huc.bin version 7.9.3
[    7.603280] [    T305] xe 0000:00:02.0: [drm] Tile0: GT0: vcs1 fused off
[    7.603285] [    T305] xe 0000:00:02.0: [drm] Tile0: GT0: vcs3 fused off
[    7.603287] [    T305] xe 0000:00:02.0: [drm] Tile0: GT0: vcs4 fused off
[    7.603288] [    T305] xe 0000:00:02.0: [drm] Tile0: GT0: vcs5 fused off
[    7.603289] [    T305] xe 0000:00:02.0: [drm] Tile0: GT0: vcs6 fused off
[    7.603291] [    T305] xe 0000:00:02.0: [drm] Tile0: GT0: vcs7 fused off
[    7.603292] [    T305] xe 0000:00:02.0: [drm] Tile0: GT0: vecs1 fused off
[    7.603294] [    T305] xe 0000:00:02.0: [drm] Tile0: GT0: vecs2 fused off
[    7.603295] [    T305] xe 0000:00:02.0: [drm] Tile0: GT0: vecs3 fused off
[    7.647492] [    T305] [drm] Initialized xe 1.1.0 for 0000:00:02.0 on minor 0
[    7.650150] [    T305] ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    7.651022] [    T305] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input23
[    7.709138] [    T305] fbcon: xedrmfb (fb0) is primary device
[    7.746166] [    T305] Console: switching to colour frame buffer device 240x75
[    7.751709] [    T305] xe 0000:00:02.0: [drm] fb0: xedrmfb frame buffer device
[    7.752680] [    T305] xe 0000:00:02.0: [drm] PF: migration disabled: requires GuC version >= 70.54.0
[    9.543378] [    T455] PM: Image not found (code -22)
[    9.744703] [    T476] EXT4-fs (nvme0n1p4): mounted filesystem 17354762-b6e0-4196-8528-2db4de1025f6 ro with ordered data mode. Quota mode: none.
[    9.895206] [      T1] systemd[1]: systemd 257.9-0ubuntu2 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF -XKBCOMMON -UTMP +SYSVINIT +LIBARCHIVE)
[    9.895273] [      T1] systemd[1]: Detected architecture x86-64.
[    9.947145] [      T1] systemd[1]: bpf-restrict-fs: BPF LSM hook not enabled in the kernel, BPF LSM not supported.
[   10.024720] [    T525] systemd-sysv-generator[525]: SysV service '/etc/init.d/vmware' lacks a native systemd unit file, automatically generating a unit file for compatibility.
[   10.024751] [    T525] systemd-sysv-generator[525]: Please update package to include a native systemd unit file.
[   10.024766] [    T525] systemd-sysv-generator[525]: ! This compatibility logic is deprecated, expect removal soon. !
[   10.024793] [    T525] systemd-sysv-generator[525]: SysV service '/etc/init.d/tlp' lacks a native systemd unit file, automatically generating a unit file for compatibility.
[   10.024814] [    T525] systemd-sysv-generator[525]: Please update package to include a native systemd unit file.
[   10.024830] [    T525] systemd-sysv-generator[525]: ! This compatibility logic is deprecated, expect removal soon. !
[   10.024859] [    T525] systemd-sysv-generator[525]: SysV service '/etc/init.d/vmware-USBArbitrator' lacks a native systemd unit file, automatically generating a unit file for compatibility.
[   10.024882] [    T525] systemd-sysv-generator[525]: Please update package to include a native systemd unit file.
[   10.024898] [    T525] systemd-sysv-generator[525]: ! This compatibility logic is deprecated, expect removal soon. !
[   10.025125] [    T525] systemd-sysv-generator[525]: SysV service '/etc/init.d/grub-common' lacks a native systemd unit file, automatically generating a unit file for compatibility.
[   10.025147] [    T525] systemd-sysv-generator[525]: Please update package to include a native systemd unit file.
[   10.025163] [    T525] systemd-sysv-generator[525]: ! This compatibility logic is deprecated, expect removal soon. !
[   10.155189] [      T1] systemd[1]: Queued start job for default target graphical.target.
[   10.166642] [      T1] systemd[1]: Unnecessary job was removed for sys-devices-virtual-misc-vmbus\x21hv_vss.device - /sys/devices/virtual/misc/vmbus!hv_vss.
[   10.166674] [      T1] systemd[1]: Unnecessary job was removed for sys-devices-virtual-misc-vmbus\x21hv_fcopy.device - /sys/devices/virtual/misc/vmbus!hv_fcopy.
[   10.167243] [      T1] systemd[1]: Created slice system-cups.slice - CUPS Slice.
[   10.167526] [      T1] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[   10.167756] [      T1] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[   10.167889] [      T1] systemd[1]: Created slice user.slice - User and Session Slice.
[   10.167945] [      T1] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[   10.168077] [      T1] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[   10.169070] [      T1] systemd[1]: Expecting device dev-disk-by\x2duuid-1640\x2dE6DA.device - /dev/disk/by-uuid/1640-E6DA...
[   10.170991] [      T1] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[   10.172501] [      T1] systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups.
[   10.173990] [      T1] systemd[1]: Reached target slices.target - Slice Units.
[   10.175474] [      T1] systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
[   10.177023] [      T1] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[   10.181966] [      T1] systemd[1]: Listening on rpcbind.socket - RPCbind Server Activation Socket.
[   10.183900] [      T1] systemd[1]: Listening on syslog.socket - Syslog Socket.
[   10.186393] [      T1] systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
[   10.188344] [      T1] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[   10.190298] [      T1] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[   10.192277] [      T1] systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
[   10.194221] [      T1] systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[   10.195206] [      T1] systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[   10.196209] [      T1] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[   10.198146] [      T1] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[   10.201075] [      T1] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[   10.203556] [      T1] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[   10.206104] [      T1] systemd[1]: Mounting run-lock.mount - Legacy Locks Directory /run/lock...
[   10.208715] [      T1] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[   10.210742] [      T1] systemd[1]: sys-kernel-tracing.mount - Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
[   10.213278] [      T1] systemd[1]: Starting systemd-journald.service - Journal Service...
[   10.215319] [      T1] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[   10.216901] [      T1] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[   10.218894] [      T1] systemd[1]: kmod-static-nodes.service - Create List of Static Device Nodes was skipped because of an unmet condition check (ConditionFileNotEmpty=/lib/modules/6.19.0-rc7-kenny+/modules.devname).
[   10.220477] [      T1] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[   10.223030] [      T1] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[   10.225727] [      T1] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[   10.228480] [      T1] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[   10.230748] [      T1] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[   10.232159] [      T1] systemd[1]: Starting systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info...
[   10.233079] [    T539] systemd-journald[539]: Collecting audit messages is disabled.
[   10.236913] [      T1] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[   10.238881] [      T1] systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[   10.253129] [      T1] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[   10.255727] [      T1] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[   10.257564] [      T1] systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[   10.258906] [      T1] systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
[   10.261167] [      T1] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[   10.264030] [      T1] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[   10.265935] [      T1] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[   10.267792] [      T1] systemd[1]: Mounted run-lock.mount - Legacy Locks Directory /run/lock.
[   10.269655] [      T1] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[   10.271616] [      T1] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[   10.271966] [    T563] EXT4-fs (nvme0n1p4): re-mounted 17354762-b6e0-4196-8528-2db4de1025f6 r/w.
[   10.275160] [      T1] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[   10.276144] [      T1] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[   10.278055] [      T1] systemd[1]: modprobe@drm.service: Deactivated successfully.
[   10.279013] [      T1] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[   10.280884] [      T1] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[   10.281826] [      T1] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[   10.283685] [      T1] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[   10.284643] [      T1] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[   10.286481] [      T1] systemd[1]: Finished systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info.
[   10.288294] [      T1] systemd[1]: Started systemd-journald.service - Journal Service.
[   10.321749] [    T581] Adding 33554428k swap on /swapfile.  Priority:-1 extents:282 across:1749803008k SS
[   10.323531] [    T539] systemd-journald[539]: Received client request to flush runtime journal.
[   10.326070] [    T539] systemd-journald[539]: File /var/log/journal/5486476fc968482f949829fa6a7a986f/system.journal corrupted or uncleanly shut down, renaming and replacing.
[   10.929121] [    T616] intel-ipu6 0000:00:05.0: enabling device (0000 -> 0002)
[   10.945409] [    T662] intel_ish_ipc 0000:00:12.0: enabling device (0000 -> 0002)
[   10.950390] [    T629] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   10.953212] [    T629] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[   10.953300] [    T629] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[   10.954818] [    T621] usbcore: registered new interface driver btusb
[   10.954909] [    T618] sof-audio-pci-intel-tgl 0000:00:1f.3: SoundWire enabled on CannonLake+ platform, using SOF driver
[   10.954938] [    T618] sof-audio-pci-intel-tgl 0000:00:1f.3: enabling device (0000 -> 0002)
[   10.955114] [    T618] sof-audio-pci-intel-tgl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
[   10.955293] [    T618] sof-audio-pci-intel-tgl 0000:00:1f.3: bound 0000:00:02.0 (ops intel_audio_component_bind_ops [xe])
[   10.956476] [    T187] Bluetooth: hci0: Device revision is 0
[   10.956479] [    T187] Bluetooth: hci0: Secure boot is enabled
[   10.956481] [    T187] Bluetooth: hci0: OTP lock is enabled
[   10.956481] [    T187] Bluetooth: hci0: API lock is enabled
[   10.956482] [    T187] Bluetooth: hci0: Debug lock is disabled
[   10.956483] [    T187] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[   10.956485] [    T187] Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38
[   10.956922] [    T187] ACPI Warning: \_SB.PC00.XHCI.RHUB.HS10._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20250807/nsarguments-61)
[   10.956951] [    T187] Bluetooth: hci0: DSM reset method type: 0x00
[   10.959308] [    T187] Bluetooth: hci0: Found device firmware: intel/ibt-0040-0041.sfi
[   10.959317] [    T187] Bluetooth: hci0: Boot Address: 0x100800
[   10.959318] [    T187] Bluetooth: hci0: Firmware Version: 133-20.25
[   10.961847] [     T37] sof-audio-pci-intel-tgl 0000:00:1f.3: use msi interrupt mode
[   10.990341] [    T629] iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
[   11.024208] [    T629] ACPI Warning: \_SB.PC00.CNVW._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20250807/nsarguments-61)
[   11.024786] [    T629] iwlwifi 0000:00:14.3: Detected crf-id 0x400410, cnv-id 0x80400 wfpm id 0x80000020
[   11.024832] [    T629] iwlwifi 0000:00:14.3: PCI dev 51f0/4090, rev=0x370, rfid=0x2010d000
[   11.024834] [    T629] iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6E AX211 160MHz
[   11.026475] [     T37] sof-audio-pci-intel-tgl 0000:00:1f.3: hda codecs found, mask 4
[   11.026477] [     T37] sof-audio-pci-intel-tgl 0000:00:1f.3: NHLT device BT(0) detected, ssp_mask 0x4
[   11.026479] [     T37] sof-audio-pci-intel-tgl 0000:00:1f.3: BT link detected in NHLT tables: 0x4
[   11.026480] [     T37] sof-audio-pci-intel-tgl 0000:00:1f.3: DMICs detected in NHLT tables: 0
[   11.029533] [    T153] iwlwifi 0000:00:14.3: loaded firmware version 89.123cf747.0 so-a0-gf-a0-89.ucode op_mode iwlmvm
[   11.030868] [     T37] sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware paths/files for ipc type 0:
[   11.030869] [     T37] sof-audio-pci-intel-tgl 0000:00:1f.3:  Firmware file:     intel/sof/sof-adl.ri
[   11.030870] [     T37] sof-audio-pci-intel-tgl 0000:00:1f.3:  Topology file:     intel/sof-tplg/sof-adl-rt1316-l12-rt714-l0.tplg
[   11.031246] [     T37] sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware info: version 2:2:0-57864
[   11.031247] [     T37] sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware: ABI 3:22:1 Kernel ABI 3:23:1
[   11.037369] [    T655] r8152: loading out-of-tree module taints kernel.
[   11.037837] [    T655] usbcore: registered new device driver r8152-cfgselector
[   11.060818] [    T655] cdc_ncm 2-3.4.1:2.0: MAC-Address: 80:6d:97:85:a8:ad
[   11.060822] [    T655] cdc_ncm 2-3.4.1:2.0: setting rx_max = 16384
[   11.060857] [    T655] cdc_ncm 2-3.4.1:2.0: setting tx_max = 16384
[   11.061138] [    T655] cdc_ncm 2-3.4.1:2.0 eth0: register 'cdc_ncm' at usb-0000:00:0d.0-3.4.1, CDC NCM (NO ZLP), 80:6d:97:85:a8:ad
[   11.061317] [    T655] cdc_ncm 2-3.4.1:2.0 eth0: unregister 'cdc_ncm' usb-0000:00:0d.0-3.4.1, CDC NCM (NO ZLP)
[   11.134042] [    T752] sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware info: version 2:2:0-57864
[   11.134044] [    T752] sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware: ABI 3:22:1 Kernel ABI 3:23:1
[   11.145732] [    T655] r8152-cfgselector 2-3.4.1: reset SuperSpeed USB device number 4 using xhci_hcd
[   11.158519] [    T666] sof-audio-pci-intel-tgl 0000:00:1f.3: loading topology: intel/sof-tplg/sof-adl-rt1316-l12-rt714-l0.tplg
[   11.158612] [    T666] sof-audio-pci-intel-tgl 0000:00:1f.3: Topology: ABI 3:22:1 Kernel ABI 3:23:1
[   11.158998] [    T666] sof_sdw sof_sdw: ASoC: Parent card not yet available, widget card binding deferred
[   11.161923] [    T655] r8152 2-3.4.1:1.0 (unnamed net_device) (uninitialized): Invalid header when reading pass-thru MAC addr
[   11.173875] [    T666] sof_sdw sof_sdw: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 3
[   11.192379] [    T666] input: sof-soundwire HDMI/DP,pcm=5 as /devices/pci0000:00/0000:00:1f.3/sof_sdw/sound/card1/input24
[   11.192424] [    T666] input: sof-soundwire HDMI/DP,pcm=6 as /devices/pci0000:00/0000:00:1f.3/sof_sdw/sound/card1/input25
[   11.192470] [    T666] input: sof-soundwire HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sof_sdw/sound/card1/input26
[   11.213359] [    T655] r8152 2-3.4.1:1.0 eth0: v2.21.4 (2025/10/28)
[   11.213364] [    T655] r8152 2-3.4.1:1.0 eth0: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[   11.213408] [    T655] usbcore: registered new interface driver r8152
[   11.272993] [    T201] intel_vsc intel_vsc: silicon stepping version is 0:2
[   11.293668] [    T859] loop0: detected capacity change from 0 to 8
[   11.295008] [    T860] loop1: detected capacity change from 0 to 113640
[   11.298345] [    T862] loop2: detected capacity change from 0 to 113648
[   11.304992] [    T865] loop3: detected capacity change from 0 to 130608
[   11.306338] [    T866] loop4: detected capacity change from 0 to 130608
[   11.309238] [    T868] loop5: detected capacity change from 0 to 151456
[   11.311570] [    T870] loop6: detected capacity change from 0 to 151448
[   11.314101] [    T872] loop7: detected capacity change from 0 to 136896
[   11.315746] [    T873] loop8: detected capacity change from 0 to 136904
[   11.318926] [    T876] loop9: detected capacity change from 0 to 515360
[   11.538932] [   T1016] nvme nvme0: using unchecked data buffer
[   11.640531] [   T1027] block nvme0n1: No UUID available providing old NGUID
[   11.881540] [    T192] pcieport 0000:00:07.2: pciehp: Slot(5): Card present
[   11.881543] [    T192] pcieport 0000:00:07.2: pciehp: Slot(5): Link Up
[   11.943231] [   T1349] systemd-sysv-generator[1349]: SysV service '/etc/init.d/vmware' lacks a native systemd unit file, automatically generating a unit file for compatibility.
[   11.943234] [   T1349] systemd-sysv-generator[1349]: Please update package to include a native systemd unit file.
[   11.943235] [   T1349] systemd-sysv-generator[1349]: ! This compatibility logic is deprecated, expect removal soon. !
[   11.943247] [   T1349] systemd-sysv-generator[1349]: SysV service '/etc/init.d/tlp' lacks a native systemd unit file, automatically generating a unit file for compatibility.
[   11.943248] [   T1349] systemd-sysv-generator[1349]: Please update package to include a native systemd unit file.
[   11.943249] [   T1349] systemd-sysv-generator[1349]: ! This compatibility logic is deprecated, expect removal soon. !
[   11.943262] [   T1349] systemd-sysv-generator[1349]: SysV service '/etc/init.d/vmware-USBArbitrator' lacks a native systemd unit file, automatically generating a unit file for compatibility.
[   11.943263] [   T1349] systemd-sysv-generator[1349]: Please update package to include a native systemd unit file.
[   11.943264] [   T1349] systemd-sysv-generator[1349]: ! This compatibility logic is deprecated, expect removal soon. !
[   11.943495] [   T1349] systemd-sysv-generator[1349]: SysV service '/etc/init.d/grub-common' lacks a native systemd unit file, automatically generating a unit file for compatibility.
[   11.943496] [   T1349] systemd-sysv-generator[1349]: Please update package to include a native systemd unit file.
[   11.943497] [   T1349] systemd-sysv-generator[1349]: ! This compatibility logic is deprecated, expect removal soon. !
[   12.008647] [    T192] pci 0000:40:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Upstream Port
[   12.008688] [    T192] pci 0000:40:00.0: PCI bridge to [bus 00]
[   12.008698] [    T192] pci 0000:40:00.0:   bridge window [io  0x0000-0x0fff]
[   12.008703] [    T192] pci 0000:40:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   12.008718] [    T192] pci 0000:40:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   12.008735] [    T192] pci 0000:40:00.0: enabling Extended Tags
[   12.008909] [    T192] pci 0000:40:00.0: supports D1 D2
[   12.008911] [    T192] pci 0000:40:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   12.009053] [    T192] pci 0000:40:00.0: PTM enabled, 4ns granularity
[   12.009250] [    T192] pci 0000:40:00.0: Adding to iommu group 17
[   12.009303] [    T192] pcieport 0000:00:07.2: ASPM: current common clock configuration is inconsistent, reconfiguring
[   12.010481] [    T192] pci 0000:40:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   12.010649] [    T192] pci 0000:41:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[   12.010689] [    T192] pci 0000:41:00.0: PCI bridge to [bus 00]
[   12.010698] [    T192] pci 0000:41:00.0:   bridge window [io  0x0000-0x0fff]
[   12.010703] [    T192] pci 0000:41:00.0:   bridge window [mem 0x00000000-0x000fffff]
[   12.010718] [    T192] pci 0000:41:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   12.010738] [    T192] pci 0000:41:00.0: enabling Extended Tags
[   12.010904] [    T192] pci 0000:41:00.0: supports D1 D2
[   12.010905] [    T192] pci 0000:41:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   12.011185] [    T192] pci 0000:41:00.0: Adding to iommu group 18
[   12.011264] [    T192] pci 0000:41:01.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[   12.011303] [    T192] pci 0000:41:01.0: PCI bridge to [bus 00]
[   12.011312] [    T192] pci 0000:41:01.0:   bridge window [io  0x0000-0x0fff]
[   12.011316] [    T192] pci 0000:41:01.0:   bridge window [mem 0x00000000-0x000fffff]
[   12.011331] [    T192] pci 0000:41:01.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   12.011351] [    T192] pci 0000:41:01.0: enabling Extended Tags
[   12.011525] [    T192] pci 0000:41:01.0: supports D1 D2
[   12.011531] [    T192] pci 0000:41:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[   12.011938] [    T192] pci 0000:41:01.0: Adding to iommu group 19
[   12.012007] [    T192] pci 0000:41:02.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[   12.012045] [    T192] pci 0000:41:02.0: PCI bridge to [bus 00]
[   12.012054] [    T192] pci 0000:41:02.0:   bridge window [io  0x0000-0x0fff]
[   12.012058] [    T192] pci 0000:41:02.0:   bridge window [mem 0x00000000-0x000fffff]
[   12.012074] [    T192] pci 0000:41:02.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   12.012094] [    T192] pci 0000:41:02.0: enabling Extended Tags
[   12.012262] [    T192] pci 0000:41:02.0: supports D1 D2
[   12.012264] [    T192] pci 0000:41:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[   12.012546] [    T192] pci 0000:41:02.0: Adding to iommu group 20
[   12.012619] [    T192] pci 0000:41:03.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[   12.012657] [    T192] pci 0000:41:03.0: PCI bridge to [bus 00]
[   12.012666] [    T192] pci 0000:41:03.0:   bridge window [io  0x0000-0x0fff]
[   12.012670] [    T192] pci 0000:41:03.0:   bridge window [mem 0x00000000-0x000fffff]
[   12.012685] [    T192] pci 0000:41:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   12.012705] [    T192] pci 0000:41:03.0: enabling Extended Tags
[   12.012873] [    T192] pci 0000:41:03.0: supports D1 D2
[   12.012873] [    T192] pci 0000:41:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[   12.013122] [    T192] pci 0000:41:03.0: Adding to iommu group 21
[   12.013193] [    T192] pci 0000:41:04.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[   12.013231] [    T192] pci 0000:41:04.0: PCI bridge to [bus 00]
[   12.013240] [    T192] pci 0000:41:04.0:   bridge window [io  0x0000-0x0fff]
[   12.013244] [    T192] pci 0000:41:04.0:   bridge window [mem 0x00000000-0x000fffff]
[   12.013259] [    T192] pci 0000:41:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[   12.013280] [    T192] pci 0000:41:04.0: enabling Extended Tags
[   12.013447] [    T192] pci 0000:41:04.0: supports D1 D2
[   12.013448] [    T192] pci 0000:41:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[   12.013704] [    T192] pci 0000:41:04.0: Adding to iommu group 22
[   12.013779] [    T192] pci 0000:40:00.0: PCI bridge to [bus 41-7e]
[   12.013798] [    T192] pci 0000:41:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   12.013809] [    T192] pci 0000:41:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   12.013820] [    T192] pci 0000:41:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   12.013830] [    T192] pci 0000:41:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   12.013840] [    T192] pci 0000:41:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[   12.013972] [    T192] pci 0000:41:00.0: PCI bridge to [bus 42-7e]
[   12.013990] [    T192] pci_bus 0000:42: busn_res: [bus 42-7e] end is updated to 42
[   12.014100] [    T192] pci 0000:41:01.0: PCI bridge to [bus 43-7e]
[   12.014118] [    T192] pci_bus 0000:43: busn_res: [bus 43-7e] end is updated to 56
[   12.014205] [    T192] pci 0000:41:02.0: PCI bridge to [bus 57-7e]
[   12.014222] [    T192] pci_bus 0000:57: busn_res: [bus 57-7e] end is updated to 6a
[   12.014346] [    T192] pci 0000:41:03.0: PCI bridge to [bus 6b-7e]
[   12.014363] [    T192] pci_bus 0000:6b: busn_res: [bus 6b-7e] end is updated to 7d
[   12.014619] [    T192] pci 0000:41:04.0: PCI bridge to [bus 7e]
[   12.014636] [    T192] pci_bus 0000:7e: busn_res: [bus 7e] end is updated to 7e
[   12.014643] [    T192] pci_bus 0000:41: busn_res: [bus 41-7e] end is updated to 7e
[   12.014651] [    T192] pci 0000:41:01.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 43-56] add_size 100000 add_align 100000
[   12.014653] [    T192] pci 0000:41:01.0: bridge window [mem 0x00100000-0x001fffff] to [bus 43-56] add_size 100000 add_align 100000
[   12.014655] [    T192] pci 0000:41:02.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 57-6a] add_size 100000 add_align 100000
[   12.014657] [    T192] pci 0000:41:02.0: bridge window [mem 0x00100000-0x001fffff] to [bus 57-6a] add_size 100000 add_align 100000
[   12.014658] [    T192] pci 0000:41:03.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 6b-7d] add_size 100000 add_align 100000
[   12.014660] [    T192] pci 0000:41:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 6b-7d] add_size 100000 add_align 100000
[   12.014663] [    T192] pci 0000:40:00.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 41-7e] add_size 300000 add_align 100000
[   12.014665] [    T192] pci 0000:40:00.0: bridge window [mem 0x00100000-0x005fffff] to [bus 41-7e] add_size 300000 add_align 100000
[   12.014671] [    T192] pci 0000:40:00.0: bridge window [mem 0x74000000-0x801fffff]: assigned
[   12.014673] [    T192] pci 0000:40:00.0: bridge window [mem 0x6020000000-0x603bffffff 64bit pref]: assigned
[   12.014674] [    T192] pci 0000:40:00.0: bridge window [io  size 0x5000]: can't assign; no space
[   12.014675] [    T192] pci 0000:40:00.0: bridge window [io  size 0x5000]: failed to assign
[   12.014677] [    T192] pci 0000:40:00.0: bridge window [io  size 0x5000]: can't assign; no space
[   12.014678] [    T192] pci 0000:40:00.0: bridge window [io  size 0x5000]: failed to assign
[   12.014681] [    T192] pci 0000:41:00.0: bridge window [mem 0x74000000-0x740fffff]: assigned
[   12.014682] [    T192] pci 0000:41:00.0: bridge window [mem 0x6020000000-0x60200fffff 64bit pref]: assigned
[   12.014683] [    T192] pci 0000:41:01.0: bridge window [mem 0x74100000-0x780fffff]: assigned
[   12.014684] [    T192] pci 0000:41:01.0: bridge window [mem 0x6020100000-0x60294fffff 64bit pref]: assigned
[   12.014685] [    T192] pci 0000:41:02.0: bridge window [mem 0x78100000-0x7c0fffff]: assigned
[   12.014686] [    T192] pci 0000:41:02.0: bridge window [mem 0x6029500000-0x60328fffff 64bit pref]: assigned
[   12.014687] [    T192] pci 0000:41:03.0: bridge window [mem 0x7c100000-0x800fffff]: assigned
[   12.014688] [    T192] pci 0000:41:03.0: bridge window [mem 0x6032900000-0x603bcfffff 64bit pref]: assigned
[   12.014690] [    T192] pci 0000:41:04.0: bridge window [mem 0x80100000-0x801fffff]: assigned
[   12.014691] [    T192] pci 0000:41:04.0: bridge window [mem 0x603bd00000-0x603bdfffff 64bit pref]: assigned
[   12.014692] [    T192] pci 0000:41:00.0: bridge window [io  size 0x1000]: can't assign; no space
[   12.014692] [    T192] pci 0000:41:00.0: bridge window [io  size 0x1000]: failed to assign
[   12.014693] [    T192] pci 0000:41:01.0: bridge window [io  size 0x1000]: can't assign; no space
[   12.014694] [    T192] pci 0000:41:01.0: bridge window [io  size 0x1000]: failed to assign
[   12.014695] [    T192] pci 0000:41:02.0: bridge window [io  size 0x1000]: can't assign; no space
[   12.014696] [    T192] pci 0000:41:02.0: bridge window [io  size 0x1000]: failed to assign
[   12.014697] [    T192] pci 0000:41:03.0: bridge window [io  size 0x1000]: can't assign; no space
[   12.014698] [    T192] pci 0000:41:03.0: bridge window [io  size 0x1000]: failed to assign
[   12.014699] [    T192] pci 0000:41:04.0: bridge window [io  size 0x1000]: can't assign; no space
[   12.014700] [    T192] pci 0000:41:04.0: bridge window [io  size 0x1000]: failed to assign
[   12.014701] [    T192] pci 0000:41:00.0: bridge window [io  size 0x1000]: can't assign; no space
[   12.014702] [    T192] pci 0000:41:00.0: bridge window [io  size 0x1000]: failed to assign
[   12.014703] [    T192] pci 0000:41:01.0: bridge window [io  size 0x1000]: can't assign; no space
[   12.014704] [    T192] pci 0000:41:01.0: bridge window [io  size 0x1000]: failed to assign
[   12.014705] [    T192] pci 0000:41:02.0: bridge window [io  size 0x1000]: can't assign; no space
[   12.014706] [    T192] pci 0000:41:02.0: bridge window [io  size 0x1000]: failed to assign
[   12.014706] [    T192] pci 0000:41:03.0: bridge window [io  size 0x1000]: can't assign; no space
[   12.014707] [    T192] pci 0000:41:03.0: bridge window [io  size 0x1000]: failed to assign
[   12.014708] [    T192] pci 0000:41:04.0: bridge window [io  size 0x1000]: can't assign; no space
[   12.014709] [    T192] pci 0000:41:04.0: bridge window [io  size 0x1000]: failed to assign
[   12.014710] [    T192] pci 0000:41:00.0: PCI bridge to [bus 42]
[   12.014716] [    T192] pci 0000:41:00.0:   bridge window [mem 0x74000000-0x740fffff]
[   12.014721] [    T192] pci 0000:41:00.0:   bridge window [mem 0x6020000000-0x60200fffff 64bit pref]
[   12.014728] [    T192] pci 0000:41:01.0: PCI bridge to [bus 43-56]
[   12.014734] [    T192] pci 0000:41:01.0:   bridge window [mem 0x74100000-0x780fffff]
[   12.014738] [    T192] pci 0000:41:01.0:   bridge window [mem 0x6020100000-0x60294fffff 64bit pref]
[   12.014746] [    T192] pci 0000:41:02.0: PCI bridge to [bus 57-6a]
[   12.014751] [    T192] pci 0000:41:02.0:   bridge window [mem 0x78100000-0x7c0fffff]
[   12.014755] [    T192] pci 0000:41:02.0:   bridge window [mem 0x6029500000-0x60328fffff 64bit pref]
[   12.014763] [    T192] pci 0000:41:03.0: PCI bridge to [bus 6b-7d]
[   12.014768] [    T192] pci 0000:41:03.0:   bridge window [mem 0x7c100000-0x800fffff]
[   12.014772] [    T192] pci 0000:41:03.0:   bridge window [mem 0x6032900000-0x603bcfffff 64bit pref]
[   12.014780] [    T192] pci 0000:41:04.0: PCI bridge to [bus 7e]
[   12.014786] [    T192] pci 0000:41:04.0:   bridge window [mem 0x80100000-0x801fffff]
[   12.014790] [    T192] pci 0000:41:04.0:   bridge window [mem 0x603bd00000-0x603bdfffff 64bit pref]
[   12.014797] [    T192] pci 0000:40:00.0: PCI bridge to [bus 41-7e]
[   12.014803] [    T192] pci 0000:40:00.0:   bridge window [mem 0x74000000-0x801fffff]
[   12.014807] [    T192] pci 0000:40:00.0:   bridge window [mem 0x6020000000-0x603bffffff 64bit pref]
[   12.014814] [    T192] pcieport 0000:00:07.2: PCI bridge to [bus 40-7e]
[   12.014816] [    T192] pcieport 0000:00:07.2:   bridge window [io  0x5000-0x8fff]
[   12.014818] [    T192] pcieport 0000:00:07.2:   bridge window [mem 0x74000000-0x801fffff]
[   12.014820] [    T192] pcieport 0000:00:07.2:   bridge window [mem 0x6020000000-0x603bffffff 64bit pref]
[   12.014823] [    T192] PCI: No. 2 try to assign unassigned res
[   12.014825] [    T192] pcieport 0000:00:07.2: bridge window [io  0x5000-0x8fff]: releasing
[   12.014833] [    T192] pcieport 0000:00:07.2: bridge window [io  0x5000-0x9fff]: assigned
[   12.014835] [    T192] pci 0000:40:00.0: bridge window [io  0x5000-0x9fff]: assigned
[   12.014837] [    T192] pci 0000:41:00.0: bridge window [io  0x5000-0x5fff]: assigned
[   12.014838] [    T192] pci 0000:41:01.0: bridge window [io  0x6000-0x6fff]: assigned
[   12.014839] [    T192] pci 0000:41:02.0: bridge window [io  0x7000-0x7fff]: assigned
[   12.014840] [    T192] pci 0000:41:03.0: bridge window [io  0x8000-0x8fff]: assigned
[   12.014841] [    T192] pci 0000:41:04.0: bridge window [io  0x9000-0x9fff]: assigned
[   12.014842] [    T192] pci 0000:41:00.0: PCI bridge to [bus 42]
[   12.014845] [    T192] pci 0000:41:00.0:   bridge window [io  0x5000-0x5fff]
[   12.014850] [    T192] pci 0000:41:00.0:   bridge window [mem 0x74000000-0x740fffff]
[   12.014854] [    T192] pci 0000:41:00.0:   bridge window [mem 0x6020000000-0x60200fffff 64bit pref]
[   12.014862] [    T192] pci 0000:41:01.0: PCI bridge to [bus 43-56]
[   12.014864] [    T192] pci 0000:41:01.0:   bridge window [io  0x6000-0x6fff]
[   12.014870] [    T192] pci 0000:41:01.0:   bridge window [mem 0x74100000-0x780fffff]
[   12.014874] [    T192] pci 0000:41:01.0:   bridge window [mem 0x6020100000-0x60294fffff 64bit pref]
[   12.014881] [    T192] pci 0000:41:02.0: PCI bridge to [bus 57-6a]
[   12.014884] [    T192] pci 0000:41:02.0:   bridge window [io  0x7000-0x7fff]
[   12.014889] [    T192] pci 0000:41:02.0:   bridge window [mem 0x78100000-0x7c0fffff]
[   12.014893] [    T192] pci 0000:41:02.0:   bridge window [mem 0x6029500000-0x60328fffff 64bit pref]
[   12.014901] [    T192] pci 0000:41:03.0: PCI bridge to [bus 6b-7d]
[   12.014903] [    T192] pci 0000:41:03.0:   bridge window [io  0x8000-0x8fff]
[   12.014909] [    T192] pci 0000:41:03.0:   bridge window [mem 0x7c100000-0x800fffff]
[   12.014913] [    T192] pci 0000:41:03.0:   bridge window [mem 0x6032900000-0x603bcfffff 64bit pref]
[   12.014920] [    T192] pci 0000:41:04.0: PCI bridge to [bus 7e]
[   12.014923] [    T192] pci 0000:41:04.0:   bridge window [io  0x9000-0x9fff]
[   12.014928] [    T192] pci 0000:41:04.0:   bridge window [mem 0x80100000-0x801fffff]
[   12.014932] [    T192] pci 0000:41:04.0:   bridge window [mem 0x603bd00000-0x603bdfffff 64bit pref]
[   12.014940] [    T192] pci 0000:40:00.0: PCI bridge to [bus 41-7e]
[   12.014942] [    T192] pci 0000:40:00.0:   bridge window [io  0x5000-0x9fff]
[   12.014948] [    T192] pci 0000:40:00.0:   bridge window [mem 0x74000000-0x801fffff]
[   12.014952] [    T192] pci 0000:40:00.0:   bridge window [mem 0x6020000000-0x603bffffff 64bit pref]
[   12.014959] [    T192] pcieport 0000:00:07.2: PCI bridge to [bus 40-7e]
[   12.014960] [    T192] pcieport 0000:00:07.2:   bridge window [io  0x5000-0x9fff]
[   12.014963] [    T192] pcieport 0000:00:07.2:   bridge window [mem 0x74000000-0x801fffff]
[   12.014965] [    T192] pcieport 0000:00:07.2:   bridge window [mem 0x6020000000-0x603bffffff 64bit pref]
[   12.015182] [    T192] pcieport 0000:40:00.0: enabling device (0000 -> 0003)
[   12.015532] [    T192] pcieport 0000:41:00.0: enabling device (0000 -> 0003)
[   12.015880] [    T192] pcieport 0000:41:01.0: enabling device (0000 -> 0003)
[   12.016756] [    T192] pcieport 0000:41:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[   12.017250] [    T192] pcieport 0000:41:02.0: enabling device (0000 -> 0003)
[   12.017562] [    T192] pcieport 0000:41:02.0: pciehp: Slot #2 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[   12.018287] [    T192] pcieport 0000:41:03.0: enabling device (0000 -> 0003)
[   12.018773] [    T192] pcieport 0000:41:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[   12.019074] [    T192] pcieport 0000:41:04.0: enabling device (0000 -> 0003)
[   12.477297] [    T187] Bluetooth: hci0: Waiting for firmware download to complete
[   12.477437] [    T187] Bluetooth: hci0: Firmware loaded in 1482545 usecs
[   12.477490] [    T187] Bluetooth: hci0: Waiting for device to boot
[   12.493440] [    T187] Bluetooth: hci0: Device booted in 15614 usecs
[   12.495582] [    T187] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-0040-0041.ddc
[   12.497445] [    T187] Bluetooth: hci0: Applying Intel DDC parameters completed
[   12.500469] [    T187] Bluetooth: hci0: Firmware timestamp 2025.20 buildtype 1 build 82053
[   12.500474] [    T187] Bluetooth: hci0: Firmware SHA1: 0x937bca4a
[   12.504442] [    T187] Bluetooth: hci0: Fseq status: Success (0x00)
[   12.504448] [    T187] Bluetooth: hci0: Fseq executed: 00.00.02.41
[   12.504451] [    T187] Bluetooth: hci0: Fseq BT Top: 00.00.02.41
[   12.572673] [    T986] Bluetooth: MGMT ver 1.23
[   21.618856] [   T1543] ish-hid {33AECD58-B679-4E54-9BD9-A04D34F0C226}: [hid-ish]: enum_devices_done OK, num_hid_devices=2
[   21.625782] [   T1543] hid-sensor-hub 001F:8087:0AC2.0008: hidraw7: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on 
[   21.647302] [   T1543] hid-sensor-hub 001F:8087:0AC2.0009: hidraw8: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on 
[   21.657740] [    T166] intel-ipu6 0000:00:05.0: Found supported sensor OVTI01A0:00
[   21.657886] [    T166] intel-ipu6 0000:00:05.0: Connected 1 cameras
[   21.658645] [    T166] intel-ipu6 0000:00:05.0: IPU6-v3[465d] hardware version 5
[   21.792835] [    T811] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[   21.792895] [    T811] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[   21.792905] [    T811] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[   21.792915] [    T811] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[   21.793047] [    T811] iwlwifi 0000:00:14.3: Detected RF GF, rfid=0x2010d000
[   21.794202] [    T332] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 4
[   21.879856] [    T811] iwlwifi 0000:00:14.3: base HW address: 54:6c:eb:db:9d:a4
[   22.101744] [   T1132] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[   22.101799] [   T1132] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[   22.101860] [   T1132] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[   22.101920] [   T1132] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[   22.103246] [    T332] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 4
[   22.147175] [    T167] r8152 2-3.4.1:1.0 eth0: carrier on
[   22.376937] [   T1761] xe 0000:00:02.0: [drm] Selective fetch area calculation failed in pipe A
[   22.404106] [    T167] r8152 2-3.4.1:1.0 eth0: carrier off
[   25.475117] [    T167] r8152 2-3.4.1:1.0 eth0: carrier on
[   35.929272] [   T1986] usb 3-9: reset full-speed USB device number 3 using xhci_hcd
[   36.194228] [   T1986] usb 3-9: reset full-speed USB device number 3 using xhci_hcd
[   36.800979] [    T539] systemd-journald[539]: File /var/log/journal/5486476fc968482f949829fa6a7a986f/user-1000.journal corrupted or uncleanly shut down, renaming and replacing.
[   38.690462] [    T206] xe 0000:00:02.0: [drm] Tile0: GT0: Engine reset: engine_class=rcs, logical_mask: 0x1, guc_id=31
[   38.690500] [    T206] xe 0000:00:02.0: [drm] Tile0: GT0: Timedout job: seqno=4294967169, lrc_seqno=4294967169, guc_id=31, flags=0x0 in Xorg [1761]
[   38.690924] [    T206] xe 0000:00:02.0: [drm] Xe device coredump has been created
[   38.690927] [    T206] xe 0000:00:02.0: [drm] Check your /sys/class/drm/card0/device/devcoredump/data
[   38.702643] [    T219] xe 0000:00:02.0: [drm] Tile0: GT0: Engine reset: engine_class=rcs, logical_mask: 0x1, guc_id=31
[   38.702685] [    T219] xe 0000:00:02.0: [drm] Tile0: GT0: Timedout job: seqno=4294967169, lrc_seqno=4294967169, guc_id=31, flags=0x0 in Xorg [1761]
[   40.843703] [    T986] input: Zone 301 (AVRCP) as /devices/virtual/input/input27
[   41.193248] [   T2751] warning: `xosview' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[   41.272440] [    T202] xe 0000:00:02.0: [drm] Tile0: GT0: Engine reset: engine_class=rcs, logical_mask: 0x1, guc_id=8
[   41.272481] [    T202] xe 0000:00:02.0: [drm] Tile0: GT0: Timedout job: seqno=4294967169, lrc_seqno=4294967169, guc_id=8, flags=0x0 in Xorg [1761]
[   41.288219] [    T206] xe 0000:00:02.0: [drm] Tile0: GT0: Engine reset: engine_class=rcs, logical_mask: 0x1, guc_id=36
[   41.288307] [    T206] xe 0000:00:02.0: [drm] Tile0: GT0: Timedout job: seqno=4294967169, lrc_seqno=4294967169, guc_id=36, flags=0x0 in Xorg [1761]
[   41.295024] [    T206] xe 0000:00:02.0: [drm] Tile0: GT0: Engine reset: engine_class=rcs, logical_mask: 0x1, guc_id=36
[   41.295057] [    T206] xe 0000:00:02.0: [drm] Tile0: GT0: Timedout job: seqno=4294967169, lrc_seqno=4294967169, guc_id=36, flags=0x0 in Xorg [1761]
[   41.311040] [     T12] xe 0000:00:02.0: [drm] Tile0: GT0: Engine reset: engine_class=rcs, logical_mask: 0x1, guc_id=37
[   41.311084] [     T12] xe 0000:00:02.0: [drm] Tile0: GT0: Timedout job: seqno=4294967169, lrc_seqno=4294967169, guc_id=37, flags=0x0 in Xorg [1761]
[   41.327367] [     T12] xe 0000:00:02.0: [drm] Tile0: GT0: Engine reset: engine_class=rcs, logical_mask: 0x1, guc_id=37
[   41.327446] [     T12] xe 0000:00:02.0: [drm] Tile0: GT0: Timedout job: seqno=4294967169, lrc_seqno=4294967169, guc_id=37, flags=0x0 in Xorg [1761]
[   41.409203] [    T202] xe 0000:00:02.0: [drm] Tile0: GT0: Engine reset: engine_class=rcs, logical_mask: 0x1, guc_id=41
[   76.948767] [    T901] thunderbolt 1-0:1.1: retimer disconnected
[   76.950400] [    T232] usb 3-3: USB disconnect, device number 5
[   76.950425] [    T232] usb 3-3.1: USB disconnect, device number 6
[   76.951554] [    T232] usb 3-3.4: USB disconnect, device number 7
[   76.951567] [    T232] usb 3-3.4.2: USB disconnect, device number 8
[   76.951574] [    T232] usb 3-3.4.2.1: USB disconnect, device number 9
[   76.951581] [    T232] usb 3-3.4.2.1.2: USB disconnect, device number 10
[   76.959167] [    T901] thunderbolt 1-1: device disconnected
[   76.976692] [    T812] usb 2-3: USB disconnect, device number 2
[   76.976714] [    T812] usb 2-3.4: USB disconnect, device number 3
[   76.976725] [    T812] r8152-cfgselector 2-3.4.1: USB disconnect, device number 4
[   76.982958] [    T232] usb 3-3.4.2.1.3: USB disconnect, device number 11
[   77.006194] [    T812] usb 2-3.4.2: USB disconnect, device number 5
[   77.006219] [    T812] usb 2-3.4.2.1: USB disconnect, device number 6
[   77.094752] [    T202] xe 0000:00:02.0: [drm] *ERROR* Error reading ALPM status
[   77.373413] [    T232] usb 3-3.4.2.1.4: USB disconnect, device number 12
[   77.638857] [   T2684] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[   78.504634] [     T12] pcieport 0000:40:00.0: not ready 1023ms after resume; giving up
[   78.504854] [    T192] pcieport 0000:00:07.2: pciehp: Slot(5): Card not present
[   78.534530] [     T12] pci_bus 0000:42: busn_res: [bus 42] is released
[   78.547007] [     T12] pci_bus 0000:43: busn_res: [bus 43-56] is released
[   78.551482] [     T12] pci_bus 0000:57: busn_res: [bus 57-6a] is released
[   78.552995] [     T12] pci_bus 0000:6b: busn_res: [bus 6b-7d] is released
[   78.554287] [     T12] pci_bus 0000:7e: busn_res: [bus 7e] is released
[   78.554926] [     T12] pci_bus 0000:41: busn_res: [bus 41-7e] is released
[   79.003780] [   T2684] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[   94.380573] [   T3513] Suspended at Thu, 29 Jan 2026 17:05:09 -0800
[   94.453337] [   T3495] PM: hibernation: hibernation entry
[   94.482627] [     T12] Filesystems sync: 0.004 seconds
[   94.483280] [   T3495] Freezing user space processes
[   94.484885] [   T3495] Freezing user space processes completed (elapsed 0.001 seconds)
[   94.484892] [   T3495] OOM killer disabled.
[   94.485232] [   T3495] PM: hibernation: Marking nosave pages: [mem 0x00000000-0x00000fff]
[   94.485238] [   T3495] PM: hibernation: Marking nosave pages: [mem 0x0009f000-0x000fffff]
[   94.485242] [   T3495] PM: hibernation: Marking nosave pages: [mem 0x523e6000-0x52426fff]
[   94.485245] [   T3495] PM: hibernation: Marking nosave pages: [mem 0x57cb6000-0x5d7fefff]
[   94.485677] [   T3495] PM: hibernation: Marking nosave pages: [mem 0x5d800000-0xffffffff]
[   94.485869] [   T3495] PM: hibernation: Basic memory bitmaps created
[   94.486249] [   T3495] PM: hibernation: Preallocating image memory
[   94.938958] [   T3495] PM: hibernation: Allocated 1202292 pages for snapshot
[   94.938962] [   T3495] PM: hibernation: Allocated 4809168 kbytes in 0.45 seconds (10687.04 MB/s)
[   94.938964] [   T3495] Freezing remaining freezable tasks
[   94.942413] [   T3495] Freezing remaining freezable tasks completed (elapsed 0.003 seconds)
[   95.062497] [   T3495] printk: Suspending console(s) (use no_console_suspend to debug)
[   96.161710] [   T3495] ACPI: EC: interrupt blocked
[   96.161783] [   T3495] ACPI: PM: Preparing to enter system sleep state S4
[   96.205681] [   T3495] ACPI: EC: event blocked
[   96.205683] [   T3495] ACPI: EC: EC stopped
[   96.205684] [   T3495] ACPI: PM: Saving platform NVS memory
[   96.208536] [   T3495] Disabling non-boot CPUs ...
[   96.210741] [   T3495] smpboot: CPU 19 is now offline
[   96.213565] [   T3495] smpboot: CPU 18 is now offline
[   96.216547] [   T3495] smpboot: CPU 17 is now offline
[   96.219491] [   T3495] smpboot: CPU 16 is now offline
[   96.222264] [   T3495] smpboot: CPU 15 is now offline
[   96.225080] [   T3495] smpboot: CPU 14 is now offline
[   96.227809] [   T3495] smpboot: CPU 13 is now offline
[   96.230409] [   T3495] smpboot: CPU 12 is now offline
[   96.232952] [   T3495] smpboot: CPU 10 is now offline
[   96.235370] [   T3495] smpboot: CPU 8 is now offline
[   96.237536] [   T3495] smpboot: CPU 6 is now offline
[   96.239655] [   T3495] smpboot: CPU 4 is now offline
[   96.241743] [   T3495] smpboot: CPU 2 is now offline
[   96.515565] [   T3495] PM: hibernation: Normal pages needed: 1154360 + 1024, available pages: 7132044
[   96.251041] [   T3495] ACPI: PM: Restoring platform NVS memory
[   96.251917] [   T3495] ACPI: EC: EC started
[   96.253613] [   T3495] Enabling non-boot CPUs ...
[   96.253639] [   T3495] smpboot: Booting Node 0 Processor 2 APIC 0x8
[   96.257771] [   T3495] CPU2 is up
[   96.257794] [   T3495] smpboot: Booting Node 0 Processor 4 APIC 0x10
[   96.261483] [   T3495] CPU4 is up
[   96.261497] [   T3495] smpboot: Booting Node 0 Processor 6 APIC 0x18
[   96.265463] [   T3495] CPU6 is up
[   96.265474] [   T3495] smpboot: Booting Node 0 Processor 8 APIC 0x20
[   96.269476] [   T3495] CPU8 is up
[   96.269487] [   T3495] smpboot: Booting Node 0 Processor 10 APIC 0x28
[   96.273499] [   T3495] CPU10 is up
[   96.273510] [   T3495] smpboot: Booting Node 0 Processor 12 APIC 0x30
[   96.276564] [      T0] core: cpu_atom PMU driver: 
[   96.276568] [      T0] ... version:                   5
[   96.276569] [      T0] ... bit width:                 48
[   96.276570] [      T0] ... generic counters:          6
[   96.276570] [      T0] ... generic bitmap:            000000000000003f
[   96.276571] [      T0] ... fixed-purpose counters:    3
[   96.276571] [      T0] ... fixed-purpose bitmap:      0000000000000007
[   96.276572] [      T0] ... value mask:                0000ffffffffffff
[   96.276573] [      T0] ... max period:                00007fffffffffff
[   96.276573] [      T0] ... global_ctrl mask:          000000070000003f
[   96.277790] [   T3495] CPU12 is up
[   96.277801] [   T3495] smpboot: Booting Node 0 Processor 13 APIC 0x32
[   96.281864] [   T3495] CPU13 is up
[   96.281878] [   T3495] smpboot: Booting Node 0 Processor 14 APIC 0x34
[   96.285962] [   T3495] CPU14 is up
[   96.285974] [   T3495] smpboot: Booting Node 0 Processor 15 APIC 0x36
[   96.290094] [   T3495] CPU15 is up
[   96.290107] [   T3495] smpboot: Booting Node 0 Processor 16 APIC 0x38
[   96.294412] [   T3495] CPU16 is up
[   96.294423] [   T3495] smpboot: Booting Node 0 Processor 17 APIC 0x3a
[   96.299572] [   T3495] CPU17 is up
[   96.299584] [   T3495] smpboot: Booting Node 0 Processor 18 APIC 0x3c
[   96.304819] [   T3495] CPU18 is up
[   96.304832] [   T3495] smpboot: Booting Node 0 Processor 19 APIC 0x3e
[   96.312247] [   T3495] CPU19 is up
[   96.313944] [   T3495] smpboot: Booting Node 0 Processor 1 APIC 0x1
[   96.322470] [    T100] processor cpu1: EM: No online CPU for CPUFreq policy
[   96.322516] [    T100] processor cpu1: EM: created perf domain
[   96.326352] [   T3495] smpboot: Booting Node 0 Processor 3 APIC 0x9
[   96.346577] [    T106] processor cpu3: EM: No online CPU for CPUFreq policy
[   96.346670] [    T106] processor cpu3: EM: created perf domain
[   96.350199] [   T3495] smpboot: Booting Node 0 Processor 5 APIC 0x11
[   96.369788] [    T112] processor cpu5: EM: No online CPU for CPUFreq policy
[   96.369886] [    T112] processor cpu5: EM: created perf domain
[   96.373732] [   T3495] smpboot: Booting Node 0 Processor 7 APIC 0x19
[   96.393594] [    T118] processor cpu7: EM: No online CPU for CPUFreq policy
[   96.393683] [    T118] processor cpu7: EM: created perf domain
[   96.397567] [   T3495] smpboot: Booting Node 0 Processor 9 APIC 0x21
[   96.417641] [    T124] processor cpu9: EM: No online CPU for CPUFreq policy
[   96.417731] [    T124] processor cpu9: EM: created perf domain
[   96.421674] [   T3495] smpboot: Booting Node 0 Processor 11 APIC 0x29
[   96.441786] [    T130] processor cpu11: EM: No online CPU for CPUFreq policy
[   96.441891] [    T130] processor cpu11: EM: created perf domain
[   96.459805] [    T232] smpboot: CPU 1 is now offline
[   96.465790] [    T232] smpboot: CPU 3 is now offline
[   96.491608] [    T232] smpboot: CPU 5 is now offline
[   96.513487] [    T232] smpboot: CPU 7 is now offline
[   96.521203] [    T232] smpboot: CPU 9 is now offline
[   96.535044] [    T232] smpboot: CPU 11 is now offline
[   96.547536] [   T3495] ACPI: PM: Waking up from system sleep state S4
[   96.558801] [    T233] ACPI: button: The lid device is not compliant to SW_LID.
[   96.577742] [   T3495] ACPI: EC: interrupt unblocked
[   96.610864] [   T3495] intel_pmc_core INT33A1:00: CPU did not enter Package C10!!! (Package C10 cnt=0x0)
[   96.610873] [   T3495] intel_pmc_core INT33A1:00: Prev Package C2 cnt = 0x42b9fb574, Current Package C2 cnt = 0x2d458b94
[   96.610875] [   T3495] intel_pmc_core INT33A1:00: Prev Package C3 cnt = 0xfd9018cc, Current Package C3 cnt = 0xb245568
[   96.610877] [   T3495] intel_pmc_core INT33A1:00: Prev Package C6 cnt = 0x7bc59304, Current Package C6 cnt = 0x0
[   96.610878] [   T3495] intel_pmc_core INT33A1:00: Prev Package C7 cnt = 0x0, Current Package C7 cnt = 0x0
[   96.610879] [   T3495] intel_pmc_core INT33A1:00: Prev Package C8 cnt = 0x0, Current Package C8 cnt = 0x0
[   96.610880] [   T3495] intel_pmc_core INT33A1:00: Prev Package C9 cnt = 0x0, Current Package C9 cnt = 0x0
[   96.610881] [   T3495] intel_pmc_core INT33A1:00: Prev Package C10 cnt = 0x0, Current Package C10 cnt = 0x0
[   96.691952] [   T3495] ACPI: EC: event unblocked
[   96.692068] [   T3533] intel-ipu6 0000:00:05.0: IPU6 in non-secure mode
[   96.692262] [    T219] usb usb1: root hub lost power or was reset
[   96.692264] [    T219] usb usb2: root hub lost power or was reset
[   96.692616] [     T12] usb usb3: root hub lost power or was reset
[   96.692619] [     T12] usb usb4: root hub lost power or was reset
[   96.766001] [   T3533] pcieport 10000:e0:06.0: can't derive routing for PCI INT A
[   96.766003] [   T3533] nvme 10000:e1:00.0: PCI INT A: no GSI
[   96.778966] [   T3533] nvme nvme0: 20/0/0 default/read/poll queues
[   96.843980] [   T3573] usb 3-8: WARN: invalid context state for evaluate context command.
[   96.955767] [   T3573] usb 3-8: reset full-speed USB device number 2 using xhci_hcd
[   97.080119] [     T12] usb 3-9: WARN: invalid context state for evaluate context command.
[   97.084463] [   T3573] gpio_ljca usb_ljca.ljca-gpio.0: set value failed offset: 1 val: 0 ret: -19
[   97.191853] [     T12] usb 3-9: reset full-speed USB device number 3 using xhci_hcd
[   97.316115] [    T202] usb 3-10: WARN: invalid context state for evaluate context command.
[   97.350039] [   T3538] ish-hid {33AECD58-B679-4E54-9BD9-A04D34F0C226}: [hid-ish]: enum_devices_done OK, num_hid_devices=2
[   97.427761] [    T202] usb 3-10: reset full-speed USB device number 4 using xhci_hcd
[   99.119689] [   T3573] vsc-tp spi-INTC1094:00: wakeup firmware failed ret: -110
[   99.119704] [   T3573] gpio_ljca usb_ljca.ljca-gpio.0: set value failed offset: 1 val: 1 ret: -19
[   99.120360] [   T3573] gpio_ljca usb_ljca.ljca-gpio.0: set value failed offset: 0 val: 0 ret: -19
[   99.140681] [   T3573] gpio_ljca usb_ljca.ljca-gpio.0: set value failed offset: 0 val: 1 ret: -19
[   99.151664] [   T3573] gpio_ljca usb_ljca.ljca-gpio.0: set value failed offset: 1 val: 1 ret: -19
[   99.227162] [   T3495] PM: hibernation: Basic memory bitmaps freed
[   99.227773] [   T3495] OOM killer enabled.
[   99.227776] [   T3495] Restarting tasks: Starting
[   99.230615] [   T1360] Bluetooth: hci0: Device revision is 0
[   99.230620] [   T1360] Bluetooth: hci0: Secure boot is enabled
[   99.230623] [   T1360] Bluetooth: hci0: OTP lock is enabled
[   99.230624] [   T1360] Bluetooth: hci0: API lock is enabled
[   99.230626] [   T1360] Bluetooth: hci0: Debug lock is disabled
[   99.230627] [   T1360] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[   99.230630] [   T1360] Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38
[   99.232023] [   T1360] Bluetooth: hci0: DSM reset method type: 0x00
[   99.232811] [   T1360] Bluetooth: hci0: Found device firmware: intel/ibt-0040-0041.sfi
[   99.232852] [   T1360] Bluetooth: hci0: Boot Address: 0x100800
[   99.232854] [   T1360] Bluetooth: hci0: Firmware Version: 133-20.25
[   99.234290] [   T3495] Restarting tasks: Done
[   99.234298] [   T3495] efivarfs: resyncing variable state
[   99.238721] [   T3495] efivarfs: removing variable HwErrRec0000-414e6bdd-e47b-47cc-b244-bb61020cf516
[   99.239534] [   T3495] efivarfs: removing variable dump-type0-22-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.239575] [   T3495] efivarfs: removing variable dump-type0-21-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240466] [   T3495] efivarfs: removing variable dump-type0-20-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240515] [   T3495] efivarfs: removing variable dump-type0-19-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240567] [   T3495] efivarfs: removing variable dump-type0-18-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240608] [   T3495] efivarfs: removing variable dump-type0-17-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240637] [   T3495] efivarfs: removing variable dump-type0-16-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240662] [   T3495] efivarfs: removing variable dump-type0-15-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240685] [   T3495] efivarfs: removing variable dump-type0-14-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240713] [   T3495] efivarfs: removing variable dump-type0-13-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240738] [   T3495] efivarfs: removing variable dump-type0-12-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240782] [   T3495] efivarfs: removing variable dump-type0-11-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240802] [    T202] ov01a10 i2c-OVTI01A0:00: error -EIO: failed to find sensor
[   99.240808] [   T3495] efivarfs: removing variable dump-type0-10-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240814] [    T202] ov01a10 i2c-OVTI01A0:00: probe with driver ov01a10 failed with error -5
[   99.240833] [   T3495] efivarfs: removing variable dump-type0-9-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240858] [   T3495] efivarfs: removing variable dump-type0-8-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240882] [   T3495] efivarfs: removing variable dump-type0-7-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240898] [   T3495] efivarfs: removing variable dump-type0-6-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240915] [   T3495] efivarfs: removing variable dump-type0-5-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240933] [   T3495] efivarfs: removing variable dump-type0-4-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240949] [   T3495] efivarfs: removing variable dump-type0-3-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240966] [   T3495] efivarfs: removing variable dump-type0-2-2-1769734944-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240982] [   T3495] efivarfs: removing variable dump-type0-1-2-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.240999] [   T3495] efivarfs: removing variable dump-type0-22-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241016] [   T3495] efivarfs: removing variable dump-type0-21-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241032] [   T3495] efivarfs: removing variable dump-type0-20-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241049] [   T3495] efivarfs: removing variable dump-type0-19-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241066] [   T3495] efivarfs: removing variable dump-type0-18-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241083] [   T3495] efivarfs: removing variable dump-type0-17-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241100] [   T3495] efivarfs: removing variable dump-type0-16-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241117] [   T3495] efivarfs: removing variable dump-type0-15-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241134] [   T3495] efivarfs: removing variable dump-type0-14-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241151] [   T3495] efivarfs: removing variable dump-type0-13-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241168] [   T3495] efivarfs: removing variable dump-type0-12-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241185] [   T3495] efivarfs: removing variable dump-type0-11-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241203] [   T3495] efivarfs: removing variable dump-type0-10-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241221] [   T3495] efivarfs: removing variable dump-type0-9-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241238] [   T3495] efivarfs: removing variable dump-type0-8-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241256] [   T3495] efivarfs: removing variable dump-type0-7-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241282] [   T3495] efivarfs: removing variable dump-type0-6-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241300] [   T3495] efivarfs: removing variable dump-type0-5-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241317] [   T3495] efivarfs: removing variable dump-type0-4-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241334] [   T3495] efivarfs: removing variable dump-type0-3-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241351] [   T3495] efivarfs: removing variable dump-type0-2-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.241368] [   T3495] efivarfs: removing variable dump-type0-1-1-1769734943-C-cfc8fc79-be2e-4ddc-97f0-9f98bfe298a0
[   99.261507] [   T3495] efivarfs: finished resyncing variable state
[   99.304837] [   T3573] intel_vsc intel_vsc: silicon stepping version is 0:2
[   99.327247] [   T3495] PM: hibernation: hibernation exit
[   99.340390] [   T3618] Resumed at Thu, 29 Jan 2026 17:06:59 -0800 (1M 50S)
[   99.568113] [   T1132] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[   99.568171] [   T1132] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[   99.568180] [   T1132] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[   99.568189] [   T1132] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[   99.569640] [     T11] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 4
[  100.087890] [   T3676] usb 3-9: reset full-speed USB device number 3 using xhci_hcd
[  100.377838] [   T3676] usb 3-9: reset full-speed USB device number 3 using xhci_hcd
[  100.794116] [   T1360] Bluetooth: hci0: Waiting for firmware download to complete
[  100.794650] [   T1360] Bluetooth: hci0: Firmware loaded in 1525216 usecs
[  100.794761] [   T1360] Bluetooth: hci0: Waiting for device to boot
[  100.810646] [   T1360] Bluetooth: hci0: Device booted in 15598 usecs
[  100.812820] [   T1360] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-0040-0041.ddc
[  100.814733] [   T1360] Bluetooth: hci0: Applying Intel DDC parameters completed
[  100.818858] [   T1360] Bluetooth: hci0: Firmware timestamp 2025.20 buildtype 1 build 82053
[  100.818875] [   T1360] Bluetooth: hci0: Firmware SHA1: 0x937bca4a
[  100.822742] [   T1360] Bluetooth: hci0: Fseq status: Success (0x00)
[  100.822754] [   T1360] Bluetooth: hci0: Fseq executed: 00.00.02.41
[  100.822759] [   T1360] Bluetooth: hci0: Fseq BT Top: 00.00.02.41
[  100.891877] [    T986] Bluetooth: MGMT ver 1.23
[  102.259247] [   T3534] thunderbolt 1-1: new device found, vendor=0xee device=0x1330
[  102.259262] [   T3534] thunderbolt 1-1: Good Way Technology Thunderbolt4/USB4 Dock Pro
[  102.517043] [   T3534] thunderbolt 1-0:1.1: new retimer found, vendor=0x8087 device=0x15ee
[  102.720505] [     T11] usb 3-3: new high-speed USB device number 14 using xhci_hcd
[  102.843802] [     T11] usb 3-3: New USB device found, idVendor=1d5c, idProduct=5801, bcdDevice= 1.01
[  102.843805] [     T11] usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  102.843806] [     T11] usb 3-3: Product: USB2.0 Hub
[  102.843807] [     T11] usb 3-3: Manufacturer: Fresco Logic, Inc.
[  102.844868] [     T11] hub 3-3:1.0: USB hub found
[  102.844905] [     T11] hub 3-3:1.0: 4 ports detected
[  103.177328] [    T192] pcieport 0000:00:07.2: pciehp: Slot(5): Card present
[  103.177338] [    T192] pcieport 0000:00:07.2: pciehp: Slot(5): Link Up
[  103.303570] [    T192] pci 0000:40:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Upstream Port
[  103.303613] [    T192] pci 0000:40:00.0: PCI bridge to [bus 00]
[  103.303623] [    T192] pci 0000:40:00.0:   bridge window [io  0x0000-0x0fff]
[  103.303627] [    T192] pci 0000:40:00.0:   bridge window [mem 0x00000000-0x000fffff]
[  103.303642] [    T192] pci 0000:40:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  103.303665] [    T192] pci 0000:40:00.0: enabling Extended Tags
[  103.303843] [    T192] pci 0000:40:00.0: supports D1 D2
[  103.303844] [    T192] pci 0000:40:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  103.303991] [    T192] pci 0000:40:00.0: PTM enabled, 4ns granularity
[  103.304184] [    T192] pci 0000:40:00.0: Adding to iommu group 17
[  103.304239] [    T192] pcieport 0000:00:07.2: ASPM: current common clock configuration is inconsistent, reconfiguring
[  103.305501] [    T192] pci 0000:40:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  103.305638] [    T192] pci 0000:41:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[  103.305682] [    T192] pci 0000:41:00.0: PCI bridge to [bus 00]
[  103.305691] [    T192] pci 0000:41:00.0:   bridge window [io  0x0000-0x0fff]
[  103.305695] [    T192] pci 0000:41:00.0:   bridge window [mem 0x00000000-0x000fffff]
[  103.305710] [    T192] pci 0000:41:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  103.305729] [    T192] pci 0000:41:00.0: enabling Extended Tags
[  103.305899] [    T192] pci 0000:41:00.0: supports D1 D2
[  103.305899] [    T192] pci 0000:41:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  103.306140] [    T192] pci 0000:41:00.0: Adding to iommu group 18
[  103.306212] [    T192] pci 0000:41:01.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[  103.306250] [    T192] pci 0000:41:01.0: PCI bridge to [bus 00]
[  103.306258] [    T192] pci 0000:41:01.0:   bridge window [io  0x0000-0x0fff]
[  103.306262] [    T192] pci 0000:41:01.0:   bridge window [mem 0x00000000-0x000fffff]
[  103.306277] [    T192] pci 0000:41:01.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  103.306306] [    T192] pci 0000:41:01.0: enabling Extended Tags
[  103.306474] [    T192] pci 0000:41:01.0: supports D1 D2
[  103.306474] [    T192] pci 0000:41:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[  103.306710] [    T192] pci 0000:41:01.0: Adding to iommu group 19
[  103.306768] [    T192] pci 0000:41:02.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[  103.306815] [    T192] pci 0000:41:02.0: PCI bridge to [bus 00]
[  103.306824] [    T192] pci 0000:41:02.0:   bridge window [io  0x0000-0x0fff]
[  103.306827] [    T192] pci 0000:41:02.0:   bridge window [mem 0x00000000-0x000fffff]
[  103.306842] [    T192] pci 0000:41:02.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  103.306862] [    T192] pci 0000:41:02.0: enabling Extended Tags
[  103.307027] [    T192] pci 0000:41:02.0: supports D1 D2
[  103.307027] [    T192] pci 0000:41:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[  103.308264] [    T192] pci 0000:41:02.0: Adding to iommu group 20
[  103.308326] [    T192] pci 0000:41:03.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[  103.308364] [    T192] pci 0000:41:03.0: PCI bridge to [bus 00]
[  103.308372] [    T192] pci 0000:41:03.0:   bridge window [io  0x0000-0x0fff]
[  103.308376] [    T192] pci 0000:41:03.0:   bridge window [mem 0x00000000-0x000fffff]
[  103.308390] [    T192] pci 0000:41:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  103.308410] [    T192] pci 0000:41:03.0: enabling Extended Tags
[  103.308590] [    T192] pci 0000:41:03.0: supports D1 D2
[  103.308591] [    T192] pci 0000:41:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[  103.309354] [    T192] pci 0000:41:03.0: Adding to iommu group 21
[  103.309418] [    T192] pci 0000:41:04.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[  103.309465] [    T192] pci 0000:41:04.0: PCI bridge to [bus 00]
[  103.309474] [    T192] pci 0000:41:04.0:   bridge window [io  0x0000-0x0fff]
[  103.309477] [    T192] pci 0000:41:04.0:   bridge window [mem 0x00000000-0x000fffff]
[  103.309494] [    T192] pci 0000:41:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  103.309514] [    T192] pci 0000:41:04.0: enabling Extended Tags
[  103.309690] [    T192] pci 0000:41:04.0: supports D1 D2
[  103.309691] [    T192] pci 0000:41:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[  103.310009] [    T192] pci 0000:41:04.0: Adding to iommu group 22
[  103.310082] [    T192] pci 0000:40:00.0: PCI bridge to [bus 41-7e]
[  103.310100] [    T192] pci 0000:41:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  103.310110] [    T192] pci 0000:41:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  103.310120] [    T192] pci 0000:41:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  103.310130] [    T192] pci 0000:41:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  103.310140] [    T192] pci 0000:41:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  103.310234] [    T192] pci 0000:41:00.0: PCI bridge to [bus 42-7e]
[  103.310251] [    T192] pci_bus 0000:42: busn_res: [bus 42-7e] end is updated to 42
[  103.310337] [    T192] pci 0000:41:01.0: PCI bridge to [bus 43-7e]
[  103.310354] [    T192] pci_bus 0000:43: busn_res: [bus 43-7e] end is updated to 56
[  103.310463] [    T192] pci 0000:41:02.0: PCI bridge to [bus 57-7e]
[  103.310480] [    T192] pci_bus 0000:57: busn_res: [bus 57-7e] end is updated to 6a
[  103.310564] [    T192] pci 0000:41:03.0: PCI bridge to [bus 6b-7e]
[  103.310581] [    T192] pci_bus 0000:6b: busn_res: [bus 6b-7e] end is updated to 7d
[  103.310656] [    T192] pci 0000:41:04.0: PCI bridge to [bus 7e]
[  103.310672] [    T192] pci_bus 0000:7e: busn_res: [bus 7e] end is updated to 7e
[  103.310678] [    T192] pci_bus 0000:41: busn_res: [bus 41-7e] end is updated to 7e
[  103.310694] [    T192] pci 0000:41:01.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 43-56] add_size 100000 add_align 100000
[  103.310696] [    T192] pci 0000:41:01.0: bridge window [mem 0x00100000-0x001fffff] to [bus 43-56] add_size 100000 add_align 100000
[  103.310697] [    T192] pci 0000:41:02.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 57-6a] add_size 100000 add_align 100000
[  103.310697] [    T192] pci 0000:41:02.0: bridge window [mem 0x00100000-0x001fffff] to [bus 57-6a] add_size 100000 add_align 100000
[  103.310698] [    T192] pci 0000:41:03.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 6b-7d] add_size 100000 add_align 100000
[  103.310699] [    T192] pci 0000:41:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 6b-7d] add_size 100000 add_align 100000
[  103.310701] [    T192] pci 0000:40:00.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 41-7e] add_size 300000 add_align 100000
[  103.310702] [    T192] pci 0000:40:00.0: bridge window [mem 0x00100000-0x005fffff] to [bus 41-7e] add_size 300000 add_align 100000
[  103.310706] [    T192] pci 0000:40:00.0: bridge window [mem 0x74000000-0x801fffff]: assigned
[  103.310707] [    T192] pci 0000:40:00.0: bridge window [mem 0x6020000000-0x603bffffff 64bit pref]: assigned
[  103.310708] [    T192] pci 0000:40:00.0: bridge window [io  0x5000-0x9fff]: assigned
[  103.310710] [    T192] pci 0000:41:00.0: bridge window [mem 0x74000000-0x740fffff]: assigned
[  103.310710] [    T192] pci 0000:41:00.0: bridge window [mem 0x6020000000-0x60200fffff 64bit pref]: assigned
[  103.310711] [    T192] pci 0000:41:01.0: bridge window [mem 0x74100000-0x780fffff]: assigned
[  103.310711] [    T192] pci 0000:41:01.0: bridge window [mem 0x6020100000-0x60294fffff 64bit pref]: assigned
[  103.310712] [    T192] pci 0000:41:02.0: bridge window [mem 0x78100000-0x7c0fffff]: assigned
[  103.310712] [    T192] pci 0000:41:02.0: bridge window [mem 0x6029500000-0x60328fffff 64bit pref]: assigned
[  103.310713] [    T192] pci 0000:41:03.0: bridge window [mem 0x7c100000-0x800fffff]: assigned
[  103.310714] [    T192] pci 0000:41:03.0: bridge window [mem 0x6032900000-0x603bcfffff 64bit pref]: assigned
[  103.310714] [    T192] pci 0000:41:04.0: bridge window [mem 0x80100000-0x801fffff]: assigned
[  103.310715] [    T192] pci 0000:41:04.0: bridge window [mem 0x603bd00000-0x603bdfffff 64bit pref]: assigned
[  103.310715] [    T192] pci 0000:41:00.0: bridge window [io  0x5000-0x5fff]: assigned
[  103.310716] [    T192] pci 0000:41:01.0: bridge window [io  0x6000-0x6fff]: assigned
[  103.310716] [    T192] pci 0000:41:02.0: bridge window [io  0x7000-0x7fff]: assigned
[  103.310717] [    T192] pci 0000:41:03.0: bridge window [io  0x8000-0x8fff]: assigned
[  103.310717] [    T192] pci 0000:41:04.0: bridge window [io  0x9000-0x9fff]: assigned
[  103.310719] [    T192] pci 0000:41:00.0: PCI bridge to [bus 42]
[  103.310721] [    T192] pci 0000:41:00.0:   bridge window [io  0x5000-0x5fff]
[  103.310726] [    T192] pci 0000:41:00.0:   bridge window [mem 0x74000000-0x740fffff]
[  103.310730] [    T192] pci 0000:41:00.0:   bridge window [mem 0x6020000000-0x60200fffff 64bit pref]
[  103.310737] [    T192] pci 0000:41:01.0: PCI bridge to [bus 43-56]
[  103.310739] [    T192] pci 0000:41:01.0:   bridge window [io  0x6000-0x6fff]
[  103.310744] [    T192] pci 0000:41:01.0:   bridge window [mem 0x74100000-0x780fffff]
[  103.310748] [    T192] pci 0000:41:01.0:   bridge window [mem 0x6020100000-0x60294fffff 64bit pref]
[  103.310755] [    T192] pci 0000:41:02.0: PCI bridge to [bus 57-6a]
[  103.310757] [    T192] pci 0000:41:02.0:   bridge window [io  0x7000-0x7fff]
[  103.310762] [    T192] pci 0000:41:02.0:   bridge window [mem 0x78100000-0x7c0fffff]
[  103.310766] [    T192] pci 0000:41:02.0:   bridge window [mem 0x6029500000-0x60328fffff 64bit pref]
[  103.310773] [    T192] pci 0000:41:03.0: PCI bridge to [bus 6b-7d]
[  103.310775] [    T192] pci 0000:41:03.0:   bridge window [io  0x8000-0x8fff]
[  103.310781] [    T192] pci 0000:41:03.0:   bridge window [mem 0x7c100000-0x800fffff]
[  103.310785] [    T192] pci 0000:41:03.0:   bridge window [mem 0x6032900000-0x603bcfffff 64bit pref]
[  103.310792] [    T192] pci 0000:41:04.0: PCI bridge to [bus 7e]
[  103.310800] [    T192] pci 0000:41:04.0:   bridge window [io  0x9000-0x9fff]
[  103.310805] [    T192] pci 0000:41:04.0:   bridge window [mem 0x80100000-0x801fffff]
[  103.310809] [    T192] pci 0000:41:04.0:   bridge window [mem 0x603bd00000-0x603bdfffff 64bit pref]
[  103.310816] [    T192] pci 0000:40:00.0: PCI bridge to [bus 41-7e]
[  103.310818] [    T192] pci 0000:40:00.0:   bridge window [io  0x5000-0x9fff]
[  103.310823] [    T192] pci 0000:40:00.0:   bridge window [mem 0x74000000-0x801fffff]
[  103.310832] [    T192] pci 0000:40:00.0:   bridge window [mem 0x6020000000-0x603bffffff 64bit pref]
[  103.310839] [    T192] pcieport 0000:00:07.2: PCI bridge to [bus 40-7e]
[  103.310840] [    T192] pcieport 0000:00:07.2:   bridge window [io  0x5000-0x9fff]
[  103.310842] [    T192] pcieport 0000:00:07.2:   bridge window [mem 0x74000000-0x801fffff]
[  103.310843] [    T192] pcieport 0000:00:07.2:   bridge window [mem 0x6020000000-0x603bffffff 64bit pref]
[  103.311033] [    T192] pcieport 0000:40:00.0: enabling device (0000 -> 0003)
[  103.311345] [    T192] pcieport 0000:41:00.0: enabling device (0000 -> 0003)
[  103.311652] [    T192] pcieport 0000:41:01.0: enabling device (0000 -> 0003)
[  103.311795] [    T192] pcieport 0000:41:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[  103.312273] [    T192] pcieport 0000:41:02.0: enabling device (0000 -> 0003)
[  103.312893] [    T192] pcieport 0000:41:02.0: pciehp: Slot #2 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[  103.313357] [    T192] pcieport 0000:41:03.0: enabling device (0000 -> 0003)
[  103.313523] [    T192] pcieport 0000:41:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[  103.313965] [    T192] pcieport 0000:41:04.0: enabling device (0000 -> 0003)
[  103.376497] [     T86] usb 3-3.1: new low-speed USB device number 15 using xhci_hcd
[  103.469030] [     T86] usb 3-3.1: New USB device found, idVendor=0451, idProduct=ace1, bcdDevice= 1.50
[  103.469037] [     T86] usb 3-3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  103.469041] [     T86] usb 3-3.1: Product: TPS DMC Family
[  103.469043] [     T86] usb 3-3.1: Manufacturer: Texas Instruments Inc
[  103.469045] [     T86] usb 3-3.1: SerialNumber: 331964161CF1E0B5624D9D096602BC1
[  103.522551] [    T233] usb 2-3: new SuperSpeed Plus Gen 2x1 USB device number 7 using xhci_hcd
[  103.533928] [    T233] usb 2-3: New USB device found, idVendor=8087, idProduct=0b40, bcdDevice=12.34
[  103.533935] [    T233] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  103.533939] [    T233] usb 2-3: Product: USB3.0 Hub
[  103.533941] [    T233] usb 2-3: Manufacturer: Intel Corporation.
[  103.535042] [    T233] hub 2-3:1.0: USB hub found
[  103.535114] [    T233] hub 2-3:1.0: 4 ports detected
[  103.546502] [     T86] usb 3-3.4: new high-speed USB device number 16 using xhci_hcd
[  103.636346] [     T86] usb 3-3.4: New USB device found, idVendor=2109, idProduct=2822, bcdDevice=90.44
[  103.636355] [     T86] usb 3-3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  103.636359] [     T86] usb 3-3.4: Product: USB2.0 Hub             
[  103.636361] [     T86] usb 3-3.4: Manufacturer: VIA Labs, Inc.         
[  103.637559] [     T86] hub 3-3.4:1.0: USB hub found
[  103.637870] [     T86] hub 3-3.4:1.0: 4 ports detected
[  103.921496] [   T2000] usb 3-3.4.2: new high-speed USB device number 17 using xhci_hcd
[  104.008384] [   T2000] usb 3-3.4.2: New USB device found, idVendor=2109, idProduct=2822, bcdDevice=90.43
[  104.008393] [   T2000] usb 3-3.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  104.008398] [   T2000] usb 3-3.4.2: Product: USB2.0 Hub             
[  104.008402] [   T2000] usb 3-3.4.2: Manufacturer: VIA Labs, Inc.         
[  104.009659] [   T2000] hub 3-3.4.2:1.0: USB hub found
[  104.009902] [   T2000] hub 3-3.4.2:1.0: 4 ports detected
[  104.053947] [    T194] usb 2-3.4: new SuperSpeed Plus Gen 2x1 USB device number 8 using xhci_hcd
[  104.069778] [    T194] usb 2-3.4: New USB device found, idVendor=2109, idProduct=0822, bcdDevice=90.44
[  104.069781] [    T194] usb 2-3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  104.069782] [    T194] usb 2-3.4: Product: USB3.1 Hub             
[  104.069784] [    T194] usb 2-3.4: Manufacturer: VIA Labs, Inc.         
[  104.072065] [    T194] hub 2-3.4:1.0: USB hub found
[  104.072334] [    T194] hub 2-3.4:1.0: 4 ports detected
[  104.298537] [    T214] usb 3-3.4.2.1: new high-speed USB device number 18 using xhci_hcd
[  104.345948] [    T228] usb 2-3.4.1: new SuperSpeed USB device number 9 using xhci_hcd
[  104.359481] [    T228] usb 2-3.4.1: New USB device found, idVendor=0bda, idProduct=8156, bcdDevice=31.04
[  104.359488] [    T228] usb 2-3.4.1: New USB device strings: Mfr=1, Product=2, SerialNumber=6
[  104.359490] [    T228] usb 2-3.4.1: Product: USB 10/100/1G/2.5G LAN
[  104.359502] [    T228] usb 2-3.4.1: Manufacturer: Realtek
[  104.359504] [    T228] usb 2-3.4.1: SerialNumber: 401385A8AD
[  104.383666] [    T228] cdc_ncm 2-3.4.1:2.0: MAC-Address: 80:6d:97:85:a8:ad
[  104.383672] [    T228] cdc_ncm 2-3.4.1:2.0: setting rx_max = 16384
[  104.383838] [    T228] cdc_ncm 2-3.4.1:2.0: setting tx_max = 16384
[  104.384361] [    T228] cdc_ncm 2-3.4.1:2.0 eth0: register 'cdc_ncm' at usb-0000:00:0d.0-3.4.1, CDC NCM (NO ZLP), 80:6d:97:85:a8:ad
[  104.385024] [    T228] cdc_ncm 2-3.4.1:2.0 eth0: unregister 'cdc_ncm' usb-0000:00:0d.0-3.4.1, CDC NCM (NO ZLP)
[  104.386407] [    T214] usb 3-3.4.2.1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.56
[  104.386411] [    T214] usb 3-3.4.2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  104.386414] [    T214] usb 3-3.4.2.1: Product: USB2.1 Hub
[  104.386415] [    T214] usb 3-3.4.2.1: Manufacturer: GenesysLogic
[  104.387717] [    T214] hub 3-3.4.2.1:1.0: USB hub found
[  104.388059] [    T214] hub 3-3.4.2.1:1.0: 4 ports detected
[  104.459822] [    T228] r8152-cfgselector 2-3.4.1: reset SuperSpeed USB device number 9 using xhci_hcd
[  104.488241] [    T228] r8152 2-3.4.1:1.0 (unnamed net_device) (uninitialized): Invalid header when reading pass-thru MAC addr
[  104.546401] [    T228] r8152 2-3.4.1:1.0 eth0: v2.21.4 (2025/10/28)
[  104.546408] [    T228] r8152 2-3.4.1:1.0 eth0: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[  104.613920] [    T228] usb 2-3.4.2: new SuperSpeed Plus Gen 2x1 USB device number 10 using xhci_hcd
[  104.628738] [    T228] usb 2-3.4.2: New USB device found, idVendor=2109, idProduct=0822, bcdDevice=90.43
[  104.628745] [    T228] usb 2-3.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  104.628748] [    T228] usb 2-3.4.2: Product: USB3.1 Hub             
[  104.628751] [    T228] usb 2-3.4.2: Manufacturer: VIA Labs, Inc.         
[  104.629407] [    T228] hub 2-3.4.2:1.0: USB hub found
[  104.629675] [    T228] hub 2-3.4.2:1.0: 4 ports detected
[  104.688562] [    T212] usb 3-3.4.2.1.2: new full-speed USB device number 19 using xhci_hcd
[  104.718930] [   T3588] r8152-cfgselector 2-3.4.1: reset SuperSpeed USB device number 9 using xhci_hcd
[  104.735697] [   T3588] r8152 2-3.4.1:1.0 (unnamed net_device) (uninitialized): Invalid header when reading pass-thru MAC addr
[  104.767539] [   T3588] r8152 2-3.4.1:1.0 eth0: v2.21.4 (2025/10/28)
[  104.767545] [   T3588] r8152 2-3.4.1:1.0 eth0: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[  104.795814] [    T212] usb 3-3.4.2.1.2: New USB device found, idVendor=05ac, idProduct=110b, bcdDevice=26.81
[  104.795819] [    T212] usb 3-3.4.2.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  104.795821] [    T212] usb 3-3.4.2.1.2: Product: EarPods
[  104.795823] [    T212] usb 3-3.4.2.1.2: Manufacturer: Apple, Inc.
[  104.795824] [    T212] usb 3-3.4.2.1.2: SerialNumber: GNXTP7WK57
[  104.830583] [    T212] input: Apple, Inc. EarPods as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.2/3-3.4.2.1.2:2.3/0003:05AC:110B.000A/input/input28
[  104.881776] [    T212] hid-generic 0003:05AC:110B.000A: input,hidraw2: USB HID v1.11 Device [Apple, Inc. EarPods] on usb-0000:00:14.0-3.4.2.1.2/input3
[  104.883512] [    T212] hid-generic 0003:05AC:110B.000B: hiddev0,hidraw3: USB HID v1.11 Device [Apple, Inc. EarPods] on usb-0000:00:14.0-3.4.2.1.2/input4
[  104.908602] [   T3552] usb 2-3.4.2.1: new SuperSpeed USB device number 11 using xhci_hcd
[  104.922893] [   T3552] usb 2-3.4.2.1: New USB device found, idVendor=05e3, idProduct=0626, bcdDevice= 6.56
[  104.922918] [   T3552] usb 2-3.4.2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  104.922921] [   T3552] usb 2-3.4.2.1: Product: USB3.1 Hub
[  104.922923] [   T3552] usb 2-3.4.2.1: Manufacturer: GenesysLogic
[  104.923967] [   T3552] hub 2-3.4.2.1:1.0: USB hub found
[  104.924259] [   T3552] hub 2-3.4.2.1:1.0: 4 ports detected
[  104.971506] [    T212] usb 3-3.4.2.1.3: new full-speed USB device number 20 using xhci_hcd
[  105.081355] [    T212] usb 3-3.4.2.1.3: New USB device found, idVendor=05ac, idProduct=024f, bcdDevice= 1.12
[  105.081363] [    T212] usb 3-3.4.2.1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  105.081367] [    T212] usb 3-3.4.2.1.3: Product: Keychron K2
[  105.081369] [    T212] usb 3-3.4.2.1.3: Manufacturer: Keychron
[  105.088097] [    T212] input: Keychron Keychron K2 as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.0/0003:05AC:024F.000C/input/input29
[  105.143795] [    T212] hid-generic 0003:05AC:024F.000C: input,hidraw4: USB HID v1.11 Keyboard [Keychron Keychron K2] on usb-0000:00:14.0-3.4.2.1.3/input0
[  105.145458] [    T212] input: Keychron Keychron K2 Consumer Control as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.000D/input/input30
[  105.145662] [    T212] input: Keychron Keychron K2 System Control as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.000D/input/input31
[  105.145828] [    T212] input: Keychron Keychron K2 Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.000D/input/input32
[  105.145939] [    T212] input: Keychron Keychron K2 Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.000D/input/input33
[  105.146091] [    T212] input: Keychron Keychron K2 as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.000D/input/input34
[  105.146280] [    T212] hid-generic 0003:05AC:024F.000D: input,hiddev1,hidraw5: USB HID v1.11 Keyboard [Keychron Keychron K2] on usb-0000:00:14.0-3.4.2.1.3/input1
[  105.233508] [    T212] usb 3-3.4.2.1.4: new low-speed USB device number 21 using xhci_hcd
[  105.335826] [    T212] usb 3-3.4.2.1.4: New USB device found, idVendor=093a, idProduct=2510, bcdDevice= 1.00
[  105.335834] [    T212] usb 3-3.4.2.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  105.335837] [    T212] usb 3-3.4.2.1.4: Product: USB Optical Mouse
[  105.335840] [    T212] usb 3-3.4.2.1.4: Manufacturer: PixArt
[  105.341854] [    T212] input: PixArt USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.4/3-3.4.2.1.4:1.0/0003:093A:2510.000E/input/input35
[  105.342029] [    T212] hid-generic 0003:093A:2510.000E: input,hidraw6: USB HID v1.11 Mouse [PixArt USB Optical Mouse] on usb-0000:00:14.0-3.4.2.1.4/input0
[  107.675284] [     T11] r8152 2-3.4.1:1.0 eth0: carrier on
[  107.931281] [     T11] r8152 2-3.4.1:1.0 eth0: carrier off
[  109.885582] [    T153] ivsc_csi intel_vsc-92335fcf-3203-4472-af93-7b4453ac29da: mei-csi probed without device fwnode!
[  112.539236] [     T11] r8152 2-3.4.1:1.0 eth0: carrier on
[  283.468743] [     T11] usb 3-3.4.2.1-port3: disabled by hub (EMI?), re-enabling...
[  283.469138] [     T11] usb 3-3.4.2.1.3: USB disconnect, device number 20
[  283.836458] [     T11] usb 3-3.4.2.1.3: new full-speed USB device number 22 using xhci_hcd
[  283.936744] [     T11] usb 3-3.4.2.1.3: New USB device found, idVendor=05ac, idProduct=024f, bcdDevice= 1.12
[  283.936759] [     T11] usb 3-3.4.2.1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  283.936765] [     T11] usb 3-3.4.2.1.3: Product: Keychron K2
[  283.936768] [     T11] usb 3-3.4.2.1.3: Manufacturer: Keychron
[  283.943973] [     T11] input: Keychron Keychron K2 as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.0/0003:05AC:024F.000F/input/input36
[  283.981801] [     T11] hid-generic 0003:05AC:024F.000F: input,hidraw4: USB HID v1.11 Keyboard [Keychron Keychron K2] on usb-0000:00:14.0-3.4.2.1.3/input0
[  283.983612] [     T11] input: Keychron Keychron K2 Consumer Control as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.0010/input/input37
[  283.983823] [     T11] input: Keychron Keychron K2 System Control as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.0010/input/input38
[  283.983994] [     T11] input: Keychron Keychron K2 Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.0010/input/input39
[  283.984106] [     T11] input: Keychron Keychron K2 Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.0010/input/input40
[  283.984292] [     T11] input: Keychron Keychron K2 as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.0010/input/input41
[  283.984529] [     T11] hid-generic 0003:05AC:024F.0010: input,hiddev1,hidraw5: USB HID v1.11 Keyboard [Keychron Keychron K2] on usb-0000:00:14.0-3.4.2.1.3/input1
[  286.975971] [   T3822] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  288.079971] [   T3822] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  296.852321] [   T4094] Suspended at Thu, 29 Jan 2026 17:10:17 -0800
[  296.928383] [   T4080] PM: hibernation: hibernation entry
[  297.064469] [   T3538] Filesystems sync: 0.011 seconds
[  297.065587] [   T4080] Freezing user space processes
[  297.067059] [   T4080] Freezing user space processes completed (elapsed 0.001 seconds)
[  297.067062] [   T4080] OOM killer disabled.
[  297.067268] [   T4080] PM: hibernation: Marking nosave pages: [mem 0x00000000-0x00000fff]
[  297.067271] [   T4080] PM: hibernation: Marking nosave pages: [mem 0x0009f000-0x000fffff]
[  297.067273] [   T4080] PM: hibernation: Marking nosave pages: [mem 0x523e6000-0x52426fff]
[  297.067274] [   T4080] PM: hibernation: Marking nosave pages: [mem 0x57cb6000-0x5d7fefff]
[  297.067475] [   T4080] PM: hibernation: Marking nosave pages: [mem 0x5d800000-0xffffffff]
[  297.067564] [   T4080] PM: hibernation: Basic memory bitmaps created
[  297.067764] [   T4080] PM: hibernation: Preallocating image memory
[  297.402984] [   T4080] PM: hibernation: Allocated 1235375 pages for snapshot
[  297.402987] [   T4080] PM: hibernation: Allocated 4941500 kbytes in 0.33 seconds (14974.24 MB/s)
[  297.402989] [   T4080] Freezing remaining freezable tasks
[  297.404334] [   T4080] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[  297.538786] [   T4080] printk: Suspending console(s) (use no_console_suspend to debug)
[  298.142930] [   T4080] ACPI: EC: interrupt blocked
[  298.143137] [   T4080] ACPI: PM: Preparing to enter system sleep state S4
[  298.186917] [   T4080] ACPI: EC: event blocked
[  298.186919] [   T4080] ACPI: EC: EC stopped
[  298.186920] [   T4080] ACPI: PM: Saving platform NVS memory
[  298.189956] [   T4080] Disabling non-boot CPUs ...
[  298.192135] [   T4080] smpboot: CPU 19 is now offline
[  298.194757] [   T4080] smpboot: CPU 18 is now offline
[  298.197375] [   T4080] smpboot: CPU 17 is now offline
[  298.200119] [   T4080] smpboot: CPU 16 is now offline
[  298.202916] [   T4080] smpboot: CPU 15 is now offline
[  298.205572] [   T4080] smpboot: CPU 14 is now offline
[  298.208151] [   T4080] smpboot: CPU 13 is now offline
[  298.210730] [   T4080] smpboot: CPU 12 is now offline
[  298.213245] [   T4080] smpboot: CPU 10 is now offline
[  298.215621] [   T4080] smpboot: CPU 8 is now offline
[  298.217682] [   T4080] smpboot: CPU 6 is now offline
[  298.219630] [   T4080] smpboot: CPU 4 is now offline
[  298.221476] [   T4080] smpboot: CPU 2 is now offline
[  298.479983] [   T4080] PM: hibernation: Normal pages needed: 1170418 + 1024, available pages: 7115994
[  298.230604] [   T4080] ACPI: PM: Restoring platform NVS memory
[  298.231409] [   T4080] ACPI: EC: EC started
[  298.233037] [   T4080] Enabling non-boot CPUs ...
[  298.233062] [   T4080] smpboot: Booting Node 0 Processor 2 APIC 0x8
[  298.237147] [   T4080] CPU2 is up
[  298.237161] [   T4080] smpboot: Booting Node 0 Processor 4 APIC 0x10
[  298.240706] [   T4080] CPU4 is up
[  298.240728] [   T4080] smpboot: Booting Node 0 Processor 6 APIC 0x18
[  298.244710] [   T4080] CPU6 is up
[  298.244726] [   T4080] smpboot: Booting Node 0 Processor 8 APIC 0x20
[  298.248746] [   T4080] CPU8 is up
[  298.248757] [   T4080] smpboot: Booting Node 0 Processor 10 APIC 0x28
[  298.252790] [   T4080] CPU10 is up
[  298.252800] [   T4080] smpboot: Booting Node 0 Processor 12 APIC 0x30
[  298.255851] [      T0] core: cpu_atom PMU driver: 
[  298.255855] [      T0] ... version:                   5
[  298.255856] [      T0] ... bit width:                 48
[  298.255857] [      T0] ... generic counters:          6
[  298.255857] [      T0] ... generic bitmap:            000000000000003f
[  298.255858] [      T0] ... fixed-purpose counters:    3
[  298.255858] [      T0] ... fixed-purpose bitmap:      0000000000000007
[  298.255859] [      T0] ... value mask:                0000ffffffffffff
[  298.255860] [      T0] ... max period:                00007fffffffffff
[  298.255860] [      T0] ... global_ctrl mask:          000000070000003f
[  298.257066] [   T4080] CPU12 is up
[  298.257079] [   T4080] smpboot: Booting Node 0 Processor 13 APIC 0x32
[  298.261134] [   T4080] CPU13 is up
[  298.261146] [   T4080] smpboot: Booting Node 0 Processor 14 APIC 0x34
[  298.265390] [   T4080] CPU14 is up
[  298.265402] [   T4080] smpboot: Booting Node 0 Processor 15 APIC 0x36
[  298.269437] [   T4080] CPU15 is up
[  298.269450] [   T4080] smpboot: Booting Node 0 Processor 16 APIC 0x38
[  298.273643] [   T4080] CPU16 is up
[  298.273655] [   T4080] smpboot: Booting Node 0 Processor 17 APIC 0x3a
[  298.279028] [   T4080] CPU17 is up
[  298.279039] [   T4080] smpboot: Booting Node 0 Processor 18 APIC 0x3c
[  298.284118] [   T4080] CPU18 is up
[  298.284164] [   T4080] smpboot: Booting Node 0 Processor 19 APIC 0x3e
[  298.291565] [   T4080] CPU19 is up
[  298.294240] [   T4080] smpboot: Booting Node 0 Processor 1 APIC 0x1
[  298.307719] [   T4080] smpboot: Booting Node 0 Processor 3 APIC 0x9
[  298.331630] [   T4080] smpboot: Booting Node 0 Processor 5 APIC 0x11
[  298.355697] [   T4080] smpboot: Booting Node 0 Processor 7 APIC 0x19
[  298.380031] [   T4080] smpboot: Booting Node 0 Processor 9 APIC 0x21
[  298.404107] [   T4080] smpboot: Booting Node 0 Processor 11 APIC 0x29
[  298.441348] [    T232] smpboot: CPU 1 is now offline
[  298.448091] [    T232] smpboot: CPU 3 is now offline
[  298.477906] [    T232] smpboot: CPU 5 is now offline
[  298.488148] [    T232] smpboot: CPU 7 is now offline
[  298.501800] [    T232] smpboot: CPU 9 is now offline
[  298.515585] [    T232] smpboot: CPU 11 is now offline
[  298.528275] [   T4080] ACPI: PM: Waking up from system sleep state S4
[  298.555515] [   T4080] ACPI: EC: interrupt unblocked
[  299.607860] [    T202] thunderbolt 0000:00:0d.3: 0:1: failed to reach state TB_PORT_UP. Ignoring port...
[  299.607872] [    T202] thunderbolt 0000:00:0d.3: 0:1: lost during suspend, disconnecting
[  299.611913] [    T202] thunderbolt 1-0:1.1: retimer disconnected
[  299.612684] [    T202] thunderbolt 1-1: device disconnected
[  299.613060] [    T192] pcieport 0000:00:07.2: pciehp: Slot(5): Card not present
[  299.613796] [    T192] pci_bus 0000:42: busn_res: [bus 42] is released
[  299.614067] [    T192] pci_bus 0000:43: busn_res: [bus 43-56] is released
[  299.614258] [    T192] pci_bus 0000:57: busn_res: [bus 57-6a] is released
[  299.614435] [    T192] pci_bus 0000:6b: busn_res: [bus 6b-7d] is released
[  299.614609] [    T192] pci_bus 0000:7e: busn_res: [bus 7e] is released
[  299.614773] [    T192] pci_bus 0000:41: busn_res: [bus 41-7e] is released
[  299.617173] [   T4080] intel_pmc_core INT33A1:00: CPU did not enter Package C10!!! (Package C10 cnt=0x0)
[  299.617181] [   T4080] intel_pmc_core INT33A1:00: Prev Package C2 cnt = 0x2f8b9e2e20, Current Package C2 cnt = 0x5fa972f4
[  299.617185] [   T4080] intel_pmc_core INT33A1:00: Prev Package C3 cnt = 0x122c08e0ac, Current Package C3 cnt = 0x2ef64880
[  299.617188] [   T4080] intel_pmc_core INT33A1:00: Prev Package C6 cnt = 0x639534, Current Package C6 cnt = 0x329aa3c
[  299.617191] [   T4080] intel_pmc_core INT33A1:00: Prev Package C7 cnt = 0x0, Current Package C7 cnt = 0x0
[  299.617194] [   T4080] intel_pmc_core INT33A1:00: Prev Package C8 cnt = 0x0, Current Package C8 cnt = 0x72497c7c
[  299.617197] [   T4080] intel_pmc_core INT33A1:00: Prev Package C9 cnt = 0x0, Current Package C9 cnt = 0x0
[  299.617199] [   T4080] intel_pmc_core INT33A1:00: Prev Package C10 cnt = 0x0, Current Package C10 cnt = 0x0
[  299.710846] [   T4080] ACPI: EC: event unblocked
[  299.711357] [   T3537] intel-ipu6 0000:00:05.0: IPU6 in non-secure mode
[  299.711490] [   T3571] usb usb1: root hub lost power or was reset
[  299.711493] [   T3571] usb usb2: root hub lost power or was reset
[  299.713179] [    T222] usb usb3: root hub lost power or was reset
[  299.713180] [    T222] usb usb4: root hub lost power or was reset
[  299.786976] [   T3563] pcieport 10000:e0:06.0: can't derive routing for PCI INT A
[  299.786979] [   T3563] nvme 10000:e1:00.0: PCI INT A: no GSI
[  299.800495] [   T3563] nvme nvme0: 20/0/0 default/read/poll queues
[  299.859407] [   T4117] usb 3-8: WARN: invalid context state for evaluate context command.
[  299.971059] [   T4117] usb 3-8: reset full-speed USB device number 2 using xhci_hcd
[  300.095501] [    T206] usb 3-9: WARN: invalid context state for evaluate context command.
[  300.098241] [   T4117] gpio_ljca usb_ljca.ljca-gpio.0: set value failed offset: 0 val: 0 ret: -19
[  300.118923] [   T4117] gpio_ljca usb_ljca.ljca-gpio.0: set value failed offset: 0 val: 1 ret: -19
[  300.129928] [   T4117] gpio_ljca usb_ljca.ljca-gpio.0: set value failed offset: 1 val: 1 ret: -19
[  300.207804] [    T206] usb 3-9: reset full-speed USB device number 3 using xhci_hcd
[  300.266014] [   T3554] ish-hid {33AECD58-B679-4E54-9BD9-A04D34F0C226}: [hid-ish]: enum_devices_done OK, num_hid_devices=2
[  300.332023] [   T3537] usb 3-10: WARN: invalid context state for evaluate context command.
[  300.444091] [   T3537] usb 3-10: reset full-speed USB device number 4 using xhci_hcd
[  301.963223] [   T4080] PM: hibernation: Basic memory bitmaps freed
[  301.963780] [   T4080] OOM killer enabled.
[  301.963782] [   T4080] Restarting tasks: Starting
[  301.963866] [    T232] r8152-cfgselector 2-3.4.1: USB disconnect, device number 9
[  301.963877] [    T236] usb 2-3.4.2.1: USB disconnect, device number 11
[  301.963913] [    T233] usb 2-3: USB disconnect, device number 7
[  301.963923] [    T233] usb 2-3.4: USB disconnect, device number 8
[  301.963950] [    T194] usb 3-3: USB disconnect, device number 14
[  301.963957] [    T194] usb 3-3.1: USB disconnect, device number 15
[  301.964812] [   T3172] Bluetooth: hci0: Device revision is 0
[  301.964819] [   T3172] Bluetooth: hci0: Secure boot is enabled
[  301.964821] [   T3172] Bluetooth: hci0: OTP lock is enabled
[  301.964823] [   T3172] Bluetooth: hci0: API lock is enabled
[  301.964824] [   T3172] Bluetooth: hci0: Debug lock is disabled
[  301.964826] [   T3172] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[  301.964828] [   T3172] Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38
[  301.965914] [    T194] usb 3-3.4: USB disconnect, device number 16
[  301.965919] [    T194] usb 3-3.4.2: USB disconnect, device number 17
[  301.965921] [    T194] usb 3-3.4.2.1: USB disconnect, device number 18
[  301.965923] [    T194] usb 3-3.4.2.1.2: USB disconnect, device number 19
[  301.966008] [   T3172] Bluetooth: hci0: DSM reset method type: 0x00
[  301.966910] [   T4080] Restarting tasks: Done
[  301.966917] [   T4080] efivarfs: resyncing variable state
[  301.967313] [   T3172] Bluetooth: hci0: Found device firmware: intel/ibt-0040-0041.sfi
[  301.967585] [   T3172] Bluetooth: hci0: Boot Address: 0x100800
[  301.967588] [   T3172] Bluetooth: hci0: Firmware Version: 133-20.25
[  301.968081] [    T194] usb 3-3.4.2.1.3: USB disconnect, device number 22
[  301.970494] [    T194] usb 3-3.4.2.1.4: USB disconnect, device number 21
[  301.975681] [   T3566] ov01a10 i2c-OVTI01A0:00: error -EIO: failed to find sensor
[  301.975693] [   T3566] ov01a10 i2c-OVTI01A0:00: probe with driver ov01a10 failed with error -5
[  301.980792] [    T232] usb 2-3.4.2: USB disconnect, device number 10
[  301.998500] [   T4080] efivarfs: finished resyncing variable state
[  302.037533] [   T4124] intel_vsc intel_vsc: silicon stepping version is 0:2
[  302.077869] [   T4080] PM: hibernation: hibernation exit
[  302.087321] [   T4216] Resumed at Thu, 29 Jan 2026 17:12:14 -0800 (1M 57S)
[  302.290489] [   T1132] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[  302.290546] [   T1132] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[  302.290605] [   T1132] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[  302.290613] [   T1132] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[  302.292069] [    T232] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 4
[  302.781267] [   T4288] usb 3-9: reset full-speed USB device number 3 using xhci_hcd
[  303.027076] [   T4288] usb 3-9: reset full-speed USB device number 3 using xhci_hcd
[  303.574812] [   T3172] Bluetooth: hci0: Waiting for firmware download to complete
[  303.574826] [   T3172] Bluetooth: hci0: Firmware loaded in 1569832 usecs
[  303.574921] [   T3172] Bluetooth: hci0: Waiting for device to boot
[  303.590979] [   T3172] Bluetooth: hci0: Device booted in 15736 usecs
[  303.593144] [   T3172] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-0040-0041.ddc
[  303.594997] [   T3172] Bluetooth: hci0: Applying Intel DDC parameters completed
[  303.598964] [   T3172] Bluetooth: hci0: Firmware timestamp 2025.20 buildtype 1 build 82053
[  303.598973] [   T3172] Bluetooth: hci0: Firmware SHA1: 0x937bca4a
[  303.602920] [   T3172] Bluetooth: hci0: Fseq status: Success (0x00)
[  303.602931] [   T3172] Bluetooth: hci0: Fseq executed: 00.00.02.41
[  303.602933] [   T3172] Bluetooth: hci0: Fseq BT Top: 00.00.02.41
[  303.672173] [    T986] Bluetooth: MGMT ver 1.23
[  310.540184] [   T4288] usb 3-9: reset full-speed USB device number 3 using xhci_hcd
[  312.513072] [    T215] ivsc_csi intel_vsc-92335fcf-3203-4472-af93-7b4453ac29da: mei-csi probed without device fwnode!
[  322.725457] [   T3822] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  324.287614] [   T3822] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  351.426939] [   T3822] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  375.949510] [   T4480] Suspended at Thu, 29 Jan 2026 17:13:28 -0800
[  375.974463] [   T4467] PM: suspend entry (s2idle)
[  375.977138] [   T4131] Filesystems sync: 0.002 seconds
[  376.110042] [   T4467] Freezing user space processes
[  376.112087] [   T4467] Freezing user space processes completed (elapsed 0.002 seconds)
[  376.112097] [   T4467] OOM killer disabled.
[  376.112100] [   T4467] Freezing remaining freezable tasks
[  376.113770] [   T4467] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[  376.113782] [   T4467] printk: Suspending console(s) (use no_console_suspend to debug)
[  376.701008] [   T4467] ACPI: EC: interrupt blocked
[  404.048052] [    T210] typec port1-partner: PM: parent port1 should not be sleeping
[  404.436892] [   T4467] ACPI: EC: interrupt unblocked
[  404.639750] [   T4467] intel_pmc_core INT33A1:00: CPU did not enter SLP_S0!!! (S0ix cnt=0)
[  404.639772] [   T4467] intel_pmc_core INT33A1:00: 
                          PMC0:LPM_STATUS_0:	0xf57c0074
[  404.639774] [   T4467] intel_pmc_core INT33A1:00: PMC0:USB2PLL_OFF_STS                1                             
[  404.639776] [   T4467] intel_pmc_core INT33A1:00: PMC0:PCIe/USB3.1_Gen2PLL_OFF_STS    1                             
[  404.639777] [   T4467] intel_pmc_core INT33A1:00: PMC0:PCIe_Gen3PLL_OFF_STS           1                             
[  404.639778] [   T4467] intel_pmc_core INT33A1:00: PMC0:OPIOPLL_OFF_STS                1                             
[  404.639779] [   T4467] intel_pmc_core INT33A1:00: PMC0:OCPLL_OFF_STS                  1                             
[  404.639780] [   T4467] intel_pmc_core INT33A1:00: PMC0:MainPLL_OFF_STS                0                             
[  404.639781] [   T4467] intel_pmc_core INT33A1:00: PMC0:MIPIPLL_OFF_STS                1                             
[  404.639782] [   T4467] intel_pmc_core INT33A1:00: PMC0:Fast_XTAL_Osc_OFF_STS          0                             
[  404.639783] [   T4467] intel_pmc_core INT33A1:00: PMC0:AC_Ring_Osc_OFF_STS            1                             
[  404.639784] [   T4467] intel_pmc_core INT33A1:00: PMC0:MC_Ring_Osc_OFF_STS            0                             
[  404.639785] [   T4467] intel_pmc_core INT33A1:00: PMC0:SATAPLL_OFF_STS                1                             
[  404.639786] [   T4467] intel_pmc_core INT33A1:00: PMC0:XTAL_USB2PLL_OFF_STS           1                             
[  404.639787] [   T4467] intel_pmc_core INT33A1:00: 
                          PMC0:LPM_STATUS_1:	0xec7ee3ef
[  404.639788] [   T4467] intel_pmc_core INT33A1:00: PMC0:CSME_PG_STS                    1                             
[  404.639788] [   T4467] intel_pmc_core INT33A1:00: PMC0:SATA_PG_STS                    1                             
[  404.639789] [   T4467] intel_pmc_core INT33A1:00: PMC0:xHCI_PG_STS                    1                             
[  404.639790] [   T4467] intel_pmc_core INT33A1:00: PMC0:UFSX2_PG_STS                   1                             
[  404.639791] [   T4467] intel_pmc_core INT33A1:00: PMC0:OTG_PG_STS                     1                             
[  404.639791] [   T4467] intel_pmc_core INT33A1:00: PMC0:SPA_PG_STS                     1                             
[  404.639792] [   T4467] intel_pmc_core INT33A1:00: PMC0:SPB_PG_STS                     1                             
[  404.639793] [   T4467] intel_pmc_core INT33A1:00: PMC0:SPC_PG_STS                     1                             
[  404.639794] [   T4467] intel_pmc_core INT33A1:00: PMC0:SPD_PG_STS                     1                             
[  404.639798] [   T4467] intel_pmc_core INT33A1:00: PMC0:SPE_PG_STS                     0                             
[  404.639799] [   T4467] intel_pmc_core INT33A1:00: PMC0:SPF_PG_STS                     0                             
[  404.639800] [   T4467] intel_pmc_core INT33A1:00: PMC0:LSX_PG_STS                     1                             
[  404.639800] [   T4467] intel_pmc_core INT33A1:00: PMC0:P2SB_PG_STS                    1                             
[  404.639801] [   T4467] intel_pmc_core INT33A1:00: PMC0:PSF_PG_STS                     1                             
[  404.639802] [   T4467] intel_pmc_core INT33A1:00: PMC0:SBR_PG_STS                     0                             
[  404.639802] [   T4467] intel_pmc_core INT33A1:00: PMC0:OPIDMI_PG_STS                  1                             
[  404.639803] [   T4467] intel_pmc_core INT33A1:00: PMC0:THC0_PG_STS                    1                             
[  404.639804] [   T4467] intel_pmc_core INT33A1:00: PMC0:THC1_PG_STS                    1                             
[  404.639805] [   T4467] intel_pmc_core INT33A1:00: PMC0:GBETSN_PG_STS                  1                             
[  404.639806] [   T4467] intel_pmc_core INT33A1:00: PMC0:GBE_PG_STS                     1                             
[  404.639806] [   T4467] intel_pmc_core INT33A1:00: PMC0:LPSS_PG_STS                    1                             
[  404.639807] [   T4467] intel_pmc_core INT33A1:00: PMC0:MMP_UFSX2_PG_STS               0                             
[  404.639808] [   T4467] intel_pmc_core INT33A1:00: PMC0:MMP_UFSX2B_PG_STS              0                             
[  404.639809] [   T4467] intel_pmc_core INT33A1:00: PMC0:FIA_PG_STS                     0                             
[  404.639810] [   T4467] intel_pmc_core INT33A1:00: 
                          PMC0:LPM_STATUS_2:	0x1fef
[  404.639810] [   T4467] intel_pmc_core INT33A1:00: PMC0:ADSP_D3_STS                    1                             
[  404.639811] [   T4467] intel_pmc_core INT33A1:00: PMC0:SATA_D3_STS                    1                             
[  404.639812] [   T4467] intel_pmc_core INT33A1:00: PMC0:xHCI0_D3_STS                   1                             
[  404.639813] [   T4467] intel_pmc_core INT33A1:00: PMC0:xDCI1_D3_STS                   1                             
[  404.639813] [   T4467] intel_pmc_core INT33A1:00: PMC0:SDX_D3_STS                     1                             
[  404.639814] [   T4467] intel_pmc_core INT33A1:00: PMC0:EMMC_D3_STS                    1                             
[  404.639815] [   T4467] intel_pmc_core INT33A1:00: PMC0:IS_D3_STS                      1                             
[  404.639815] [   T4467] intel_pmc_core INT33A1:00: PMC0:THC0_D3_STS                    1                             
[  404.639816] [   T4467] intel_pmc_core INT33A1:00: PMC0:THC1_D3_STS                    1                             
[  404.639817] [   T4467] intel_pmc_core INT33A1:00: PMC0:GBE_D3_STS                     1                             
[  404.639818] [   T4467] intel_pmc_core INT33A1:00: PMC0:GBE_TSN_D3_STS                 1                             
[  404.639818] [   T4467] intel_pmc_core INT33A1:00: 
                          PMC0:LPM_STATUS_3:	0x1000
[  404.639819] [   T4467] intel_pmc_core INT33A1:00: PMC0:GPIO_COM0_VNN_REQ_STS          0                             
[  404.639820] [   T4467] intel_pmc_core INT33A1:00: PMC0:GPIO_COM1_VNN_REQ_STS          0                             
[  404.639820] [   T4467] intel_pmc_core INT33A1:00: PMC0:GPIO_COM2_VNN_REQ_STS          0                             
[  404.639821] [   T4467] intel_pmc_core INT33A1:00: PMC0:GPIO_COM3_VNN_REQ_STS          0                             
[  404.639822] [   T4467] intel_pmc_core INT33A1:00: PMC0:GPIO_COM4_VNN_REQ_STS          0                             
[  404.639822] [   T4467] intel_pmc_core INT33A1:00: PMC0:GPIO_COM5_VNN_REQ_STS          0                             
[  404.639823] [   T4467] intel_pmc_core INT33A1:00: PMC0:Audio_VNN_REQ_STS              0                             
[  404.639824] [   T4467] intel_pmc_core INT33A1:00: PMC0:ISH_VNN_REQ_STS                0                             
[  404.639824] [   T4467] intel_pmc_core INT33A1:00: PMC0:CNVI_VNN_REQ_STS               0                             
[  404.639825] [   T4467] intel_pmc_core INT33A1:00: PMC0:eSPI_VNN_REQ_STS               0                             
[  404.639826] [   T4467] intel_pmc_core INT33A1:00: PMC0:Display_VNN_REQ_STS            0                             
[  404.639826] [   T4467] intel_pmc_core INT33A1:00: PMC0:DTS_VNN_REQ_STS                1                             
[  404.639827] [   T4467] intel_pmc_core INT33A1:00: PMC0:SMBUS_VNN_REQ_STS              0                             
[  404.639828] [   T4467] intel_pmc_core INT33A1:00: PMC0:CSME_VNN_REQ_STS               0                             
[  404.639828] [   T4467] intel_pmc_core INT33A1:00: PMC0:SMLINK0_VNN_REQ_STS            0                             
[  404.639829] [   T4467] intel_pmc_core INT33A1:00: PMC0:SMLINK1_VNN_REQ_STS            0                             
[  404.639830] [   T4467] intel_pmc_core INT33A1:00: PMC0:CLINK_VNN_REQ_STS              0                             
[  404.639831] [   T4467] intel_pmc_core INT33A1:00: PMC0:DCI_VNN_REQ_STS                0                             
[  404.639832] [   T4467] intel_pmc_core INT33A1:00: PMC0:ITH_VNN_REQ_STS                0                             
[  404.639832] [   T4467] intel_pmc_core INT33A1:00: PMC0:CSME_VNN_REQ_STS               0                             
[  404.639833] [   T4467] intel_pmc_core INT33A1:00: PMC0:GBE_VNN_REQ_STS                0                             
[  404.639834] [   T4467] intel_pmc_core INT33A1:00: 
                          PMC0:LPM_STATUS_4:	0x3d17faed
[  404.639834] [   T4467] intel_pmc_core INT33A1:00: PMC0:CPU_C10_REQ_STS_0              1                             
[  404.639835] [   T4467] intel_pmc_core INT33A1:00: PMC0:PCIe_LPM_En_REQ_STS_3          1                             
[  404.639836] [   T4467] intel_pmc_core INT33A1:00: PMC0:ITH_REQ_STS_5                  1                             
[  404.639836] [   T4467] intel_pmc_core INT33A1:00: PMC0:CNVI_REQ_STS_6                 1                             
[  404.639837] [   T4467] intel_pmc_core INT33A1:00: PMC0:ISH_REQ_STS_7                  1                             
[  404.639838] [   T4467] intel_pmc_core INT33A1:00: PMC0:USB2_SUS_PG_Sys_REQ_STS_10     0                             
[  404.639838] [   T4467] intel_pmc_core INT33A1:00: PMC0:PCIe_Clk_REQ_STS_12            1                             
[  404.639839] [   T4467] intel_pmc_core INT33A1:00: PMC0:MPHY_Core_DL_REQ_STS_16        1                             
[  404.639840] [   T4467] intel_pmc_core INT33A1:00: PMC0:Break-even_En_REQ_STS_17       1                             
[  404.639840] [   T4467] intel_pmc_core INT33A1:00: PMC0:Auto-demo_En_REQ_STS_18        1                             
[  404.639841] [   T4467] intel_pmc_core INT33A1:00: PMC0:MPHY_SUS_REQ_STS_22            0                             
[  404.639842] [   T4467] intel_pmc_core INT33A1:00: PMC0:xDCI_attached_REQ_STS_24       1                             
[  404.639843] [   T4467] intel_pmc_core INT33A1:00: 
                          PMC0:LPM_STATUS_5:	0xaaaaa
[  404.639844] [   T4467] intel_pmc_core INT33A1:00: PMC0:LSX_Wake0_En_STS               0                             
[  404.639844] [   T4467] intel_pmc_core INT33A1:00: PMC0:LSX_Wake0_Pol_STS              1                             
[  404.639845] [   T4467] intel_pmc_core INT33A1:00: PMC0:LSX_Wake1_En_STS               0                             
[  404.639846] [   T4467] intel_pmc_core INT33A1:00: PMC0:LSX_Wake1_Pol_STS              1                             
[  404.639846] [   T4467] intel_pmc_core INT33A1:00: PMC0:LSX_Wake2_En_STS               0                             
[  404.639847] [   T4467] intel_pmc_core INT33A1:00: PMC0:LSX_Wake2_Pol_STS              1                             
[  404.639848] [   T4467] intel_pmc_core INT33A1:00: PMC0:LSX_Wake3_En_STS               0                             
[  404.639848] [   T4467] intel_pmc_core INT33A1:00: PMC0:LSX_Wake3_Pol_STS              1                             
[  404.639849] [   T4467] intel_pmc_core INT33A1:00: PMC0:LSX_Wake4_En_STS               0                             
[  404.639850] [   T4467] intel_pmc_core INT33A1:00: PMC0:LSX_Wake4_Pol_STS              1                             
[  404.639850] [   T4467] intel_pmc_core INT33A1:00: PMC0:LSX_Wake5_En_STS               0                             
[  404.639851] [   T4467] intel_pmc_core INT33A1:00: PMC0:LSX_Wake5_Pol_STS              1                             
[  404.639852] [   T4467] intel_pmc_core INT33A1:00: PMC0:LSX_Wake6_En_STS               0                             
[  404.639852] [   T4467] intel_pmc_core INT33A1:00: PMC0:LSX_Wake6_Pol_STS              1                             
[  404.639853] [   T4467] intel_pmc_core INT33A1:00: PMC0:LSX_Wake7_En_STS               0                             
[  404.639854] [   T4467] intel_pmc_core INT33A1:00: PMC0:LSX_Wake7_Pol_STS              1                             
[  404.639854] [   T4467] intel_pmc_core INT33A1:00: PMC0:Intel_Se_IO_Wake0_En_STS       0                             
[  404.639855] [   T4467] intel_pmc_core INT33A1:00: PMC0:Intel_Se_IO_Wake0_Pol_STS      1                             
[  404.639856] [   T4467] intel_pmc_core INT33A1:00: PMC0:Intel_Se_IO_Wake1_En_STS       0                             
[  404.639857] [   T4467] intel_pmc_core INT33A1:00: PMC0:Intel_Se_IO_Wake1_Pol_STS      1                             
[  404.639857] [   T4467] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake0_En_STS      0                             
[  404.639858] [   T4467] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake0_Pol_STS     0                             
[  404.639859] [   T4467] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake1_En_STS      0                             
[  404.639859] [   T4467] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake1_Pol_STS     0                             
[  404.639860] [   T4467] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake2_En_STS      0                             
[  404.639861] [   T4467] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake2_Pol_STS     0                             
[  404.639861] [   T4467] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake3_En_STS      0                             
[  404.639862] [   T4467] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake3_Pol_STS     0                             
[  404.639863] [   T4467] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake4_En_STS      0                             
[  404.639863] [   T4467] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake4_Pol_STS     0                             
[  404.639864] [   T4467] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake5_En_STS      0                             
[  404.639865] [   T4467] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake5_Pol_STS     0                             
[  404.640294] [   T4128] intel-ipu6 0000:00:05.0: IPU6 in non-secure mode
[  405.022507] [   T3557] thunderbolt 1-1: new device found, vendor=0xee device=0x1330
[  405.022511] [   T3557] thunderbolt 1-1: Good Way Technology Thunderbolt4/USB4 Dock Pro
[  405.285973] [   T3557] thunderbolt 1-0:1.1: new retimer found, vendor=0x8087 device=0x15ee
[  405.754702] [   T4467] OOM killer enabled.
[  405.754705] [   T4467] Restarting tasks: Starting
[  405.756120] [   T4467] Restarting tasks: Done
[  405.756128] [   T4467] efivarfs: resyncing variable state
[  405.772244] [   T4467] efivarfs: finished resyncing variable state
[  405.772275] [   T4467] random: crng reseeded on system resumption
[  405.861291] [   T4467] PM: suspend exit
[  405.871487] [   T4528] Resumed at Thu, 29 Jan 2026 17:13:59 -0800 (31S)
[  405.972459] [    T210] usb 3-3: new high-speed USB device number 23 using xhci_hcd
[  406.011605] [    T192] pcieport 0000:00:07.2: pciehp: Slot(5): Card present
[  406.011611] [    T192] pcieport 0000:00:07.2: pciehp: Slot(5): Link Up
[  406.051108] [   T1132] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[  406.051166] [   T1132] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[  406.051176] [   T1132] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[  406.051186] [   T1132] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[  406.052559] [     T11] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 4
[  406.095807] [    T210] usb 3-3: New USB device found, idVendor=1d5c, idProduct=5801, bcdDevice= 1.01
[  406.095818] [    T210] usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  406.095823] [    T210] usb 3-3: Product: USB2.0 Hub
[  406.095826] [    T210] usb 3-3: Manufacturer: Fresco Logic, Inc.
[  406.099338] [    T210] hub 3-3:1.0: USB hub found
[  406.099376] [    T210] hub 3-3:1.0: 4 ports detected
[  406.139562] [    T192] pci 0000:40:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Upstream Port
[  406.139627] [    T192] pci 0000:40:00.0: PCI bridge to [bus 00]
[  406.139637] [    T192] pci 0000:40:00.0:   bridge window [io  0x0000-0x0fff]
[  406.139641] [    T192] pci 0000:40:00.0:   bridge window [mem 0x00000000-0x000fffff]
[  406.139656] [    T192] pci 0000:40:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  406.139673] [    T192] pci 0000:40:00.0: enabling Extended Tags
[  406.139838] [    T192] pci 0000:40:00.0: supports D1 D2
[  406.139838] [    T192] pci 0000:40:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  406.139980] [    T192] pci 0000:40:00.0: PTM enabled, 4ns granularity
[  406.140846] [    T192] pci 0000:40:00.0: Adding to iommu group 17
[  406.140902] [    T192] pcieport 0000:00:07.2: ASPM: current common clock configuration is inconsistent, reconfiguring
[  406.142500] [    T192] pci 0000:40:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  406.143046] [    T192] pci 0000:41:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[  406.143085] [    T192] pci 0000:41:00.0: PCI bridge to [bus 00]
[  406.143094] [    T192] pci 0000:41:00.0:   bridge window [io  0x0000-0x0fff]
[  406.143098] [    T192] pci 0000:41:00.0:   bridge window [mem 0x00000000-0x000fffff]
[  406.143113] [    T192] pci 0000:41:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  406.143133] [    T192] pci 0000:41:00.0: enabling Extended Tags
[  406.143294] [    T192] pci 0000:41:00.0: supports D1 D2
[  406.143294] [    T192] pci 0000:41:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  406.143533] [    T192] pci 0000:41:00.0: Adding to iommu group 18
[  406.143613] [    T192] pci 0000:41:01.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[  406.143654] [    T192] pci 0000:41:01.0: PCI bridge to [bus 00]
[  406.143662] [    T192] pci 0000:41:01.0:   bridge window [io  0x0000-0x0fff]
[  406.143666] [    T192] pci 0000:41:01.0:   bridge window [mem 0x00000000-0x000fffff]
[  406.143681] [    T192] pci 0000:41:01.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  406.143701] [    T192] pci 0000:41:01.0: enabling Extended Tags
[  406.143866] [    T192] pci 0000:41:01.0: supports D1 D2
[  406.143867] [    T192] pci 0000:41:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[  406.145061] [    T192] pci 0000:41:01.0: Adding to iommu group 19
[  406.145134] [    T192] pci 0000:41:02.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[  406.145173] [    T192] pci 0000:41:02.0: PCI bridge to [bus 00]
[  406.145181] [    T192] pci 0000:41:02.0:   bridge window [io  0x0000-0x0fff]
[  406.145185] [    T192] pci 0000:41:02.0:   bridge window [mem 0x00000000-0x000fffff]
[  406.145200] [    T192] pci 0000:41:02.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  406.145220] [    T192] pci 0000:41:02.0: enabling Extended Tags
[  406.145986] [    T192] pci 0000:41:02.0: supports D1 D2
[  406.145986] [    T192] pci 0000:41:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[  406.146225] [    T192] pci 0000:41:02.0: Adding to iommu group 20
[  406.146296] [    T192] pci 0000:41:03.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[  406.146335] [    T192] pci 0000:41:03.0: PCI bridge to [bus 00]
[  406.146343] [    T192] pci 0000:41:03.0:   bridge window [io  0x0000-0x0fff]
[  406.146347] [    T192] pci 0000:41:03.0:   bridge window [mem 0x00000000-0x000fffff]
[  406.146362] [    T192] pci 0000:41:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  406.146382] [    T192] pci 0000:41:03.0: enabling Extended Tags
[  406.146575] [   T2420] usb 2-3: new SuperSpeed Plus Gen 2x1 USB device number 12 using xhci_hcd
[  406.146719] [    T192] pci 0000:41:03.0: supports D1 D2
[  406.146719] [    T192] pci 0000:41:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[  406.151962] [    T192] pci 0000:41:03.0: Adding to iommu group 21
[  406.152029] [    T192] pci 0000:41:04.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[  406.152067] [    T192] pci 0000:41:04.0: PCI bridge to [bus 00]
[  406.152076] [    T192] pci 0000:41:04.0:   bridge window [io  0x0000-0x0fff]
[  406.152080] [    T192] pci 0000:41:04.0:   bridge window [mem 0x00000000-0x000fffff]
[  406.152095] [    T192] pci 0000:41:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  406.152115] [    T192] pci 0000:41:04.0: enabling Extended Tags
[  406.152398] [    T192] pci 0000:41:04.0: supports D1 D2
[  406.152399] [    T192] pci 0000:41:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[  406.152698] [    T192] pci 0000:41:04.0: Adding to iommu group 22
[  406.152780] [    T192] pci 0000:40:00.0: PCI bridge to [bus 41-7e]
[  406.152800] [    T192] pci 0000:41:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  406.152810] [    T192] pci 0000:41:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  406.152821] [    T192] pci 0000:41:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  406.152831] [    T192] pci 0000:41:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  406.152841] [    T192] pci 0000:41:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  406.158086] [   T2420] usb 2-3: New USB device found, idVendor=8087, idProduct=0b40, bcdDevice=12.34
[  406.158092] [   T2420] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  406.158095] [   T2420] usb 2-3: Product: USB3.0 Hub
[  406.158096] [   T2420] usb 2-3: Manufacturer: Intel Corporation.
[  406.159191] [    T192] pci 0000:41:00.0: PCI bridge to [bus 42-7e]
[  406.159210] [    T192] pci_bus 0000:42: busn_res: [bus 42-7e] end is updated to 42
[  406.165225] [   T2420] hub 2-3:1.0: USB hub found
[  406.165277] [   T2420] hub 2-3:1.0: 4 ports detected
[  406.171316] [    T192] pci 0000:41:01.0: PCI bridge to [bus 43-7e]
[  406.171358] [    T192] pci_bus 0000:43: busn_res: [bus 43-7e] end is updated to 56
[  406.180506] [    T192] pci 0000:41:02.0: PCI bridge to [bus 57-7e]
[  406.180525] [    T192] pci_bus 0000:57: busn_res: [bus 57-7e] end is updated to 6a
[  406.186641] [    T192] pci 0000:41:03.0: PCI bridge to [bus 6b-7e]
[  406.186660] [    T192] pci_bus 0000:6b: busn_res: [bus 6b-7e] end is updated to 7d
[  406.191619] [    T192] pci 0000:41:04.0: PCI bridge to [bus 7e]
[  406.191638] [    T192] pci_bus 0000:7e: busn_res: [bus 7e] end is updated to 7e
[  406.191644] [    T192] pci_bus 0000:41: busn_res: [bus 41-7e] end is updated to 7e
[  406.191653] [    T192] pci 0000:41:01.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 43-56] add_size 100000 add_align 100000
[  406.191655] [    T192] pci 0000:41:01.0: bridge window [mem 0x00100000-0x001fffff] to [bus 43-56] add_size 100000 add_align 100000
[  406.191657] [    T192] pci 0000:41:02.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 57-6a] add_size 100000 add_align 100000
[  406.191658] [    T192] pci 0000:41:02.0: bridge window [mem 0x00100000-0x001fffff] to [bus 57-6a] add_size 100000 add_align 100000
[  406.191659] [    T192] pci 0000:41:03.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 6b-7d] add_size 100000 add_align 100000
[  406.191660] [    T192] pci 0000:41:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 6b-7d] add_size 100000 add_align 100000
[  406.191663] [    T192] pci 0000:40:00.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 41-7e] add_size 300000 add_align 100000
[  406.191665] [    T192] pci 0000:40:00.0: bridge window [mem 0x00100000-0x005fffff] to [bus 41-7e] add_size 300000 add_align 100000
[  406.191670] [    T192] pci 0000:40:00.0: bridge window [mem 0x74000000-0x801fffff]: assigned
[  406.191672] [    T192] pci 0000:40:00.0: bridge window [mem 0x6020000000-0x603bffffff 64bit pref]: assigned
[  406.191673] [    T192] pci 0000:40:00.0: bridge window [io  0x5000-0x9fff]: assigned
[  406.191676] [    T192] pci 0000:41:00.0: bridge window [mem 0x74000000-0x740fffff]: assigned
[  406.191677] [    T192] pci 0000:41:00.0: bridge window [mem 0x6020000000-0x60200fffff 64bit pref]: assigned
[  406.191678] [    T192] pci 0000:41:01.0: bridge window [mem 0x74100000-0x780fffff]: assigned
[  406.191679] [    T192] pci 0000:41:01.0: bridge window [mem 0x6020100000-0x60294fffff 64bit pref]: assigned
[  406.191679] [    T192] pci 0000:41:02.0: bridge window [mem 0x78100000-0x7c0fffff]: assigned
[  406.191680] [    T192] pci 0000:41:02.0: bridge window [mem 0x6029500000-0x60328fffff 64bit pref]: assigned
[  406.191681] [    T192] pci 0000:41:03.0: bridge window [mem 0x7c100000-0x800fffff]: assigned
[  406.191681] [    T192] pci 0000:41:03.0: bridge window [mem 0x6032900000-0x603bcfffff 64bit pref]: assigned
[  406.191682] [    T192] pci 0000:41:04.0: bridge window [mem 0x80100000-0x801fffff]: assigned
[  406.191683] [    T192] pci 0000:41:04.0: bridge window [mem 0x603bd00000-0x603bdfffff 64bit pref]: assigned
[  406.191684] [    T192] pci 0000:41:00.0: bridge window [io  0x5000-0x5fff]: assigned
[  406.191684] [    T192] pci 0000:41:01.0: bridge window [io  0x6000-0x6fff]: assigned
[  406.191685] [    T192] pci 0000:41:02.0: bridge window [io  0x7000-0x7fff]: assigned
[  406.191686] [    T192] pci 0000:41:03.0: bridge window [io  0x8000-0x8fff]: assigned
[  406.191686] [    T192] pci 0000:41:04.0: bridge window [io  0x9000-0x9fff]: assigned
[  406.191688] [    T192] pci 0000:41:00.0: PCI bridge to [bus 42]
[  406.191690] [    T192] pci 0000:41:00.0:   bridge window [io  0x5000-0x5fff]
[  406.191696] [    T192] pci 0000:41:00.0:   bridge window [mem 0x74000000-0x740fffff]
[  406.191700] [    T192] pci 0000:41:00.0:   bridge window [mem 0x6020000000-0x60200fffff 64bit pref]
[  406.191708] [    T192] pci 0000:41:01.0: PCI bridge to [bus 43-56]
[  406.191710] [    T192] pci 0000:41:01.0:   bridge window [io  0x6000-0x6fff]
[  406.191715] [    T192] pci 0000:41:01.0:   bridge window [mem 0x74100000-0x780fffff]
[  406.191719] [    T192] pci 0000:41:01.0:   bridge window [mem 0x6020100000-0x60294fffff 64bit pref]
[  406.191727] [    T192] pci 0000:41:02.0: PCI bridge to [bus 57-6a]
[  406.191729] [    T192] pci 0000:41:02.0:   bridge window [io  0x7000-0x7fff]
[  406.191735] [    T192] pci 0000:41:02.0:   bridge window [mem 0x78100000-0x7c0fffff]
[  406.191738] [    T192] pci 0000:41:02.0:   bridge window [mem 0x6029500000-0x60328fffff 64bit pref]
[  406.191746] [    T192] pci 0000:41:03.0: PCI bridge to [bus 6b-7d]
[  406.191748] [    T192] pci 0000:41:03.0:   bridge window [io  0x8000-0x8fff]
[  406.191754] [    T192] pci 0000:41:03.0:   bridge window [mem 0x7c100000-0x800fffff]
[  406.191758] [    T192] pci 0000:41:03.0:   bridge window [mem 0x6032900000-0x603bcfffff 64bit pref]
[  406.191765] [    T192] pci 0000:41:04.0: PCI bridge to [bus 7e]
[  406.191767] [    T192] pci 0000:41:04.0:   bridge window [io  0x9000-0x9fff]
[  406.191773] [    T192] pci 0000:41:04.0:   bridge window [mem 0x80100000-0x801fffff]
[  406.191777] [    T192] pci 0000:41:04.0:   bridge window [mem 0x603bd00000-0x603bdfffff 64bit pref]
[  406.191784] [    T192] pci 0000:40:00.0: PCI bridge to [bus 41-7e]
[  406.191786] [    T192] pci 0000:40:00.0:   bridge window [io  0x5000-0x9fff]
[  406.191792] [    T192] pci 0000:40:00.0:   bridge window [mem 0x74000000-0x801fffff]
[  406.191796] [    T192] pci 0000:40:00.0:   bridge window [mem 0x6020000000-0x603bffffff 64bit pref]
[  406.191803] [    T192] pcieport 0000:00:07.2: PCI bridge to [bus 40-7e]
[  406.191804] [    T192] pcieport 0000:00:07.2:   bridge window [io  0x5000-0x9fff]
[  406.191807] [    T192] pcieport 0000:00:07.2:   bridge window [mem 0x74000000-0x801fffff]
[  406.191808] [    T192] pcieport 0000:00:07.2:   bridge window [mem 0x6020000000-0x603bffffff 64bit pref]
[  406.192527] [    T192] pcieport 0000:40:00.0: enabling device (0000 -> 0003)
[  406.193305] [    T192] pcieport 0000:41:00.0: enabling device (0000 -> 0003)
[  406.194683] [    T192] pcieport 0000:41:01.0: enabling device (0000 -> 0003)
[  406.197054] [   T3822] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  406.207801] [    T192] pcieport 0000:41:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[  406.213534] [    T192] pcieport 0000:41:02.0: enabling device (0000 -> 0003)
[  406.219896] [   T4123] xe 0000:00:02.0: [drm] Tile0: GT0: Engine reset: engine_class=rcs, logical_mask: 0x1, guc_id=66
[  406.219948] [   T3563] xe 0000:00:02.0: [drm] Tile0: GT0: Timedout job: seqno=4294967169, lrc_seqno=4294967169, guc_id=66, flags=0x0 in Xorg [1761]
[  406.221270] [    T192] pcieport 0000:41:02.0: pciehp: Slot #2 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[  406.272412] [    T192] pcieport 0000:41:03.0: enabling device (0000 -> 0003)
[  406.288051] [    T192] pcieport 0000:41:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[  406.290133] [    T192] pcieport 0000:41:04.0: enabling device (0000 -> 0003)
[  406.508276] [   T4609] usb 3-9: reset full-speed USB device number 3 using xhci_hcd
[  406.690615] [   T3552] usb 2-3.4: new SuperSpeed Plus Gen 2x1 USB device number 13 using xhci_hcd
[  406.705590] [    T236] usb 3-3.1: new low-speed USB device number 24 using xhci_hcd
[  406.707230] [   T3552] usb 2-3.4: New USB device found, idVendor=2109, idProduct=0822, bcdDevice=90.44
[  406.707236] [   T3552] usb 2-3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  406.707239] [   T3552] usb 2-3.4: Product: USB3.1 Hub             
[  406.707241] [   T3552] usb 2-3.4: Manufacturer: VIA Labs, Inc.         
[  406.709143] [   T3552] hub 2-3.4:1.0: USB hub found
[  406.709947] [   T3552] hub 2-3.4:1.0: 4 ports detected
[  406.801969] [    T236] usb 3-3.1: New USB device found, idVendor=0451, idProduct=ace1, bcdDevice= 1.50
[  406.801982] [    T236] usb 3-3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  406.801987] [    T236] usb 3-3.1: Product: TPS DMC Family
[  406.801990] [    T236] usb 3-3.1: Manufacturer: Texas Instruments Inc
[  406.801993] [    T236] usb 3-3.1: SerialNumber: 331964161CF1E0B5624D9D096602BC1
[  406.906867] [   T4609] usb 3-9: reset full-speed USB device number 3 using xhci_hcd
[  406.995519] [   T4582] usb 2-3.4.1: new SuperSpeed USB device number 14 using xhci_hcd
[  407.007436] [   T4582] usb 2-3.4.1: New USB device found, idVendor=0bda, idProduct=8156, bcdDevice=31.04
[  407.007453] [   T4582] usb 2-3.4.1: New USB device strings: Mfr=1, Product=2, SerialNumber=6
[  407.007457] [   T4582] usb 2-3.4.1: Product: USB 10/100/1G/2.5G LAN
[  407.007460] [   T4582] usb 2-3.4.1: Manufacturer: Realtek
[  407.007462] [   T4582] usb 2-3.4.1: SerialNumber: 401385A8AD
[  407.030733] [   T4582] cdc_ncm 2-3.4.1:2.0: MAC-Address: 80:6d:97:85:a8:ad
[  407.030739] [   T4582] cdc_ncm 2-3.4.1:2.0: setting rx_max = 16384
[  407.030873] [   T4582] cdc_ncm 2-3.4.1:2.0: setting tx_max = 16384
[  407.031287] [   T4582] cdc_ncm 2-3.4.1:2.0 eth0: register 'cdc_ncm' at usb-0000:00:0d.0-3.4.1, CDC NCM (NO ZLP), 80:6d:97:85:a8:ad
[  407.031755] [   T4582] cdc_ncm 2-3.4.1:2.0 eth0: unregister 'cdc_ncm' usb-0000:00:0d.0-3.4.1, CDC NCM (NO ZLP)
[  407.108472] [    T236] usb 3-3.4: new high-speed USB device number 25 using xhci_hcd
[  407.114900] [   T4582] r8152-cfgselector 2-3.4.1: reset SuperSpeed USB device number 14 using xhci_hcd
[  407.136187] [   T4582] r8152 2-3.4.1:1.0 (unnamed net_device) (uninitialized): Invalid header when reading pass-thru MAC addr
[  407.157261] [   T3822] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  407.199961] [    T236] usb 3-3.4: New USB device found, idVendor=2109, idProduct=2822, bcdDevice=90.44
[  407.199970] [    T236] usb 3-3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  407.199974] [    T236] usb 3-3.4: Product: USB2.0 Hub             
[  407.199976] [    T236] usb 3-3.4: Manufacturer: VIA Labs, Inc.         
[  407.201276] [    T236] hub 3-3.4:1.0: USB hub found
[  407.201484] [    T236] hub 3-3.4:1.0: 4 ports detected
[  407.214550] [   T4582] r8152 2-3.4.1:1.0 eth0: v2.21.4 (2025/10/28)
[  407.214558] [   T4582] r8152 2-3.4.1:1.0 eth0: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[  407.279737] [   T4582] usb 2-3.4.2: new SuperSpeed Plus Gen 2x1 USB device number 15 using xhci_hcd
[  407.295185] [   T4582] usb 2-3.4.2: New USB device found, idVendor=2109, idProduct=0822, bcdDevice=90.43
[  407.295192] [   T4582] usb 2-3.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  407.295194] [   T4582] usb 2-3.4.2: Product: USB3.1 Hub             
[  407.295196] [   T4582] usb 2-3.4.2: Manufacturer: VIA Labs, Inc.         
[  407.296253] [   T4582] hub 2-3.4.2:1.0: USB hub found
[  407.296518] [   T4582] hub 2-3.4.2:1.0: 4 ports detected
[  407.318057] [   T2392] xe 0000:00:02.0: Using 39-bit DMA addresses
[  407.394951] [   T4508] r8152-cfgselector 2-3.4.1: reset SuperSpeed USB device number 14 using xhci_hcd
[  407.413887] [   T4508] r8152 2-3.4.1:1.0 (unnamed net_device) (uninitialized): Invalid header when reading pass-thru MAC addr
[  407.445353] [   T4508] r8152 2-3.4.1:1.0 eth0: v2.21.4 (2025/10/28)
[  407.445362] [   T4508] r8152 2-3.4.1:1.0 eth0: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[  407.493463] [   T4598] usb 3-3.4.2: new high-speed USB device number 26 using xhci_hcd
[  407.571687] [   T4395] usb 2-3.4.2.1: new SuperSpeed USB device number 16 using xhci_hcd
[  407.585018] [   T4598] usb 3-3.4.2: New USB device found, idVendor=2109, idProduct=2822, bcdDevice=90.43
[  407.585026] [   T4598] usb 3-3.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  407.585029] [   T4598] usb 3-3.4.2: Product: USB2.0 Hub             
[  407.585031] [   T4598] usb 3-3.4.2: Manufacturer: VIA Labs, Inc.         
[  407.587011] [   T4395] usb 2-3.4.2.1: New USB device found, idVendor=05e3, idProduct=0626, bcdDevice= 6.56
[  407.587017] [   T4395] usb 2-3.4.2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  407.587020] [   T4395] usb 2-3.4.2.1: Product: USB3.1 Hub
[  407.587021] [   T4395] usb 2-3.4.2.1: Manufacturer: GenesysLogic
[  407.587955] [   T4598] hub 3-3.4.2:1.0: USB hub found
[  407.588262] [   T4598] hub 3-3.4.2:1.0: 4 ports detected
[  407.588413] [   T4395] hub 2-3.4.2.1:1.0: USB hub found
[  407.589985] [   T4395] hub 2-3.4.2.1:1.0: 4 ports detected
[  407.877501] [    T210] usb 3-3.4.2.1: new high-speed USB device number 27 using xhci_hcd
[  407.966984] [    T210] usb 3-3.4.2.1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.56
[  407.967036] [    T210] usb 3-3.4.2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  407.967040] [    T210] usb 3-3.4.2.1: Product: USB2.1 Hub
[  407.967042] [    T210] usb 3-3.4.2.1: Manufacturer: GenesysLogic
[  407.968636] [    T210] hub 3-3.4.2.1:1.0: USB hub found
[  407.968973] [    T210] hub 3-3.4.2.1:1.0: 4 ports detected
[  408.244771] [   T3822] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  408.266517] [    T225] usb 3-3.4.2.1.2: new full-speed USB device number 28 using xhci_hcd
[  408.374552] [    T225] usb 3-3.4.2.1.2: New USB device found, idVendor=05ac, idProduct=110b, bcdDevice=26.81
[  408.374558] [    T225] usb 3-3.4.2.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  408.374560] [    T225] usb 3-3.4.2.1.2: Product: EarPods
[  408.374562] [    T225] usb 3-3.4.2.1.2: Manufacturer: Apple, Inc.
[  408.374564] [    T225] usb 3-3.4.2.1.2: SerialNumber: GNXTP7WK57
[  408.410535] [    T225] input: Apple, Inc. EarPods as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.2/3-3.4.2.1.2:2.3/0003:05AC:110B.0011/input/input42
[  408.462657] [    T225] hid-generic 0003:05AC:110B.0011: input,hidraw2: USB HID v1.11 Device [Apple, Inc. EarPods] on usb-0000:00:14.0-3.4.2.1.2/input3
[  408.464692] [    T225] hid-generic 0003:05AC:110B.0012: hiddev0,hidraw3: USB HID v1.11 Device [Apple, Inc. EarPods] on usb-0000:00:14.0-3.4.2.1.2/input4
[  408.551460] [    T225] usb 3-3.4.2.1.3: new full-speed USB device number 29 using xhci_hcd
[  408.653473] [    T225] usb 3-3.4.2.1.3: New USB device found, idVendor=05ac, idProduct=024f, bcdDevice= 1.12
[  408.653507] [    T225] usb 3-3.4.2.1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  408.653511] [    T225] usb 3-3.4.2.1.3: Product: Keychron K2
[  408.653513] [    T225] usb 3-3.4.2.1.3: Manufacturer: Keychron
[  408.662260] [    T225] input: Keychron Keychron K2 as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.0/0003:05AC:024F.0013/input/input43
[  408.694646] [    T225] hid-generic 0003:05AC:024F.0013: input,hidraw4: USB HID v1.11 Keyboard [Keychron Keychron K2] on usb-0000:00:14.0-3.4.2.1.3/input0
[  408.696085] [    T225] input: Keychron Keychron K2 Consumer Control as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.0014/input/input44
[  408.696198] [    T225] input: Keychron Keychron K2 System Control as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.0014/input/input45
[  408.696306] [    T225] input: Keychron Keychron K2 Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.0014/input/input46
[  408.697508] [    T225] input: Keychron Keychron K2 Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.0014/input/input47
[  408.697680] [    T225] input: Keychron Keychron K2 as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.0014/input/input48
[  408.697898] [    T225] hid-generic 0003:05AC:024F.0014: input,hiddev1,hidraw5: USB HID v1.11 Keyboard [Keychron Keychron K2] on usb-0000:00:14.0-3.4.2.1.3/input1
[  408.796467] [    T225] usb 3-3.4.2.1.4: new low-speed USB device number 30 using xhci_hcd
[  408.900205] [    T225] usb 3-3.4.2.1.4: New USB device found, idVendor=093a, idProduct=2510, bcdDevice= 1.00
[  408.900212] [    T225] usb 3-3.4.2.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  408.900215] [    T225] usb 3-3.4.2.1.4: Product: USB Optical Mouse
[  408.900217] [    T225] usb 3-3.4.2.1.4: Manufacturer: PixArt
[  408.906736] [    T225] input: PixArt USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.4/3-3.4.2.1.4:1.0/0003:093A:2510.0015/input/input49
[  408.908573] [    T225] hid-generic 0003:093A:2510.0015: input,hidraw6: USB HID v1.11 Mouse [PixArt USB Optical Mouse] on usb-0000:00:14.0-3.4.2.1.4/input0
[  410.389143] [     T11] r8152 2-3.4.1:1.0 eth0: carrier on
[  410.645964] [     T11] r8152 2-3.4.1:1.0 eth0: carrier off
[  413.973208] [     T11] r8152 2-3.4.1:1.0 eth0: carrier on
[  428.813337] [   T4609] usb 3-9: reset full-speed USB device number 3 using xhci_hcd
[  459.944499] [   T3822] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  461.087243] [   T3822] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  587.716846] [   T3533] thunderbolt 1-0:1.1: retimer disconnected
[  587.717088] [     T11] usb 3-3: USB disconnect, device number 23
[  587.717300] [     T11] usb 3-3.1: USB disconnect, device number 24
[  587.722194] [     T11] usb 3-3.4: USB disconnect, device number 25
[  587.722205] [     T11] usb 3-3.4.2: USB disconnect, device number 26
[  587.722213] [     T11] usb 3-3.4.2.1: USB disconnect, device number 27
[  587.722220] [     T11] usb 3-3.4.2.1.2: USB disconnect, device number 28
[  587.730580] [   T3533] thunderbolt 1-1: device disconnected
[  587.749381] [    T232] usb 2-3: USB disconnect, device number 12
[  587.749383] [    T232] usb 2-3.4: USB disconnect, device number 13
[  587.749384] [    T232] r8152-cfgselector 2-3.4.1: USB disconnect, device number 14
[  587.765188] [     T11] usb 3-3.4.2.1.3: USB disconnect, device number 29
[  587.778541] [    T232] usb 2-3.4.2: USB disconnect, device number 15
[  587.778545] [    T232] usb 2-3.4.2.1: USB disconnect, device number 16
[  587.941936] [     T11] usb 3-3.4.2.1.4: USB disconnect, device number 30
[  588.258600] [   T3822] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  589.187491] [   T3566] pcieport 0000:40:00.0: not ready 1023ms after resume; giving up
[  589.187593] [    T192] pcieport 0000:00:07.2: pciehp: Slot(5): Card not present
[  589.190843] [   T3566] pci_bus 0000:42: busn_res: [bus 42] is released
[  589.191091] [   T3566] pci_bus 0000:43: busn_res: [bus 43-56] is released
[  589.191231] [   T3566] pci_bus 0000:57: busn_res: [bus 57-6a] is released
[  589.191360] [   T3566] pci_bus 0000:6b: busn_res: [bus 6b-7d] is released
[  589.191471] [   T3566] pci_bus 0000:7e: busn_res: [bus 7e] is released
[  589.191665] [   T3566] pci_bus 0000:41: busn_res: [bus 41-7e] is released
[  589.551899] [   T3822] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  590.719321] [   T3534] thunderbolt 1-1: new device found, vendor=0xee device=0x1330
[  590.719335] [   T3534] thunderbolt 1-1: Good Way Technology Thunderbolt4/USB4 Dock Pro
[  590.980142] [   T3534] thunderbolt 1-0:1.1: new retimer found, vendor=0x8087 device=0x15ee
[  591.171556] [     T11] usb 3-3: new high-speed USB device number 31 using xhci_hcd
[  591.294902] [     T11] usb 3-3: New USB device found, idVendor=1d5c, idProduct=5801, bcdDevice= 1.01
[  591.294904] [     T11] usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  591.294905] [     T11] usb 3-3: Product: USB2.0 Hub
[  591.294906] [     T11] usb 3-3: Manufacturer: Fresco Logic, Inc.
[  591.295946] [     T11] hub 3-3:1.0: USB hub found
[  591.295985] [     T11] hub 3-3:1.0: 4 ports detected
[  591.649679] [    T192] pcieport 0000:00:07.2: pciehp: Slot(5): Card present
[  591.649681] [    T192] pcieport 0000:00:07.2: pciehp: Slot(5): Link Up
[  591.772904] [    T192] pci 0000:40:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Upstream Port
[  591.772945] [    T192] pci 0000:40:00.0: PCI bridge to [bus 00]
[  591.772956] [    T192] pci 0000:40:00.0:   bridge window [io  0x0000-0x0fff]
[  591.772960] [    T192] pci 0000:40:00.0:   bridge window [mem 0x00000000-0x000fffff]
[  591.772974] [    T192] pci 0000:40:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  591.772991] [    T192] pci 0000:40:00.0: enabling Extended Tags
[  591.773169] [    T192] pci 0000:40:00.0: supports D1 D2
[  591.773170] [    T192] pci 0000:40:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  591.773310] [    T192] pci 0000:40:00.0: PTM enabled, 4ns granularity
[  591.773523] [    T192] pci 0000:40:00.0: Adding to iommu group 17
[  591.773577] [    T192] pcieport 0000:00:07.2: ASPM: current common clock configuration is inconsistent, reconfiguring
[  591.774779] [    T192] pci 0000:40:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  591.774908] [    T192] pci 0000:41:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[  591.774946] [    T192] pci 0000:41:00.0: PCI bridge to [bus 00]
[  591.774955] [    T192] pci 0000:41:00.0:   bridge window [io  0x0000-0x0fff]
[  591.774959] [    T192] pci 0000:41:00.0:   bridge window [mem 0x00000000-0x000fffff]
[  591.774973] [    T192] pci 0000:41:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  591.774993] [    T192] pci 0000:41:00.0: enabling Extended Tags
[  591.775152] [    T192] pci 0000:41:00.0: supports D1 D2
[  591.775153] [    T192] pci 0000:41:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[  591.775443] [    T192] pci 0000:41:00.0: Adding to iommu group 18
[  591.775512] [    T192] pci 0000:41:01.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[  591.775549] [    T192] pci 0000:41:01.0: PCI bridge to [bus 00]
[  591.775558] [    T192] pci 0000:41:01.0:   bridge window [io  0x0000-0x0fff]
[  591.775561] [    T192] pci 0000:41:01.0:   bridge window [mem 0x00000000-0x000fffff]
[  591.775576] [    T192] pci 0000:41:01.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  591.775596] [    T192] pci 0000:41:01.0: enabling Extended Tags
[  591.775761] [    T192] pci 0000:41:01.0: supports D1 D2
[  591.775762] [    T192] pci 0000:41:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[  591.776090] [    T192] pci 0000:41:01.0: Adding to iommu group 19
[  591.776156] [    T192] pci 0000:41:02.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[  591.776194] [    T192] pci 0000:41:02.0: PCI bridge to [bus 00]
[  591.776202] [    T192] pci 0000:41:02.0:   bridge window [io  0x0000-0x0fff]
[  591.776206] [    T192] pci 0000:41:02.0:   bridge window [mem 0x00000000-0x000fffff]
[  591.776221] [    T192] pci 0000:41:02.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  591.776241] [    T192] pci 0000:41:02.0: enabling Extended Tags
[  591.776401] [    T192] pci 0000:41:02.0: supports D1 D2
[  591.776402] [    T192] pci 0000:41:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[  591.776632] [    T192] pci 0000:41:02.0: Adding to iommu group 20
[  591.776695] [    T192] pci 0000:41:03.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[  591.776732] [    T192] pci 0000:41:03.0: PCI bridge to [bus 00]
[  591.776741] [    T192] pci 0000:41:03.0:   bridge window [io  0x0000-0x0fff]
[  591.776744] [    T192] pci 0000:41:03.0:   bridge window [mem 0x00000000-0x000fffff]
[  591.776759] [    T192] pci 0000:41:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  591.776779] [    T192] pci 0000:41:03.0: enabling Extended Tags
[  591.776935] [    T192] pci 0000:41:03.0: supports D1 D2
[  591.776936] [    T192] pci 0000:41:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[  591.777151] [    T192] pci 0000:41:03.0: Adding to iommu group 21
[  591.777221] [    T192] pci 0000:41:04.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[  591.777258] [    T192] pci 0000:41:04.0: PCI bridge to [bus 00]
[  591.777266] [    T192] pci 0000:41:04.0:   bridge window [io  0x0000-0x0fff]
[  591.777270] [    T192] pci 0000:41:04.0:   bridge window [mem 0x00000000-0x000fffff]
[  591.777285] [    T192] pci 0000:41:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[  591.777304] [    T192] pci 0000:41:04.0: enabling Extended Tags
[  591.777463] [    T192] pci 0000:41:04.0: supports D1 D2
[  591.777464] [    T192] pci 0000:41:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[  591.777699] [    T192] pci 0000:41:04.0: Adding to iommu group 22
[  591.777779] [    T192] pci 0000:40:00.0: PCI bridge to [bus 41-7e]
[  591.777797] [    T192] pci 0000:41:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  591.777807] [    T192] pci 0000:41:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  591.777817] [    T192] pci 0000:41:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  591.777827] [    T192] pci 0000:41:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  591.777837] [    T192] pci 0000:41:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[  591.778319] [    T192] pci 0000:41:00.0: PCI bridge to [bus 42-7e]
[  591.778337] [    T192] pci_bus 0000:42: busn_res: [bus 42-7e] end is updated to 42
[  591.778409] [    T192] pci 0000:41:01.0: PCI bridge to [bus 43-7e]
[  591.778425] [    T192] pci_bus 0000:43: busn_res: [bus 43-7e] end is updated to 56
[  591.778498] [    T192] pci 0000:41:02.0: PCI bridge to [bus 57-7e]
[  591.778515] [    T192] pci_bus 0000:57: busn_res: [bus 57-7e] end is updated to 6a
[  591.778588] [    T192] pci 0000:41:03.0: PCI bridge to [bus 6b-7e]
[  591.778605] [    T192] pci_bus 0000:6b: busn_res: [bus 6b-7e] end is updated to 7d
[  591.779511] [    T192] pci 0000:41:04.0: PCI bridge to [bus 7e]
[  591.779528] [    T192] pci_bus 0000:7e: busn_res: [bus 7e] end is updated to 7e
[  591.779534] [    T192] pci_bus 0000:41: busn_res: [bus 41-7e] end is updated to 7e
[  591.779540] [    T192] pci 0000:41:01.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 43-56] add_size 100000 add_align 100000
[  591.779542] [    T192] pci 0000:41:01.0: bridge window [mem 0x00100000-0x001fffff] to [bus 43-56] add_size 100000 add_align 100000
[  591.779543] [    T192] pci 0000:41:02.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 57-6a] add_size 100000 add_align 100000
[  591.779544] [    T192] pci 0000:41:02.0: bridge window [mem 0x00100000-0x001fffff] to [bus 57-6a] add_size 100000 add_align 100000
[  591.779545] [    T192] pci 0000:41:03.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 6b-7d] add_size 100000 add_align 100000
[  591.779546] [    T192] pci 0000:41:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 6b-7d] add_size 100000 add_align 100000
[  591.779548] [    T192] pci 0000:40:00.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 41-7e] add_size 300000 add_align 100000
[  591.779549] [    T192] pci 0000:40:00.0: bridge window [mem 0x00100000-0x005fffff] to [bus 41-7e] add_size 300000 add_align 100000
[  591.779553] [    T192] pci 0000:40:00.0: bridge window [mem 0x74000000-0x801fffff]: assigned
[  591.779554] [    T192] pci 0000:40:00.0: bridge window [mem 0x6020000000-0x603bffffff 64bit pref]: assigned
[  591.779555] [    T192] pci 0000:40:00.0: bridge window [io  0x5000-0x9fff]: assigned
[  591.779557] [    T192] pci 0000:41:00.0: bridge window [mem 0x74000000-0x740fffff]: assigned
[  591.779558] [    T192] pci 0000:41:00.0: bridge window [mem 0x6020000000-0x60200fffff 64bit pref]: assigned
[  591.779558] [    T192] pci 0000:41:01.0: bridge window [mem 0x74100000-0x780fffff]: assigned
[  591.779559] [    T192] pci 0000:41:01.0: bridge window [mem 0x6020100000-0x60294fffff 64bit pref]: assigned
[  591.779560] [    T192] pci 0000:41:02.0: bridge window [mem 0x78100000-0x7c0fffff]: assigned
[  591.779561] [    T192] pci 0000:41:02.0: bridge window [mem 0x6029500000-0x60328fffff 64bit pref]: assigned
[  591.779561] [    T192] pci 0000:41:03.0: bridge window [mem 0x7c100000-0x800fffff]: assigned
[  591.779562] [    T192] pci 0000:41:03.0: bridge window [mem 0x6032900000-0x603bcfffff 64bit pref]: assigned
[  591.779563] [    T192] pci 0000:41:04.0: bridge window [mem 0x80100000-0x801fffff]: assigned
[  591.779563] [    T192] pci 0000:41:04.0: bridge window [mem 0x603bd00000-0x603bdfffff 64bit pref]: assigned
[  591.779564] [    T192] pci 0000:41:00.0: bridge window [io  0x5000-0x5fff]: assigned
[  591.779565] [    T192] pci 0000:41:01.0: bridge window [io  0x6000-0x6fff]: assigned
[  591.779565] [    T192] pci 0000:41:02.0: bridge window [io  0x7000-0x7fff]: assigned
[  591.779566] [    T192] pci 0000:41:03.0: bridge window [io  0x8000-0x8fff]: assigned
[  591.779567] [    T192] pci 0000:41:04.0: bridge window [io  0x9000-0x9fff]: assigned
[  591.779568] [    T192] pci 0000:41:00.0: PCI bridge to [bus 42]
[  591.779570] [    T192] pci 0000:41:00.0:   bridge window [io  0x5000-0x5fff]
[  591.779575] [    T192] pci 0000:41:00.0:   bridge window [mem 0x74000000-0x740fffff]
[  591.779579] [    T192] pci 0000:41:00.0:   bridge window [mem 0x6020000000-0x60200fffff 64bit pref]
[  591.779586] [    T192] pci 0000:41:01.0: PCI bridge to [bus 43-56]
[  591.779588] [    T192] pci 0000:41:01.0:   bridge window [io  0x6000-0x6fff]
[  591.779593] [    T192] pci 0000:41:01.0:   bridge window [mem 0x74100000-0x780fffff]
[  591.779597] [    T192] pci 0000:41:01.0:   bridge window [mem 0x6020100000-0x60294fffff 64bit pref]
[  591.779604] [    T192] pci 0000:41:02.0: PCI bridge to [bus 57-6a]
[  591.779606] [    T192] pci 0000:41:02.0:   bridge window [io  0x7000-0x7fff]
[  591.779611] [    T192] pci 0000:41:02.0:   bridge window [mem 0x78100000-0x7c0fffff]
[  591.779615] [    T192] pci 0000:41:02.0:   bridge window [mem 0x6029500000-0x60328fffff 64bit pref]
[  591.779622] [    T192] pci 0000:41:03.0: PCI bridge to [bus 6b-7d]
[  591.779626] [    T192] pci 0000:41:03.0:   bridge window [io  0x8000-0x8fff]
[  591.779632] [    T192] pci 0000:41:03.0:   bridge window [mem 0x7c100000-0x800fffff]
[  591.779636] [    T192] pci 0000:41:03.0:   bridge window [mem 0x6032900000-0x603bcfffff 64bit pref]
[  591.779642] [    T192] pci 0000:41:04.0: PCI bridge to [bus 7e]
[  591.779644] [    T192] pci 0000:41:04.0:   bridge window [io  0x9000-0x9fff]
[  591.779650] [    T192] pci 0000:41:04.0:   bridge window [mem 0x80100000-0x801fffff]
[  591.779653] [    T192] pci 0000:41:04.0:   bridge window [mem 0x603bd00000-0x603bdfffff 64bit pref]
[  591.779660] [    T192] pci 0000:40:00.0: PCI bridge to [bus 41-7e]
[  591.779662] [    T192] pci 0000:40:00.0:   bridge window [io  0x5000-0x9fff]
[  591.779667] [    T192] pci 0000:40:00.0:   bridge window [mem 0x74000000-0x801fffff]
[  591.779671] [    T192] pci 0000:40:00.0:   bridge window [mem 0x6020000000-0x603bffffff 64bit pref]
[  591.779678] [    T192] pcieport 0000:00:07.2: PCI bridge to [bus 40-7e]
[  591.779679] [    T192] pcieport 0000:00:07.2:   bridge window [io  0x5000-0x9fff]
[  591.779681] [    T192] pcieport 0000:00:07.2:   bridge window [mem 0x74000000-0x801fffff]
[  591.779682] [    T192] pcieport 0000:00:07.2:   bridge window [mem 0x6020000000-0x603bffffff 64bit pref]
[  591.779892] [    T192] pcieport 0000:40:00.0: enabling device (0000 -> 0003)
[  591.780184] [    T192] pcieport 0000:41:00.0: enabling device (0000 -> 0003)
[  591.780463] [    T192] pcieport 0000:41:01.0: enabling device (0000 -> 0003)
[  591.780585] [    T192] pcieport 0000:41:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[  591.781112] [    T192] pcieport 0000:41:02.0: enabling device (0000 -> 0003)
[  591.781223] [    T192] pcieport 0000:41:02.0: pciehp: Slot #2 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[  591.781689] [    T192] pcieport 0000:41:03.0: enabling device (0000 -> 0003)
[  591.781806] [    T192] pcieport 0000:41:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[  591.782187] [    T192] pcieport 0000:41:04.0: enabling device (0000 -> 0003)
[  591.787715] [    T212] usb 2-3: new SuperSpeed Plus Gen 2x1 USB device number 17 using xhci_hcd
[  591.800515] [    T212] usb 2-3: New USB device found, idVendor=8087, idProduct=0b40, bcdDevice=12.34
[  591.800523] [    T212] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  591.800526] [    T212] usb 2-3: Product: USB3.0 Hub
[  591.800529] [    T212] usb 2-3: Manufacturer: Intel Corporation.
[  591.801690] [    T212] hub 2-3:1.0: USB hub found
[  591.801723] [    T212] hub 2-3:1.0: 4 ports detected
[  591.828651] [   T4395] usb 3-3.1: new low-speed USB device number 32 using xhci_hcd
[  591.923390] [   T4395] usb 3-3.1: New USB device found, idVendor=0451, idProduct=ace1, bcdDevice= 1.50
[  591.923398] [   T4395] usb 3-3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  591.923401] [   T4395] usb 3-3.1: Product: TPS DMC Family
[  591.923403] [   T4395] usb 3-3.1: Manufacturer: Texas Instruments Inc
[  591.923405] [   T4395] usb 3-3.1: SerialNumber: 331964161CF1E0B5624D9D096602BC1
[  592.000680] [   T4395] usb 3-3.4: new high-speed USB device number 33 using xhci_hcd
[  592.088557] [   T4395] usb 3-3.4: New USB device found, idVendor=2109, idProduct=2822, bcdDevice=90.44
[  592.088574] [   T4395] usb 3-3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  592.088580] [   T4395] usb 3-3.4: Product: USB2.0 Hub             
[  592.088585] [   T4395] usb 3-3.4: Manufacturer: VIA Labs, Inc.         
[  592.090293] [   T4395] hub 3-3.4:1.0: USB hub found
[  592.090520] [   T4395] hub 3-3.4:1.0: 4 ports detected
[  592.321957] [   T4582] usb 2-3.4: new SuperSpeed Plus Gen 2x1 USB device number 18 using xhci_hcd
[  592.336653] [   T4582] usb 2-3.4: New USB device found, idVendor=2109, idProduct=0822, bcdDevice=90.44
[  592.336679] [   T4582] usb 2-3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  592.336685] [   T4582] usb 2-3.4: Product: USB3.1 Hub             
[  592.336690] [   T4582] usb 2-3.4: Manufacturer: VIA Labs, Inc.         
[  592.339499] [   T4582] hub 2-3.4:1.0: USB hub found
[  592.340131] [   T4582] hub 2-3.4:1.0: 4 ports detected
[  592.382858] [   T2420] usb 3-3.4.2: new high-speed USB device number 34 using xhci_hcd
[  592.438241] [   T3822] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  592.471696] [   T2420] usb 3-3.4.2: New USB device found, idVendor=2109, idProduct=2822, bcdDevice=90.43
[  592.471724] [   T2420] usb 3-3.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  592.471727] [   T2420] usb 3-3.4.2: Product: USB2.0 Hub             
[  592.471730] [   T2420] usb 3-3.4.2: Manufacturer: VIA Labs, Inc.         
[  592.473858] [   T2420] hub 3-3.4.2:1.0: USB hub found
[  592.474077] [   T2420] hub 3-3.4.2:1.0: 4 ports detected
[  592.613040] [    T236] usb 2-3.4.1: new SuperSpeed USB device number 19 using xhci_hcd
[  592.625915] [    T236] usb 2-3.4.1: New USB device found, idVendor=0bda, idProduct=8156, bcdDevice=31.04
[  592.625923] [    T236] usb 2-3.4.1: New USB device strings: Mfr=1, Product=2, SerialNumber=6
[  592.625926] [    T236] usb 2-3.4.1: Product: USB 10/100/1G/2.5G LAN
[  592.625929] [    T236] usb 2-3.4.1: Manufacturer: Realtek
[  592.625931] [    T236] usb 2-3.4.1: SerialNumber: 401385A8AD
[  592.647342] [    T236] cdc_ncm 2-3.4.1:2.0: MAC-Address: 80:6d:97:85:a8:ad
[  592.647349] [    T236] cdc_ncm 2-3.4.1:2.0: setting rx_max = 16384
[  592.647576] [    T236] cdc_ncm 2-3.4.1:2.0: setting tx_max = 16384
[  592.648410] [    T236] cdc_ncm 2-3.4.1:2.0 eth0: register 'cdc_ncm' at usb-0000:00:0d.0-3.4.1, CDC NCM (NO ZLP), 80:6d:97:85:a8:ad
[  592.649212] [    T236] cdc_ncm 2-3.4.1:2.0 eth0: unregister 'cdc_ncm' usb-0000:00:0d.0-3.4.1, CDC NCM (NO ZLP)
[  592.725249] [    T236] r8152-cfgselector 2-3.4.1: reset SuperSpeed USB device number 19 using xhci_hcd
[  592.743273] [    T236] r8152 2-3.4.1:1.0 (unnamed net_device) (uninitialized): Invalid header when reading pass-thru MAC addr
[  592.758252] [     T98] usb 3-3.4.2.1: new high-speed USB device number 35 using xhci_hcd
[  592.824080] [    T236] r8152 2-3.4.1:1.0 eth0: v2.21.4 (2025/10/28)
[  592.824085] [    T236] r8152 2-3.4.1:1.0 eth0: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[  592.847379] [     T98] usb 3-3.4.2.1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.56
[  592.847389] [     T98] usb 3-3.4.2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  592.847394] [     T98] usb 3-3.4.2.1: Product: USB2.1 Hub
[  592.847398] [     T98] usb 3-3.4.2.1: Manufacturer: GenesysLogic
[  592.849534] [     T98] hub 3-3.4.2.1:1.0: USB hub found
[  592.849851] [     T98] hub 3-3.4.2.1:1.0: 4 ports detected
[  592.889118] [    T236] usb 2-3.4.2: new SuperSpeed Plus Gen 2x1 USB device number 20 using xhci_hcd
[  592.904046] [    T236] usb 2-3.4.2: New USB device found, idVendor=2109, idProduct=0822, bcdDevice=90.43
[  592.904051] [    T236] usb 2-3.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  592.904053] [    T236] usb 2-3.4.2: Product: USB3.1 Hub             
[  592.904054] [    T236] usb 2-3.4.2: Manufacturer: VIA Labs, Inc.         
[  592.905260] [    T236] hub 2-3.4.2:1.0: USB hub found
[  592.906592] [    T236] hub 2-3.4.2:1.0: 4 ports detected
[  593.010637] [   T4871] r8152-cfgselector 2-3.4.1: reset SuperSpeed USB device number 19 using xhci_hcd
[  593.038226] [   T4871] r8152 2-3.4.1:1.0 (unnamed net_device) (uninitialized): Invalid header when reading pass-thru MAC addr
[  593.072462] [   T4871] r8152 2-3.4.1:1.0 eth0: v2.21.4 (2025/10/28)
[  593.072466] [   T4871] r8152 2-3.4.1:1.0 eth0: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[  593.149813] [    T233] usb 3-3.4.2.1.2: new full-speed USB device number 36 using xhci_hcd
[  593.180914] [    T210] usb 2-3.4.2.1: new SuperSpeed USB device number 21 using xhci_hcd
[  593.195988] [    T210] usb 2-3.4.2.1: New USB device found, idVendor=05e3, idProduct=0626, bcdDevice= 6.56
[  593.195996] [    T210] usb 2-3.4.2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  593.196000] [    T210] usb 2-3.4.2.1: Product: USB3.1 Hub
[  593.196003] [    T210] usb 2-3.4.2.1: Manufacturer: GenesysLogic
[  593.196975] [    T210] hub 2-3.4.2.1:1.0: USB hub found
[  593.197263] [    T210] hub 2-3.4.2.1:1.0: 4 ports detected
[  593.267897] [    T233] usb 3-3.4.2.1.2: New USB device found, idVendor=05ac, idProduct=110b, bcdDevice=26.81
[  593.267906] [    T233] usb 3-3.4.2.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  593.267909] [    T233] usb 3-3.4.2.1.2: Product: EarPods
[  593.267911] [    T233] usb 3-3.4.2.1.2: Manufacturer: Apple, Inc.
[  593.267914] [    T233] usb 3-3.4.2.1.2: SerialNumber: GNXTP7WK57
[  593.305117] [    T233] input: Apple, Inc. EarPods as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.2/3-3.4.2.1.2:2.3/0003:05AC:110B.0016/input/input50
[  593.356608] [    T233] hid-generic 0003:05AC:110B.0016: input,hidraw2: USB HID v1.11 Device [Apple, Inc. EarPods] on usb-0000:00:14.0-3.4.2.1.2/input3
[  593.359161] [    T233] hid-generic 0003:05AC:110B.0017: hiddev0,hidraw3: USB HID v1.11 Device [Apple, Inc. EarPods] on usb-0000:00:14.0-3.4.2.1.2/input4
[  593.457910] [    T233] usb 3-3.4.2.1.3: new full-speed USB device number 37 using xhci_hcd
[  593.570032] [    T233] usb 3-3.4.2.1.3: New USB device found, idVendor=05ac, idProduct=024f, bcdDevice= 1.12
[  593.570049] [    T233] usb 3-3.4.2.1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  593.570055] [    T233] usb 3-3.4.2.1.3: Product: Keychron K2
[  593.570060] [    T233] usb 3-3.4.2.1.3: Manufacturer: Keychron
[  593.578086] [    T233] input: Keychron Keychron K2 as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.0/0003:05AC:024F.0018/input/input51
[  593.607428] [    T233] hid-generic 0003:05AC:024F.0018: input,hidraw4: USB HID v1.11 Keyboard [Keychron Keychron K2] on usb-0000:00:14.0-3.4.2.1.3/input0
[  593.610081] [    T233] input: Keychron Keychron K2 Consumer Control as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.0019/input/input52
[  593.610290] [    T233] input: Keychron Keychron K2 System Control as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.0019/input/input53
[  593.610455] [    T233] input: Keychron Keychron K2 Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.0019/input/input54
[  593.610631] [    T233] input: Keychron Keychron K2 Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.0019/input/input55
[  593.610887] [    T233] input: Keychron Keychron K2 as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.0019/input/input56
[  593.611160] [    T233] hid-generic 0003:05AC:024F.0019: input,hiddev1,hidraw5: USB HID v1.11 Keyboard [Keychron Keychron K2] on usb-0000:00:14.0-3.4.2.1.3/input1
[  593.709966] [    T233] usb 3-3.4.2.1.4: new low-speed USB device number 38 using xhci_hcd
[  593.824107] [    T233] usb 3-3.4.2.1.4: New USB device found, idVendor=093a, idProduct=2510, bcdDevice= 1.00
[  593.824124] [    T233] usb 3-3.4.2.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  593.824132] [    T233] usb 3-3.4.2.1.4: Product: USB Optical Mouse
[  593.824137] [    T233] usb 3-3.4.2.1.4: Manufacturer: PixArt
[  593.830138] [    T233] input: PixArt USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.4/3-3.4.2.1.4:1.0/0003:093A:2510.001A/input/input57
[  593.830354] [    T233] hid-generic 0003:093A:2510.001A: input,hidraw6: USB HID v1.11 Mouse [PixArt USB Optical Mouse] on usb-0000:00:14.0-3.4.2.1.4/input0
[  595.101854] [   T3822] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  596.158889] [   T4934] r8152 2-3.4.1:1.0 eth0: carrier on
[  596.415955] [   T4934] r8152 2-3.4.1:1.0 eth0: carrier off
[  599.487368] [   T4934] r8152 2-3.4.1:1.0 eth0: carrier on
[  674.056223] [   T5115] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  675.278859] [   T5115] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  676.424262] [   T5115] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  857.961313] [   T5115] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  859.224779] [   T5115] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  860.371158] [   T5115] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  887.383875] [   T5429] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  888.554170] [   T5429] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[  914.488018] [   T5503] Suspended at Thu, 29 Jan 2026 17:22:27 -0800
[  914.578943] [   T5489] PM: hibernation: hibernation entry
[  914.600446] [   T3534] Filesystems sync: 0.004 seconds
[  914.600702] [   T5489] Freezing user space processes
[  914.602195] [   T5489] Freezing user space processes completed (elapsed 0.001 seconds)
[  914.602199] [   T5489] OOM killer disabled.
[  914.602495] [   T5489] PM: hibernation: Marking nosave pages: [mem 0x00000000-0x00000fff]
[  914.602500] [   T5489] PM: hibernation: Marking nosave pages: [mem 0x0009f000-0x000fffff]
[  914.602505] [   T5489] PM: hibernation: Marking nosave pages: [mem 0x523e6000-0x52426fff]
[  914.602509] [   T5489] PM: hibernation: Marking nosave pages: [mem 0x57cb6000-0x5d7fefff]
[  914.602742] [   T5489] PM: hibernation: Marking nosave pages: [mem 0x5d800000-0xffffffff]
[  914.602836] [   T5489] PM: hibernation: Basic memory bitmaps created
[  914.603058] [   T5489] PM: hibernation: Preallocating image memory
[  915.157980] [   T5489] PM: hibernation: Allocated 1436716 pages for snapshot
[  915.157984] [   T5489] PM: hibernation: Allocated 5746864 kbytes in 0.55 seconds (10448.84 MB/s)
[  915.157987] [   T5489] Freezing remaining freezable tasks
[  915.159406] [   T5489] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[  915.380424] [   T5489] printk: Suspending console(s) (use no_console_suspend to debug)
[  915.962418] [   T5489] ACPI: EC: interrupt blocked
[  915.962552] [   T5489] ACPI: PM: Preparing to enter system sleep state S4
[  916.008688] [   T5489] ACPI: EC: event blocked
[  916.008690] [   T5489] ACPI: EC: EC stopped
[  916.008690] [   T5489] ACPI: PM: Saving platform NVS memory
[  916.011689] [   T5489] Disabling non-boot CPUs ...
[  916.013889] [   T5489] smpboot: CPU 19 is now offline
[  916.016594] [   T5489] smpboot: CPU 18 is now offline
[  916.019283] [   T5489] smpboot: CPU 17 is now offline
[  916.022104] [   T5489] smpboot: CPU 16 is now offline
[  916.024951] [   T5489] smpboot: CPU 15 is now offline
[  916.027766] [   T5489] smpboot: CPU 14 is now offline
[  916.030389] [   T5489] smpboot: CPU 13 is now offline
[  916.033015] [   T5489] smpboot: CPU 12 is now offline
[  916.035713] [   T5489] smpboot: CPU 10 is now offline
[  916.038023] [   T5489] smpboot: CPU 8 is now offline
[  916.040093] [   T5489] smpboot: CPU 6 is now offline
[  916.042248] [   T5489] smpboot: CPU 4 is now offline
[  916.044081] [   T5489] smpboot: CPU 2 is now offline
[  916.300914] [   T5489] PM: hibernation: Normal pages needed: 1322480 + 1024, available pages: 6963940
[  916.053247] [   T5489] ACPI: PM: Restoring platform NVS memory
[  916.054024] [   T5489] ACPI: EC: EC started
[  916.055769] [   T5489] Enabling non-boot CPUs ...
[  916.055791] [   T5489] smpboot: Booting Node 0 Processor 2 APIC 0x8
[  916.059373] [   T5489] CPU2 is up
[  916.059390] [   T5489] smpboot: Booting Node 0 Processor 4 APIC 0x10
[  916.063371] [   T5489] CPU4 is up
[  916.063385] [   T5489] smpboot: Booting Node 0 Processor 6 APIC 0x18
[  916.067464] [   T5489] CPU6 is up
[  916.067476] [   T5489] smpboot: Booting Node 0 Processor 8 APIC 0x20
[  916.071439] [   T5489] CPU8 is up
[  916.071451] [   T5489] smpboot: Booting Node 0 Processor 10 APIC 0x28
[  916.075488] [   T5489] CPU10 is up
[  916.075499] [   T5489] smpboot: Booting Node 0 Processor 12 APIC 0x30
[  916.078555] [      T0] core: cpu_atom PMU driver: 
[  916.078559] [      T0] ... version:                   5
[  916.078560] [      T0] ... bit width:                 48
[  916.078561] [      T0] ... generic counters:          6
[  916.078561] [      T0] ... generic bitmap:            000000000000003f
[  916.078562] [      T0] ... fixed-purpose counters:    3
[  916.078562] [      T0] ... fixed-purpose bitmap:      0000000000000007
[  916.078563] [      T0] ... value mask:                0000ffffffffffff
[  916.078563] [      T0] ... max period:                00007fffffffffff
[  916.078564] [      T0] ... global_ctrl mask:          000000070000003f
[  916.079699] [   T5489] CPU12 is up
[  916.079711] [   T5489] smpboot: Booting Node 0 Processor 13 APIC 0x32
[  916.083844] [   T5489] CPU13 is up
[  916.083856] [   T5489] smpboot: Booting Node 0 Processor 14 APIC 0x34
[  916.088132] [   T5489] CPU14 is up
[  916.088145] [   T5489] smpboot: Booting Node 0 Processor 15 APIC 0x36
[  916.092155] [   T5489] CPU15 is up
[  916.092169] [   T5489] smpboot: Booting Node 0 Processor 16 APIC 0x38
[  916.096510] [   T5489] CPU16 is up
[  916.096555] [   T5489] smpboot: Booting Node 0 Processor 17 APIC 0x3a
[  916.101685] [   T5489] CPU17 is up
[  916.101697] [   T5489] smpboot: Booting Node 0 Processor 18 APIC 0x3c
[  916.106976] [   T5489] CPU18 is up
[  916.106990] [   T5489] smpboot: Booting Node 0 Processor 19 APIC 0x3e
[  916.114293] [   T5489] CPU19 is up
[  916.116873] [   T5489] smpboot: Booting Node 0 Processor 1 APIC 0x1
[  916.130478] [   T5489] smpboot: Booting Node 0 Processor 3 APIC 0x9
[  916.154389] [   T5489] smpboot: Booting Node 0 Processor 5 APIC 0x11
[  916.178623] [   T5489] smpboot: Booting Node 0 Processor 7 APIC 0x19
[  916.202750] [   T5489] smpboot: Booting Node 0 Processor 9 APIC 0x21
[  916.226945] [   T5489] smpboot: Booting Node 0 Processor 11 APIC 0x29
[  916.263991] [   T4934] smpboot: CPU 1 is now offline
[  916.270553] [   T4934] smpboot: CPU 3 is now offline
[  916.282461] [   T4934] smpboot: CPU 5 is now offline
[  916.296287] [   T4934] smpboot: CPU 7 is now offline
[  916.309996] [   T4934] smpboot: CPU 9 is now offline
[  916.324246] [   T4934] smpboot: CPU 11 is now offline
[  916.333310] [   T5489] ACPI: PM: Waking up from system sleep state S4
[  916.363315] [   T5489] ACPI: EC: interrupt unblocked
[  919.516541] [    T192] pcieport 0000:00:07.2: pciehp: Slot(5): Card not present
[  919.517219] [    T192] pci_bus 0000:42: busn_res: [bus 42] is released
[  919.517462] [    T192] pci_bus 0000:43: busn_res: [bus 43-56] is released
[  919.517649] [    T192] pci_bus 0000:57: busn_res: [bus 57-6a] is released
[  919.517828] [    T192] pci_bus 0000:6b: busn_res: [bus 6b-7d] is released
[  919.518002] [    T192] pci_bus 0000:7e: busn_res: [bus 7e] is released
[  919.518179] [    T192] pci_bus 0000:41: busn_res: [bus 41-7e] is released
[  919.518780] [    T192] pcieport 0000:00:07.2: pciehp: Slot(5): Card present
[  919.520304] [   T5489] intel_pmc_core INT33A1:00: CPU did not enter SLP_S0!!! (S0ix cnt=0)
[  919.520334] [   T5489] intel_pmc_core INT33A1:00: 
                          PMC0:LPM_STATUS_0:	0x0
[  919.520337] [   T5489] intel_pmc_core INT33A1:00: PMC0:USB2PLL_OFF_STS                0                             
[  919.520341] [   T5489] intel_pmc_core INT33A1:00: PMC0:PCIe/USB3.1_Gen2PLL_OFF_STS    0                             
[  919.520344] [   T5489] intel_pmc_core INT33A1:00: PMC0:PCIe_Gen3PLL_OFF_STS           0                             
[  919.520347] [   T5489] intel_pmc_core INT33A1:00: PMC0:OPIOPLL_OFF_STS                0                             
[  919.520349] [   T5489] intel_pmc_core INT33A1:00: PMC0:OCPLL_OFF_STS                  0                             
[  919.520351] [   T5489] intel_pmc_core INT33A1:00: PMC0:MainPLL_OFF_STS                0                             
[  919.520352] [   T5489] intel_pmc_core INT33A1:00: PMC0:MIPIPLL_OFF_STS                0                             
[  919.520354] [   T5489] intel_pmc_core INT33A1:00: PMC0:Fast_XTAL_Osc_OFF_STS          0                             
[  919.520356] [   T5489] intel_pmc_core INT33A1:00: PMC0:AC_Ring_Osc_OFF_STS            0                             
[  919.520358] [   T5489] intel_pmc_core INT33A1:00: PMC0:MC_Ring_Osc_OFF_STS            0                             
[  919.520360] [   T5489] intel_pmc_core INT33A1:00: PMC0:SATAPLL_OFF_STS                0                             
[  919.520362] [   T5489] intel_pmc_core INT33A1:00: PMC0:XTAL_USB2PLL_OFF_STS           0                             
[  919.520364] [   T5489] intel_pmc_core INT33A1:00: 
                          PMC0:LPM_STATUS_1:	0x0
[  919.520366] [   T5489] intel_pmc_core INT33A1:00: PMC0:CSME_PG_STS                    0                             
[  919.520368] [   T5489] intel_pmc_core INT33A1:00: PMC0:SATA_PG_STS                    0                             
[  919.520370] [   T5489] intel_pmc_core INT33A1:00: PMC0:xHCI_PG_STS                    0                             
[  919.520371] [   T5489] intel_pmc_core INT33A1:00: PMC0:UFSX2_PG_STS                   0                             
[  919.520373] [   T5489] intel_pmc_core INT33A1:00: PMC0:OTG_PG_STS                     0                             
[  919.520375] [   T5489] intel_pmc_core INT33A1:00: PMC0:SPA_PG_STS                     0                             
[  919.520377] [   T5489] intel_pmc_core INT33A1:00: PMC0:SPB_PG_STS                     0                             
[  919.520378] [   T5489] intel_pmc_core INT33A1:00: PMC0:SPC_PG_STS                     0                             
[  919.520380] [   T5489] intel_pmc_core INT33A1:00: PMC0:SPD_PG_STS                     0                             
[  919.520382] [   T5489] intel_pmc_core INT33A1:00: PMC0:SPE_PG_STS                     0                             
[  919.520383] [   T5489] intel_pmc_core INT33A1:00: PMC0:SPF_PG_STS                     0                             
[  919.520385] [   T5489] intel_pmc_core INT33A1:00: PMC0:LSX_PG_STS                     0                             
[  919.520386] [   T5489] intel_pmc_core INT33A1:00: PMC0:P2SB_PG_STS                    0                             
[  919.520388] [   T5489] intel_pmc_core INT33A1:00: PMC0:PSF_PG_STS                     0                             
[  919.520390] [   T5489] intel_pmc_core INT33A1:00: PMC0:SBR_PG_STS                     0                             
[  919.520391] [   T5489] intel_pmc_core INT33A1:00: PMC0:OPIDMI_PG_STS                  0                             
[  919.520393] [   T5489] intel_pmc_core INT33A1:00: PMC0:THC0_PG_STS                    0                             
[  919.520395] [   T5489] intel_pmc_core INT33A1:00: PMC0:THC1_PG_STS                    0                             
[  919.520397] [   T5489] intel_pmc_core INT33A1:00: PMC0:GBETSN_PG_STS                  0                             
[  919.520399] [   T5489] intel_pmc_core INT33A1:00: PMC0:GBE_PG_STS                     0                             
[  919.520400] [   T5489] intel_pmc_core INT33A1:00: PMC0:LPSS_PG_STS                    0                             
[  919.520402] [   T5489] intel_pmc_core INT33A1:00: PMC0:MMP_UFSX2_PG_STS               0                             
[  919.520404] [   T5489] intel_pmc_core INT33A1:00: PMC0:MMP_UFSX2B_PG_STS              0                             
[  919.520406] [   T5489] intel_pmc_core INT33A1:00: PMC0:FIA_PG_STS                     0                             
[  919.520408] [   T5489] intel_pmc_core INT33A1:00: 
                          PMC0:LPM_STATUS_2:	0x0
[  919.520409] [   T5489] intel_pmc_core INT33A1:00: PMC0:ADSP_D3_STS                    0                             
[  919.520411] [   T5489] intel_pmc_core INT33A1:00: PMC0:SATA_D3_STS                    0                             
[  919.520413] [   T5489] intel_pmc_core INT33A1:00: PMC0:xHCI0_D3_STS                   0                             
[  919.520414] [   T5489] intel_pmc_core INT33A1:00: PMC0:xDCI1_D3_STS                   0                             
[  919.520416] [   T5489] intel_pmc_core INT33A1:00: PMC0:SDX_D3_STS                     0                             
[  919.520418] [   T5489] intel_pmc_core INT33A1:00: PMC0:EMMC_D3_STS                    0                             
[  919.520419] [   T5489] intel_pmc_core INT33A1:00: PMC0:IS_D3_STS                      0                             
[  919.520421] [   T5489] intel_pmc_core INT33A1:00: PMC0:THC0_D3_STS                    0                             
[  919.520423] [   T5489] intel_pmc_core INT33A1:00: PMC0:THC1_D3_STS                    0                             
[  919.520424] [   T5489] intel_pmc_core INT33A1:00: PMC0:GBE_D3_STS                     0                             
[  919.520426] [   T5489] intel_pmc_core INT33A1:00: PMC0:GBE_TSN_D3_STS                 0                             
[  919.520428] [   T5489] intel_pmc_core INT33A1:00: 
                          PMC0:LPM_STATUS_3:	0x0
[  919.520430] [   T5489] intel_pmc_core INT33A1:00: PMC0:GPIO_COM0_VNN_REQ_STS          0                             
[  919.520431] [   T5489] intel_pmc_core INT33A1:00: PMC0:GPIO_COM1_VNN_REQ_STS          0                             
[  919.520433] [   T5489] intel_pmc_core INT33A1:00: PMC0:GPIO_COM2_VNN_REQ_STS          0                             
[  919.520435] [   T5489] intel_pmc_core INT33A1:00: PMC0:GPIO_COM3_VNN_REQ_STS          0                             
[  919.520436] [   T5489] intel_pmc_core INT33A1:00: PMC0:GPIO_COM4_VNN_REQ_STS          0                             
[  919.520438] [   T5489] intel_pmc_core INT33A1:00: PMC0:GPIO_COM5_VNN_REQ_STS          0                             
[  919.520439] [   T5489] intel_pmc_core INT33A1:00: PMC0:Audio_VNN_REQ_STS              0                             
[  919.520441] [   T5489] intel_pmc_core INT33A1:00: PMC0:ISH_VNN_REQ_STS                0                             
[  919.520443] [   T5489] intel_pmc_core INT33A1:00: PMC0:CNVI_VNN_REQ_STS               0                             
[  919.520445] [   T5489] intel_pmc_core INT33A1:00: PMC0:eSPI_VNN_REQ_STS               0                             
[  919.520446] [   T5489] intel_pmc_core INT33A1:00: PMC0:Display_VNN_REQ_STS            0                             
[  919.520448] [   T5489] intel_pmc_core INT33A1:00: PMC0:DTS_VNN_REQ_STS                0                             
[  919.520450] [   T5489] intel_pmc_core INT33A1:00: PMC0:SMBUS_VNN_REQ_STS              0                             
[  919.520451] [   T5489] intel_pmc_core INT33A1:00: PMC0:CSME_VNN_REQ_STS               0                             
[  919.520453] [   T5489] intel_pmc_core INT33A1:00: PMC0:SMLINK0_VNN_REQ_STS            0                             
[  919.520455] [   T5489] intel_pmc_core INT33A1:00: PMC0:SMLINK1_VNN_REQ_STS            0                             
[  919.520457] [   T5489] intel_pmc_core INT33A1:00: PMC0:CLINK_VNN_REQ_STS              0                             
[  919.520458] [   T5489] intel_pmc_core INT33A1:00: PMC0:DCI_VNN_REQ_STS                0                             
[  919.520460] [   T5489] intel_pmc_core INT33A1:00: PMC0:ITH_VNN_REQ_STS                0                             
[  919.520462] [   T5489] intel_pmc_core INT33A1:00: PMC0:CSME_VNN_REQ_STS               0                             
[  919.520463] [   T5489] intel_pmc_core INT33A1:00: PMC0:GBE_VNN_REQ_STS                0                             
[  919.520465] [   T5489] intel_pmc_core INT33A1:00: 
                          PMC0:LPM_STATUS_4:	0x0
[  919.520467] [   T5489] intel_pmc_core INT33A1:00: PMC0:CPU_C10_REQ_STS_0              0                             
[  919.520468] [   T5489] intel_pmc_core INT33A1:00: PMC0:PCIe_LPM_En_REQ_STS_3          0                             
[  919.520470] [   T5489] intel_pmc_core INT33A1:00: PMC0:ITH_REQ_STS_5                  0                             
[  919.520472] [   T5489] intel_pmc_core INT33A1:00: PMC0:CNVI_REQ_STS_6                 0                             
[  919.520473] [   T5489] intel_pmc_core INT33A1:00: PMC0:ISH_REQ_STS_7                  0                             
[  919.520475] [   T5489] intel_pmc_core INT33A1:00: PMC0:USB2_SUS_PG_Sys_REQ_STS_10     0                             
[  919.520477] [   T5489] intel_pmc_core INT33A1:00: PMC0:PCIe_Clk_REQ_STS_12            0                             
[  919.520478] [   T5489] intel_pmc_core INT33A1:00: PMC0:MPHY_Core_DL_REQ_STS_16        0                             
[  919.520480] [   T5489] intel_pmc_core INT33A1:00: PMC0:Break-even_En_REQ_STS_17       0                             
[  919.520482] [   T5489] intel_pmc_core INT33A1:00: PMC0:Auto-demo_En_REQ_STS_18        0                             
[  919.520484] [   T5489] intel_pmc_core INT33A1:00: PMC0:MPHY_SUS_REQ_STS_22            0                             
[  919.520486] [   T5489] intel_pmc_core INT33A1:00: PMC0:xDCI_attached_REQ_STS_24       0                             
[  919.520487] [   T5489] intel_pmc_core INT33A1:00: 
                          PMC0:LPM_STATUS_5:	0x0
[  919.520489] [   T5489] intel_pmc_core INT33A1:00: PMC0:LSX_Wake0_En_STS               0                             
[  919.520491] [   T5489] intel_pmc_core INT33A1:00: PMC0:LSX_Wake0_Pol_STS              0                             
[  919.520492] [   T5489] intel_pmc_core INT33A1:00: PMC0:LSX_Wake1_En_STS               0                             
[  919.520494] [   T5489] intel_pmc_core INT33A1:00: PMC0:LSX_Wake1_Pol_STS              0                             
[  919.520496] [   T5489] intel_pmc_core INT33A1:00: PMC0:LSX_Wake2_En_STS               0                             
[  919.520497] [   T5489] intel_pmc_core INT33A1:00: PMC0:LSX_Wake2_Pol_STS              0                             
[  919.520499] [   T5489] intel_pmc_core INT33A1:00: PMC0:LSX_Wake3_En_STS               0                             
[  919.520501] [   T5489] intel_pmc_core INT33A1:00: PMC0:LSX_Wake3_Pol_STS              0                             
[  919.520502] [   T5489] intel_pmc_core INT33A1:00: PMC0:LSX_Wake4_En_STS               0                             
[  919.520504] [   T5489] intel_pmc_core INT33A1:00: PMC0:LSX_Wake4_Pol_STS              0                             
[  919.520506] [   T5489] intel_pmc_core INT33A1:00: PMC0:LSX_Wake5_En_STS               0                             
[  919.520507] [   T5489] intel_pmc_core INT33A1:00: PMC0:LSX_Wake5_Pol_STS              0                             
[  919.520509] [   T5489] intel_pmc_core INT33A1:00: PMC0:LSX_Wake6_En_STS               0                             
[  919.520511] [   T5489] intel_pmc_core INT33A1:00: PMC0:LSX_Wake6_Pol_STS              0                             
[  919.520512] [   T5489] intel_pmc_core INT33A1:00: PMC0:LSX_Wake7_En_STS               0                             
[  919.520514] [   T5489] intel_pmc_core INT33A1:00: PMC0:LSX_Wake7_Pol_STS              0                             
[  919.520516] [   T5489] intel_pmc_core INT33A1:00: PMC0:Intel_Se_IO_Wake0_En_STS       0                             
[  919.520517] [   T5489] intel_pmc_core INT33A1:00: PMC0:Intel_Se_IO_Wake0_Pol_STS      0                             
[  919.520519] [   T5489] intel_pmc_core INT33A1:00: PMC0:Intel_Se_IO_Wake1_En_STS       0                             
[  919.520521] [   T5489] intel_pmc_core INT33A1:00: PMC0:Intel_Se_IO_Wake1_Pol_STS      0                             
[  919.520523] [   T5489] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake0_En_STS      0                             
[  919.520524] [   T5489] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake0_Pol_STS     0                             
[  919.520526] [   T5489] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake1_En_STS      0                             
[  919.520528] [   T5489] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake1_Pol_STS     0                             
[  919.520529] [   T5489] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake2_En_STS      0                             
[  919.520531] [   T5489] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake2_Pol_STS     0                             
[  919.520532] [   T5489] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake3_En_STS      0                             
[  919.520534] [   T5489] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake3_Pol_STS     0                             
[  919.520536] [   T5489] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake4_En_STS      0                             
[  919.520537] [   T5489] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake4_Pol_STS     0                             
[  919.520539] [   T5489] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake5_En_STS      0                             
[  919.520541] [   T5489] intel_pmc_core INT33A1:00: PMC0:Int_Timer_SS_Wake5_Pol_STS     0                             
[  919.520765] [   T5543] ------------[ cut here ]------------
[  919.520768] [   T5543] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#12: kworker/u80:19/5543
[  919.520781] [   T5543] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[  919.520813] [   T5543] CPU: 12 UID: 0 PID: 5543 Comm: kworker/u80:19 Tainted: G S         O        6.19.0-rc7-kenny+ #33 PREEMPT 
[  919.520820] [   T5543] Tainted: [S]=CPU_OUT_OF_SPEC, [O]=OOT_MODULE
[  919.520821] [   T5543] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[  919.520823] [   T5543] Workqueue: thunderbolt1 tb_dp_dprx_work
[  919.520829] [   T5543] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[  919.520835] [   T5543] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[  919.520838] [   T5543] RSP: 0000:ffffa3dc86ebbbd0 EFLAGS: 00010246
[  919.520841] [   T5543] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[  919.520844] [   T5543] RDX: ffffa3dc86ebbc08 RSI: ffffa3dc86ebbc0c RDI: ffff938d4efb7680
[  919.520846] [   T5543] RBP: ffffa3dc86ebbbe0 R08: 0000000000000000 R09: ffff938dc5344ac0
[  919.520847] [   T5543] R10: 00000000000002bf R11: 0000000000000400 R12: ffff938d412ed960
[  919.520849] [   T5543] R13: ffff938d412ed0c8 R14: 0000000000000001 R15: ffff938d42d30358
[  919.520851] [   T5543] FS:  0000000000000000(0000) GS:ffff939518d71000(0000) knlGS:0000000000000000
[  919.520854] [   T5543] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  919.520856] [   T5543] CR2: 0000000000000000 CR3: 000000018aa0d001 CR4: 0000000000770ef0
[  919.520858] [   T5543] PKRU: 55555554
[  919.520859] [   T5543] Call Trace:
[  919.520861] [   T5543]  <TASK>
[  919.520866] [   T5543]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[  919.520871] [   T5543]  tb_available_bandwidth+0x333/0x450
[  919.520875] [   T5543]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[  919.520878] [   T5543]  tb_dp_tunnel_active+0x73/0x310
[  919.520880] [   T5543]  ? tb_tunnel_event+0x131/0x160
[  919.520885] [   T5543]  tb_dp_dprx_work+0xf4/0x110
[  919.520889] [   T5543]  process_scheduled_works+0x1e7/0x370
[  919.520894] [   T5543]  worker_thread+0x2ee/0x390
[  919.520897] [   T5543]  kthread+0x237/0x250
[  919.520900] [   T5543]  ? pr_cont_work+0x1c0/0x1c0
[  919.520903] [   T5543]  ? kthread_blkcg+0x30/0x30
[  919.520906] [   T5543]  ret_from_fork+0xc0/0x550
[  919.520910] [   T5543]  ? __switch_to+0x134/0x460
[  919.520913] [   T5543]  ? kthread_blkcg+0x30/0x30
[  919.520916] [   T5543]  ret_from_fork_asm+0x11/0x20
[  919.520921] [   T5543]  </TASK>
[  919.520922] [   T5543] ---[ end trace 0000000000000000 ]---
[  919.520944] [   T5543] ------------[ cut here ]------------
[  919.520945] [   T5543] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#12: kworker/u80:19/5543
[  919.520952] [   T5543] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[  919.520974] [   T5543] CPU: 12 UID: 0 PID: 5543 Comm: kworker/u80:19 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[  919.520979] [   T5543] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[  919.520980] [   T5543] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[  919.520981] [   T5543] Workqueue: thunderbolt1 tb_dp_dprx_work
[  919.520986] [   T5543] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[  919.520990] [   T5543] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[  919.520993] [   T5543] RSP: 0000:ffffa3dc86ebbbd0 EFLAGS: 00010246
[  919.520995] [   T5543] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[  919.520997] [   T5543] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[  919.520998] [   T5543] RBP: ffffa3dc86ebbbe0 R08: 0000000000000000 R09: ffff938dc5344ac0
[  919.521000] [   T5543] R10: 00000000000002bf R11: 0000000000000400 R12: ffff938d412ed960
[  919.521001] [   T5543] R13: ffff938d412ed0c8 R14: 0000000000000002 R15: ffff938d42d30358
[  919.521003] [   T5543] FS:  0000000000000000(0000) GS:ffff939518d71000(0000) knlGS:0000000000000000
[  919.521005] [   T5543] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  919.521006] [   T5543] CR2: 0000000000000000 CR3: 000000018aa0d001 CR4: 0000000000770ef0
[  919.521008] [   T5543] PKRU: 55555554
[  919.521009] [   T5543] Call Trace:
[  919.521010] [   T5543]  <TASK>
[  919.521011] [   T5543]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[  919.521015] [   T5543]  tb_available_bandwidth+0x333/0x450
[  919.521018] [   T5543]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[  919.521021] [   T5543]  tb_dp_tunnel_active+0x73/0x310
[  919.521023] [   T5543]  ? tb_tunnel_event+0x131/0x160
[  919.521027] [   T5543]  tb_dp_dprx_work+0xf4/0x110
[  919.521032] [   T5543]  process_scheduled_works+0x1e7/0x370
[  919.521035] [   T5543]  worker_thread+0x2ee/0x390
[  919.521039] [   T5543]  kthread+0x237/0x250
[  919.521041] [   T5543]  ? pr_cont_work+0x1c0/0x1c0
[  919.521044] [   T5543]  ? kthread_blkcg+0x30/0x30
[  919.521046] [   T5543]  ret_from_fork+0xc0/0x550
[  919.521050] [   T5543]  ? __switch_to+0x134/0x460
[  919.521052] [   T5543]  ? kthread_blkcg+0x30/0x30
[  919.521055] [   T5543]  ret_from_fork_asm+0x11/0x20
[  919.521060] [   T5543]  </TASK>
[  919.521061] [   T5543] ---[ end trace 0000000000000000 ]---
[  919.521082] [   T5543] ------------[ cut here ]------------
[  919.521083] [   T5543] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#12: kworker/u80:19/5543
[  919.521088] [   T5543] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[  919.521114] [   T5543] CPU: 12 UID: 0 PID: 5543 Comm: kworker/u80:19 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[  919.521118] [   T5543] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[  919.521119] [   T5543] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[  919.521120] [   T5543] Workqueue: thunderbolt1 tb_dp_dprx_work
[  919.521124] [   T5543] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[  919.521128] [   T5543] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[  919.521130] [   T5543] RSP: 0000:ffffa3dc86ebbbd0 EFLAGS: 00010246
[  919.521132] [   T5543] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[  919.521133] [   T5543] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[  919.521135] [   T5543] RBP: ffffa3dc86ebbbe0 R08: 0000000000000000 R09: ffff938dc5344ac0
[  919.521136] [   T5543] R10: 00000000000002bf R11: 0000000000000400 R12: ffff938d412ed960
[  919.521138] [   T5543] R13: ffff938d412ed0c8 R14: 0000000000000003 R15: ffff938d42d30358
[  919.521139] [   T5543] FS:  0000000000000000(0000) GS:ffff939518d71000(0000) knlGS:0000000000000000
[  919.521141] [   T5543] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  919.521142] [   T5543] CR2: 0000000000000000 CR3: 000000018aa0d001 CR4: 0000000000770ef0
[  919.521144] [   T5543] PKRU: 55555554
[  919.521144] [   T5543] Call Trace:
[  919.521146] [   T5543]  <TASK>
[  919.521147] [   T5543]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[  919.521150] [   T5543]  tb_available_bandwidth+0x333/0x450
[  919.521153] [   T5543]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[  919.521156] [   T5543]  tb_dp_tunnel_active+0x73/0x310
[  919.521158] [   T5543]  ? tb_tunnel_event+0x131/0x160
[  919.521163] [   T5543]  tb_dp_dprx_work+0xf4/0x110
[  919.521167] [   T5543]  process_scheduled_works+0x1e7/0x370
[  919.521170] [   T5543]  worker_thread+0x2ee/0x390
[  919.521173] [   T5543]  kthread+0x237/0x250
[  919.521175] [   T5543]  ? pr_cont_work+0x1c0/0x1c0
[  919.521178] [   T5543]  ? kthread_blkcg+0x30/0x30
[  919.521181] [   T5543]  ret_from_fork+0xc0/0x550
[  919.521184] [   T5543]  ? __switch_to+0x134/0x460
[  919.521186] [   T5543]  ? kthread_blkcg+0x30/0x30
[  919.521188] [   T5543]  ret_from_fork_asm+0x11/0x20
[  919.521193] [   T5543]  </TASK>
[  919.521194] [   T5543] ---[ end trace 0000000000000000 ]---
[  919.522509] [   T5543] ------------[ cut here ]------------
[  919.522510] [   T5543] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#12: kworker/u80:19/5543
[  919.522515] [   T5543] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[  919.522534] [   T5543] CPU: 12 UID: 0 PID: 5543 Comm: kworker/u80:19 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[  919.522537] [   T5543] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[  919.522537] [   T5543] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[  919.522538] [   T5543] Workqueue: thunderbolt1 tb_dp_dprx_work
[  919.522542] [   T5543] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[  919.522545] [   T5543] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[  919.522547] [   T5543] RSP: 0000:ffffa3dc86ebbbd0 EFLAGS: 00010246
[  919.522548] [   T5543] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[  919.522549] [   T5543] RDX: ffffa3dc86ebbc08 RSI: ffffa3dc86ebbc0c RDI: ffff938d4efb7680
[  919.522551] [   T5543] RBP: ffffa3dc86ebbbe0 R08: 0000000000000000 R09: ffff938dc5344ac0
[  919.522552] [   T5543] R10: 00000000000001e6 R11: 0000000000000400 R12: ffff938d412ed960
[  919.522553] [   T5543] R13: ffff938d999180c8 R14: 0000000000000001 R15: ffff938d42d30358
[  919.522554] [   T5543] FS:  0000000000000000(0000) GS:ffff939518d71000(0000) knlGS:0000000000000000
[  919.522556] [   T5543] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  919.522557] [   T5543] CR2: 0000000000000000 CR3: 000000018aa0d001 CR4: 0000000000770ef0
[  919.522558] [   T5543] PKRU: 55555554
[  919.522559] [   T5543] Call Trace:
[  919.522560] [   T5543]  <TASK>
[  919.522561] [   T5543]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[  919.522563] [   T5543]  tb_available_bandwidth+0x333/0x450
[  919.522566] [   T5543]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[  919.522568] [   T5543]  tb_dp_tunnel_active+0x73/0x310
[  919.522570] [   T5543]  ? tb_tunnel_event+0x131/0x160
[  919.522574] [   T5543]  tb_dp_dprx_work+0xf4/0x110
[  919.522577] [   T5543]  process_scheduled_works+0x1e7/0x370
[  919.522580] [   T5543]  worker_thread+0x2ee/0x390
[  919.522583] [   T5543]  kthread+0x237/0x250
[  919.522585] [   T5543]  ? pr_cont_work+0x1c0/0x1c0
[  919.522587] [   T5543]  ? kthread_blkcg+0x30/0x30
[  919.522589] [   T5543]  ret_from_fork+0xc0/0x550
[  919.522592] [   T5543]  ? __switch_to+0x134/0x460
[  919.522594] [   T5543]  ? kthread_blkcg+0x30/0x30
[  919.522596] [   T5543]  ret_from_fork_asm+0x11/0x20
[  919.522600] [   T5543]  </TASK>
[  919.522601] [   T5543] ---[ end trace 0000000000000000 ]---
[  919.522618] [   T5543] ------------[ cut here ]------------
[  919.522619] [   T5543] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#12: kworker/u80:19/5543
[  919.522623] [   T5543] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[  919.522640] [   T5543] CPU: 12 UID: 0 PID: 5543 Comm: kworker/u80:19 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[  919.522643] [   T5543] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[  919.522644] [   T5543] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[  919.522645] [   T5543] Workqueue: thunderbolt1 tb_dp_dprx_work
[  919.522648] [   T5543] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[  919.522651] [   T5543] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[  919.522653] [   T5543] RSP: 0000:ffffa3dc86ebbbd0 EFLAGS: 00010246
[  919.522654] [   T5543] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[  919.522655] [   T5543] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[  919.522656] [   T5543] RBP: ffffa3dc86ebbbe0 R08: 0000000000000000 R09: ffff938dc5344ac0
[  919.522657] [   T5543] R10: 00000000000001e6 R11: 0000000000000400 R12: ffff938d412ed960
[  919.522658] [   T5543] R13: ffff938d999180c8 R14: 0000000000000002 R15: ffff938d42d30358
[  919.522660] [   T5543] FS:  0000000000000000(0000) GS:ffff939518d71000(0000) knlGS:0000000000000000
[  919.522661] [   T5543] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  919.522662] [   T5543] CR2: 0000000000000000 CR3: 000000018aa0d001 CR4: 0000000000770ef0
[  919.522664] [   T5543] PKRU: 55555554
[  919.522664] [   T5543] Call Trace:
[  919.522665] [   T5543]  <TASK>
[  919.522666] [   T5543]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[  919.522668] [   T5543]  tb_available_bandwidth+0x333/0x450
[  919.522671] [   T5543]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[  919.522673] [   T5543]  tb_dp_tunnel_active+0x73/0x310
[  919.522675] [   T5543]  ? tb_tunnel_event+0x131/0x160
[  919.522679] [   T5543]  tb_dp_dprx_work+0xf4/0x110
[  919.522682] [   T5543]  process_scheduled_works+0x1e7/0x370
[  919.522685] [   T5543]  worker_thread+0x2ee/0x390
[  919.522688] [   T5543]  kthread+0x237/0x250
[  919.522690] [   T5543]  ? pr_cont_work+0x1c0/0x1c0
[  919.522692] [   T5543]  ? kthread_blkcg+0x30/0x30
[  919.522694] [   T5543]  ret_from_fork+0xc0/0x550
[  919.522697] [   T5543]  ? __switch_to+0x134/0x460
[  919.522699] [   T5543]  ? kthread_blkcg+0x30/0x30
[  919.522701] [   T5543]  ret_from_fork_asm+0x11/0x20
[  919.522705] [   T5543]  </TASK>
[  919.522706] [   T5543] ---[ end trace 0000000000000000 ]---
[  919.522723] [   T5543] ------------[ cut here ]------------
[  919.522723] [   T5543] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#12: kworker/u80:19/5543
[  919.522727] [   T5543] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[  919.522745] [   T5543] CPU: 12 UID: 0 PID: 5543 Comm: kworker/u80:19 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[  919.522748] [   T5543] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[  919.522748] [   T5543] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[  919.522749] [   T5543] Workqueue: thunderbolt1 tb_dp_dprx_work
[  919.522752] [   T5543] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[  919.522756] [   T5543] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[  919.522757] [   T5543] RSP: 0000:ffffa3dc86ebbbd0 EFLAGS: 00010246
[  919.522758] [   T5543] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[  919.522759] [   T5543] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[  919.522761] [   T5543] RBP: ffffa3dc86ebbbe0 R08: 0000000000000000 R09: ffff938dc5344ac0
[  919.522762] [   T5543] R10: 00000000000001e6 R11: 0000000000000400 R12: ffff938d412ed960
[  919.522763] [   T5543] R13: ffff938d999180c8 R14: 0000000000000003 R15: ffff938d42d30358
[  919.522764] [   T5543] FS:  0000000000000000(0000) GS:ffff939518d71000(0000) knlGS:0000000000000000
[  919.522765] [   T5543] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  919.522766] [   T5543] CR2: 0000000000000000 CR3: 000000018aa0d001 CR4: 0000000000770ef0
[  919.522768] [   T5543] PKRU: 55555554
[  919.522768] [   T5543] Call Trace:
[  919.522769] [   T5543]  <TASK>
[  919.522770] [   T5543]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[  919.522772] [   T5543]  tb_available_bandwidth+0x333/0x450
[  919.522775] [   T5543]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[  919.522777] [   T5543]  tb_dp_tunnel_active+0x73/0x310
[  919.522779] [   T5543]  ? tb_tunnel_event+0x131/0x160
[  919.522783] [   T5543]  tb_dp_dprx_work+0xf4/0x110
[  919.522786] [   T5543]  process_scheduled_works+0x1e7/0x370
[  919.522789] [   T5543]  worker_thread+0x2ee/0x390
[  919.522792] [   T5543]  kthread+0x237/0x250
[  919.522794] [   T5543]  ? pr_cont_work+0x1c0/0x1c0
[  919.522796] [   T5543]  ? kthread_blkcg+0x30/0x30
[  919.522798] [   T5543]  ret_from_fork+0xc0/0x550
[  919.522801] [   T5543]  ? __switch_to+0x134/0x460
[  919.522803] [   T5543]  ? kthread_blkcg+0x30/0x30
[  919.522805] [   T5543]  ret_from_fork_asm+0x11/0x20
[  919.522809] [   T5543]  </TASK>
[  919.522809] [   T5543] ---[ end trace 0000000000000000 ]---
[  919.525423] [   T5543] ------------[ cut here ]------------
[  919.525424] [   T5543] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#12: kworker/u80:19/5543
[  919.525426] [   T5543] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[  919.525436] [   T5543] CPU: 12 UID: 0 PID: 5543 Comm: kworker/u80:19 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[  919.525437] [   T5543] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[  919.525438] [   T5543] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[  919.525438] [   T5543] Workqueue: thunderbolt1 tb_dp_dprx_work
[  919.525440] [   T5543] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[  919.525442] [   T5543] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[  919.525443] [   T5543] RSP: 0000:ffffa3dc86ebbc40 EFLAGS: 00010246
[  919.525443] [   T5543] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[  919.525444] [   T5543] RDX: 0000000000000000 RSI: ffff938d999180c8 RDI: ffff938d4efb7680
[  919.525445] [   T5543] RBP: ffffa3dc86ebbc50 R08: ffffa3dc86ebbd24 R09: ffffa3dc86ebbd20
[  919.525445] [   T5543] R10: 00000000000003b9 R11: 0000000000000400 R12: ffff938d412ed3e8
[  919.525446] [   T5543] R13: ffff938d999180c8 R14: 0000000000000001 R15: ffff938d42d30358
[  919.525447] [   T5543] FS:  0000000000000000(0000) GS:ffff939518d71000(0000) knlGS:0000000000000000
[  919.525447] [   T5543] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  919.525448] [   T5543] CR2: 0000000000000000 CR3: 000000018aa0d001 CR4: 0000000000770ef0
[  919.525449] [   T5543] PKRU: 55555554
[  919.525449] [   T5543] Call Trace:
[  919.525449] [   T5543]  <TASK>
[  919.525450] [   T5543]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[  919.525451] [   T5543]  ? tb_usb3_reclaim_available_bandwidth+0xd6/0x2e0
[  919.525453] [   T5543]  tb_configure_asym+0x1a2/0x440
[  919.525455] [   T5543]  tb_dp_tunnel_active+0x88/0x310
[  919.525456] [   T5543]  ? tb_tunnel_event+0x131/0x160
[  919.525458] [   T5543]  tb_dp_dprx_work+0xf4/0x110
[  919.525459] [   T5543]  process_scheduled_works+0x1e7/0x370
[  919.525461] [   T5543]  worker_thread+0x2ee/0x390
[  919.525462] [   T5543]  kthread+0x237/0x250
[  919.525463] [   T5543]  ? pr_cont_work+0x1c0/0x1c0
[  919.525464] [   T5543]  ? kthread_blkcg+0x30/0x30
[  919.525465] [   T5543]  ret_from_fork+0xc0/0x550
[  919.525466] [   T5543]  ? __switch_to+0x134/0x460
[  919.525467] [   T5543]  ? kthread_blkcg+0x30/0x30
[  919.525468] [   T5543]  ret_from_fork_asm+0x11/0x20
[  919.525470] [   T5543]  </TASK>
[  919.525471] [   T5543] ---[ end trace 0000000000000000 ]---
[  919.525479] [   T5543] ------------[ cut here ]------------
[  919.525479] [   T5543] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#12: kworker/u80:19/5543
[  919.525481] [   T5543] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[  919.525489] [   T5543] CPU: 12 UID: 0 PID: 5543 Comm: kworker/u80:19 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[  919.525490] [   T5543] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[  919.525491] [   T5543] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[  919.525491] [   T5543] Workqueue: thunderbolt1 tb_dp_dprx_work
[  919.525493] [   T5543] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[  919.525494] [   T5543] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[  919.525495] [   T5543] RSP: 0000:ffffa3dc86ebbc40 EFLAGS: 00010246
[  919.525495] [   T5543] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[  919.525496] [   T5543] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[  919.525496] [   T5543] RBP: ffffa3dc86ebbc50 R08: ffffa3dc86ebbd24 R09: ffffa3dc86ebbd20
[  919.525497] [   T5543] R10: 00000000000003b9 R11: 0000000000000400 R12: ffff938d412ed3e8
[  919.525497] [   T5543] R13: ffff938d999180c8 R14: 0000000000000002 R15: ffff938d42d30358
[  919.525498] [   T5543] FS:  0000000000000000(0000) GS:ffff939518d71000(0000) knlGS:0000000000000000
[  919.525499] [   T5543] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  919.525499] [   T5543] CR2: 0000000000000000 CR3: 000000018aa0d001 CR4: 0000000000770ef0
[  919.525500] [   T5543] PKRU: 55555554
[  919.525500] [   T5543] Call Trace:
[  919.525500] [   T5543]  <TASK>
[  919.525501] [   T5543]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[  919.525502] [   T5543]  ? tb_usb3_reclaim_available_bandwidth+0xd6/0x2e0
[  919.525504] [   T5543]  tb_configure_asym+0x1a2/0x440
[  919.525505] [   T5543]  tb_dp_tunnel_active+0x88/0x310
[  919.525506] [   T5543]  ? tb_tunnel_event+0x131/0x160
[  919.525507] [   T5543]  tb_dp_dprx_work+0xf4/0x110
[  919.525509] [   T5543]  process_scheduled_works+0x1e7/0x370
[  919.525510] [   T5543]  worker_thread+0x2ee/0x390
[  919.525512] [   T5543]  kthread+0x237/0x250
[  919.525513] [   T5543]  ? pr_cont_work+0x1c0/0x1c0
[  919.525514] [   T5543]  ? kthread_blkcg+0x30/0x30
[  919.525515] [   T5543]  ret_from_fork+0xc0/0x550
[  919.525516] [   T5543]  ? __switch_to+0x134/0x460
[  919.525517] [   T5543]  ? kthread_blkcg+0x30/0x30
[  919.525518] [   T5543]  ret_from_fork_asm+0x11/0x20
[  919.525520] [   T5543]  </TASK>
[  919.525520] [   T5543] ---[ end trace 0000000000000000 ]---
[  919.525528] [   T5543] ------------[ cut here ]------------
[  919.525528] [   T5543] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#12: kworker/u80:19/5543
[  919.525530] [   T5543] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[  919.525539] [   T5543] CPU: 12 UID: 0 PID: 5543 Comm: kworker/u80:19 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[  919.525540] [   T5543] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[  919.525540] [   T5543] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[  919.525541] [   T5543] Workqueue: thunderbolt1 tb_dp_dprx_work
[  919.525542] [   T5543] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[  919.525544] [   T5543] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[  919.525544] [   T5543] RSP: 0000:ffffa3dc86ebbc40 EFLAGS: 00010246
[  919.525545] [   T5543] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[  919.525546] [   T5543] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[  919.525546] [   T5543] RBP: ffffa3dc86ebbc50 R08: ffffa3dc86ebbd24 R09: ffffa3dc86ebbd20
[  919.525547] [   T5543] R10: 00000000000003b9 R11: 0000000000000400 R12: ffff938d412ed3e8
[  919.525547] [   T5543] R13: ffff938d999180c8 R14: 0000000000000003 R15: ffff938d42d30358
[  919.525548] [   T5543] FS:  0000000000000000(0000) GS:ffff939518d71000(0000) knlGS:0000000000000000
[  919.525548] [   T5543] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  919.525549] [   T5543] CR2: 0000000000000000 CR3: 000000018aa0d001 CR4: 0000000000770ef0
[  919.525549] [   T5543] PKRU: 55555554
[  919.525550] [   T5543] Call Trace:
[  919.525550] [   T5543]  <TASK>
[  919.525550] [   T5543]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[  919.525551] [   T5543]  ? tb_usb3_reclaim_available_bandwidth+0xd6/0x2e0
[  919.525553] [   T5543]  tb_configure_asym+0x1a2/0x440
[  919.525554] [   T5543]  tb_dp_tunnel_active+0x88/0x310
[  919.525555] [   T5543]  ? tb_tunnel_event+0x131/0x160
[  919.525557] [   T5543]  tb_dp_dprx_work+0xf4/0x110
[  919.525559] [   T5543]  process_scheduled_works+0x1e7/0x370
[  919.525560] [   T5543]  worker_thread+0x2ee/0x390
[  919.525561] [   T5543]  kthread+0x237/0x250
[  919.525562] [   T5543]  ? pr_cont_work+0x1c0/0x1c0
[  919.525563] [   T5543]  ? kthread_blkcg+0x30/0x30
[  919.525564] [   T5543]  ret_from_fork+0xc0/0x550
[  919.525566] [   T5543]  ? __switch_to+0x134/0x460
[  919.525567] [   T5543]  ? kthread_blkcg+0x30/0x30
[  919.525567] [   T5543]  ret_from_fork_asm+0x11/0x20
[  919.525569] [   T5543]  </TASK>
[  919.525570] [   T5543] ---[ end trace 0000000000000000 ]---
[  919.623317] [   T5543] intel-ipu6 0000:00:05.0: IPU6 in non-secure mode
[  919.623320] [   T5489] ACPI: EC: event unblocked
[  919.623537] [   T3534] usb usb1: root hub lost power or was reset
[  919.623540] [   T3534] usb usb2: root hub lost power or was reset
[  919.624455] [   T5546] usb usb3: root hub lost power or was reset
[  919.624459] [   T5546] usb usb4: root hub lost power or was reset
[  919.698309] [   T5540] pcieport 10000:e0:06.0: can't derive routing for PCI INT A
[  919.698312] [   T5540] nvme 10000:e1:00.0: PCI INT A: no GSI
[  919.711337] [   T5540] nvme nvme0: 20/0/0 default/read/poll queues
[  919.775458] [   T5532] usb 3-9: WARN: invalid context state for evaluate context command.
[  919.887437] [   T5532] usb 3-9: reset full-speed USB device number 3 using xhci_hcd
[  920.011000] [   T5558] usb 3-8: WARN: invalid context state for evaluate context command.
[  920.122565] [   T5558] usb 3-8: reset full-speed USB device number 2 using xhci_hcd
[  920.250059] [   T5558] gpio_ljca usb_ljca.ljca-gpio.0: set value failed offset: 0 val: 0 ret: -19
[  920.270433] [   T5558] gpio_ljca usb_ljca.ljca-gpio.0: set value failed offset: 0 val: 1 ret: -19
[  920.281326] [   T5558] gpio_ljca usb_ljca.ljca-gpio.0: set value failed offset: 1 val: 1 ret: -19
[  920.283406] [   T5559] ish-hid {33AECD58-B679-4E54-9BD9-A04D34F0C226}: [hid-ish]: enum_devices_done OK, num_hid_devices=2
[  920.358448] [   T5544] usb 3-3: reset high-speed USB device number 31 using xhci_hcd
[  920.484437] [   T5563] usb 3-10: WARN: invalid context state for evaluate context command.
[  920.540313] [    T192] pcieport 0000:00:07.2: pciehp: Slot(5): No link
[  920.598368] [   T5563] usb 3-10: reset full-speed USB device number 4 using xhci_hcd
[  921.025458] [   T5533] usb 3-3.4: reset high-speed USB device number 33 using xhci_hcd
[  921.368481] [   T5561] usb 3-3.1: reset low-speed USB device number 32 using xhci_hcd
[  921.714574] [   T5548] usb 3-3.4.2: reset high-speed USB device number 34 using xhci_hcd
[  922.101649] [   T5549] usb 3-3.4.2.1: reset high-speed USB device number 35 using xhci_hcd
[  922.417714] [   T5572] usb 3-3.4.2.1.3: WARN: invalid context state for evaluate context command.
[  922.515734] [   T5572] usb 3-3.4.2.1.3: reset full-speed USB device number 37 using xhci_hcd
[  922.897802] [   T5557] usb 3-3.4.2.1.4: reset low-speed USB device number 38 using xhci_hcd
[  923.190513] [   T5549] usb 3-3.4.2.1.2: WARN: invalid context state for evaluate context command.
[  923.277879] [   T5549] usb 3-3.4.2.1.2: reset full-speed USB device number 36 using xhci_hcd
[  938.298906] [   T5489] PM: hibernation: Basic memory bitmaps freed
[  938.300135] [   T5489] OOM killer enabled.
[  938.300138] [   T5489] Restarting tasks: Starting
[  938.300237] [   T4934] r8152-cfgselector 2-3.4.1: USB disconnect, device number 19
[  938.300315] [    T233] usb 2-3.4.2.1: USB disconnect, device number 21
[  938.300331] [   T5342] usb 2-3: USB disconnect, device number 17
[  938.300340] [   T5342] usb 2-3.4: USB disconnect, device number 18
[  938.301094] [   T1939] Bluetooth: hci0: Device revision is 0
[  938.301097] [   T1939] Bluetooth: hci0: Secure boot is enabled
[  938.301098] [   T1939] Bluetooth: hci0: OTP lock is enabled
[  938.301099] [   T1939] Bluetooth: hci0: API lock is enabled
[  938.301100] [   T1939] Bluetooth: hci0: Debug lock is disabled
[  938.301101] [   T1939] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[  938.301102] [   T1939] Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38
[  938.301273] [   T1939] Bluetooth: hci0: DSM reset method type: 0x00
[  938.301789] [   T1939] Bluetooth: hci0: Found device firmware: intel/ibt-0040-0041.sfi
[  938.301803] [   T1939] Bluetooth: hci0: Boot Address: 0x100800
[  938.301804] [   T1939] Bluetooth: hci0: Firmware Version: 133-20.25
[  938.302268] [   T5489] Restarting tasks: Done
[  938.302274] [   T5489] efivarfs: resyncing variable state
[  938.308212] [   T5578] ov01a10 i2c-OVTI01A0:00: error -EIO: failed to find sensor
[  938.308228] [   T5578] ov01a10 i2c-OVTI01A0:00: probe with driver ov01a10 failed with error -5
[  938.318313] [   T4934] usb 2-3.4.2: USB disconnect, device number 20
[  938.325349] [   T5489] efivarfs: finished resyncing variable state
[  938.389021] [   T5489] PM: hibernation: hibernation exit
[  938.398781] [   T5646] Resumed at Thu, 29 Jan 2026 17:25:01 -0800 (2M 34S)
[  938.423847] [   T5579] intel_vsc intel_vsc: silicon stepping version is 0:2
[  938.585582] [   T1132] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[  938.585642] [   T1132] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[  938.585652] [   T1132] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[  938.585661] [   T1132] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[  938.587121] [   T4934] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 4
[  939.784392] [   T1939] Bluetooth: hci0: Waiting for firmware download to complete
[  939.785259] [   T1939] Bluetooth: hci0: Firmware loaded in 1448408 usecs
[  939.785392] [   T1939] Bluetooth: hci0: Waiting for device to boot
[  939.801085] [   T1939] Bluetooth: hci0: Device booted in 15436 usecs
[  939.803186] [   T1939] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-0040-0041.ddc
[  939.805186] [   T1939] Bluetooth: hci0: Applying Intel DDC parameters completed
[  939.809092] [   T1939] Bluetooth: hci0: Firmware timestamp 2025.20 buildtype 1 build 82053
[  939.809099] [   T1939] Bluetooth: hci0: Firmware SHA1: 0x937bca4a
[  939.813062] [   T1939] Bluetooth: hci0: Fseq status: Success (0x00)
[  939.813066] [   T1939] Bluetooth: hci0: Fseq executed: 00.00.02.41
[  939.813069] [   T1939] Bluetooth: hci0: Fseq BT Top: 00.00.02.41
[  939.881505] [    T986] Bluetooth: MGMT ver 1.23
[  941.705866] [   T5723] usb 3-9: reset full-speed USB device number 3 using xhci_hcd
[  941.981877] [   T5723] usb 3-9: reset full-speed USB device number 3 using xhci_hcd
[  949.034700] [   T5697] ivsc_csi intel_vsc-92335fcf-3203-4472-af93-7b4453ac29da: mei-csi probed without device fwnode!
[  951.050773] [   T5436] usb usb2-port3: Cannot enable. Maybe the USB cable is bad?
[ 1094.980908] [   T5574] ------------[ cut here ]------------
[ 1094.980915] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#19: kworker/u80:53/5574
[ 1094.980932] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1094.980976] [   T5574] CPU: 19 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1094.980986] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1094.980988] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1094.980991] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1094.980998] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1094.981005] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1094.981010] [   T5574] RSP: 0000:ffffa3dc8a4a3bc0 EFLAGS: 00010246
[ 1094.981015] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[ 1094.981019] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7680
[ 1094.981022] [   T5574] RBP: ffffa3dc8a4a3bd0 R08: ffffa3dc8a4a3ca4 R09: ffffa3dc8a4a3ca0
[ 1094.981024] [   T5574] R10: 0000000000000281 R11: 0000000000000800 R12: ffff938d412ed960
[ 1094.981027] [   T5574] R13: ffff938d412ed0c8 R14: 0000000000000001 R15: ffff938d42d30358
[ 1094.981030] [   T5574] FS:  0000000000000000(0000) GS:ffff939518f31000(0000) knlGS:0000000000000000
[ 1094.981034] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1094.981037] [   T5574] CR2: 000055776500b000 CR3: 000000011efc3002 CR4: 0000000000770ef0
[ 1094.981041] [   T5574] PKRU: 55555554
[ 1094.981043] [   T5574] Call Trace:
[ 1094.981045] [   T5574]  <TASK>
[ 1094.981051] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1094.981058] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1094.981087] [   T5574]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1094.981091] [   T5574]  ? usb4_switch_dealloc_dp_resource+0x3a/0x80
[ 1094.981099] [   T5574]  tb_deactivate_and_free_tunnel+0x104/0x120
[ 1094.981103] [   T5574]  tb_dp_resource_unavailable+0x8f/0x1b0
[ 1094.981107] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1094.981111] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1094.981115] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1094.981121] [   T5574]  worker_thread+0x2ee/0x390
[ 1094.981126] [   T5574]  kthread+0x237/0x250
[ 1094.981129] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1094.981134] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.981138] [   T5574]  ret_from_fork+0xc0/0x550
[ 1094.981144] [   T5574]  ? __switch_to+0x134/0x460
[ 1094.981148] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.981152] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1094.981160] [   T5574]  </TASK>
[ 1094.981162] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1094.981190] [   T5574] ------------[ cut here ]------------
[ 1094.981192] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#19: kworker/u80:53/5574
[ 1094.981200] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1094.981230] [   T5574] CPU: 19 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1094.981237] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1094.981238] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1094.981240] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1094.981244] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1094.981250] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1094.981253] [   T5574] RSP: 0000:ffffa3dc8a4a3bc0 EFLAGS: 00010246
[ 1094.981257] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[ 1094.981259] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[ 1094.981262] [   T5574] RBP: ffffa3dc8a4a3bd0 R08: ffffa3dc8a4a3ca4 R09: ffffa3dc8a4a3ca0
[ 1094.981264] [   T5574] R10: 0000000000000281 R11: 0000000000000800 R12: ffff938d412ed960
[ 1094.981266] [   T5574] R13: ffff938d412ed0c8 R14: 0000000000000002 R15: ffff938d42d30358
[ 1094.981268] [   T5574] FS:  0000000000000000(0000) GS:ffff939518f31000(0000) knlGS:0000000000000000
[ 1094.981271] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1094.981274] [   T5574] CR2: 000055776500b000 CR3: 000000011efc3002 CR4: 0000000000770ef0
[ 1094.981277] [   T5574] PKRU: 55555554
[ 1094.981278] [   T5574] Call Trace:
[ 1094.981280] [   T5574]  <TASK>
[ 1094.981282] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1094.981286] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1094.981290] [   T5574]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1094.981294] [   T5574]  ? usb4_switch_dealloc_dp_resource+0x3a/0x80
[ 1094.981300] [   T5574]  tb_deactivate_and_free_tunnel+0x104/0x120
[ 1094.981303] [   T5574]  tb_dp_resource_unavailable+0x8f/0x1b0
[ 1094.981307] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1094.981309] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1094.981313] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1094.981317] [   T5574]  worker_thread+0x2ee/0x390
[ 1094.981322] [   T5574]  kthread+0x237/0x250
[ 1094.981325] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1094.981329] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.981333] [   T5574]  ret_from_fork+0xc0/0x550
[ 1094.981337] [   T5574]  ? __switch_to+0x134/0x460
[ 1094.981341] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.981344] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1094.981351] [   T5574]  </TASK>
[ 1094.981352] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1094.981378] [   T5574] ------------[ cut here ]------------
[ 1094.981379] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#19: kworker/u80:53/5574
[ 1094.981386] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1094.981430] [   T5574] CPU: 19 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1094.981435] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1094.981436] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1094.981438] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1094.981441] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1094.981446] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1094.981449] [   T5574] RSP: 0000:ffffa3dc8a4a3bc0 EFLAGS: 00010246
[ 1094.981451] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[ 1094.981453] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[ 1094.981454] [   T5574] RBP: ffffa3dc8a4a3bd0 R08: ffffa3dc8a4a3ca4 R09: ffffa3dc8a4a3ca0
[ 1094.981456] [   T5574] R10: 0000000000000281 R11: 0000000000000800 R12: ffff938d412ed960
[ 1094.981458] [   T5574] R13: ffff938d412ed0c8 R14: 0000000000000003 R15: ffff938d42d30358
[ 1094.981459] [   T5574] FS:  0000000000000000(0000) GS:ffff939518f31000(0000) knlGS:0000000000000000
[ 1094.981461] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1094.981463] [   T5574] CR2: 000055776500b000 CR3: 000000011efc3002 CR4: 0000000000770ef0
[ 1094.981465] [   T5574] PKRU: 55555554
[ 1094.981466] [   T5574] Call Trace:
[ 1094.981467] [   T5574]  <TASK>
[ 1094.981469] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1094.981472] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1094.981476] [   T5574]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1094.981479] [   T5574]  ? usb4_switch_dealloc_dp_resource+0x3a/0x80
[ 1094.981484] [   T5574]  tb_deactivate_and_free_tunnel+0x104/0x120
[ 1094.981487] [   T5574]  tb_dp_resource_unavailable+0x8f/0x1b0
[ 1094.981490] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1094.981493] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1094.981496] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1094.981499] [   T5574]  worker_thread+0x2ee/0x390
[ 1094.981503] [   T5574]  kthread+0x237/0x250
[ 1094.981505] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1094.981509] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.981511] [   T5574]  ret_from_fork+0xc0/0x550
[ 1094.981515] [   T5574]  ? __switch_to+0x134/0x460
[ 1094.981518] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.981520] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1094.981526] [   T5574]  </TASK>
[ 1094.981527] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1094.982410] [   T5574] ------------[ cut here ]------------
[ 1094.982413] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#19: kworker/u80:53/5574
[ 1094.982422] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1094.982456] [   T5574] CPU: 19 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1094.982462] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1094.982463] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1094.982465] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1094.982469] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1094.982473] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1094.982476] [   T5574] RSP: 0018:ffffa3dc8a4a3bc0 EFLAGS: 00010246
[ 1094.982479] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[ 1094.982481] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7680
[ 1094.982483] [   T5574] RBP: ffffa3dc8a4a3bd0 R08: ffffa3dc8a4a3ca4 R09: ffffa3dc8a4a3ca0
[ 1094.982487] [   T5574] R10: 0000000000000062 R11: 0000000000001000 R12: ffff938d412ed960
[ 1094.982489] [   T5574] R13: ffff938d999180c8 R14: 0000000000000001 R15: ffff938d42d30358
[ 1094.982491] [   T5574] FS:  0000000000000000(0000) GS:ffff939518f31000(0000) knlGS:0000000000000000
[ 1094.982493] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1094.982495] [   T5574] CR2: 00007f68b5530178 CR3: 00000001867ab006 CR4: 0000000000770ef0
[ 1094.982497] [   T5574] PKRU: 55555554
[ 1094.982501] [   T5574] Call Trace:
[ 1094.982503] [   T5574]  <TASK>
[ 1094.982505] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1094.982509] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1094.982514] [   T5574]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1094.982517] [   T5574]  ? usb4_switch_dealloc_dp_resource+0x3a/0x80
[ 1094.982522] [   T5574]  tb_deactivate_and_free_tunnel+0x104/0x120
[ 1094.982525] [   T5574]  tb_dp_resource_unavailable+0x8f/0x1b0
[ 1094.982530] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1094.982533] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1094.982538] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1094.982542] [   T5574]  worker_thread+0x2ee/0x390
[ 1094.982545] [   T5574]  kthread+0x237/0x250
[ 1094.982547] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1094.982551] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.982554] [   T5574]  ret_from_fork+0xc0/0x550
[ 1094.982558] [   T5574]  ? __switch_to+0x134/0x460
[ 1094.982561] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.982563] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1094.982569] [   T5574]  </TASK>
[ 1094.982570] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1094.982595] [   T5574] ------------[ cut here ]------------
[ 1094.982596] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#19: kworker/u80:53/5574
[ 1094.982602] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1094.982626] [   T5574] CPU: 19 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1094.982631] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1094.982632] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1094.982633] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1094.982635] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1094.982639] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1094.982641] [   T5574] RSP: 0018:ffffa3dc8a4a3bc0 EFLAGS: 00010246
[ 1094.982643] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[ 1094.982645] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[ 1094.982647] [   T5574] RBP: ffffa3dc8a4a3bd0 R08: ffffa3dc8a4a3ca4 R09: ffffa3dc8a4a3ca0
[ 1094.982648] [   T5574] R10: 0000000000000062 R11: 0000000000001000 R12: ffff938d412ed960
[ 1094.982650] [   T5574] R13: ffff938d999180c8 R14: 0000000000000002 R15: ffff938d42d30358
[ 1094.982652] [   T5574] FS:  0000000000000000(0000) GS:ffff939518f31000(0000) knlGS:0000000000000000
[ 1094.982654] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1094.982657] [   T5574] CR2: 00007f68b5530178 CR3: 00000001867ab006 CR4: 0000000000770ef0
[ 1094.982659] [   T5574] PKRU: 55555554
[ 1094.982660] [   T5574] Call Trace:
[ 1094.982661] [   T5574]  <TASK>
[ 1094.982662] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1094.982665] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1094.982669] [   T5574]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1094.982673] [   T5574]  ? usb4_switch_dealloc_dp_resource+0x3a/0x80
[ 1094.982679] [   T5574]  tb_deactivate_and_free_tunnel+0x104/0x120
[ 1094.982682] [   T5574]  tb_dp_resource_unavailable+0x8f/0x1b0
[ 1094.982684] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1094.982686] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1094.982689] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1094.982693] [   T5574]  worker_thread+0x2ee/0x390
[ 1094.982698] [   T5574]  kthread+0x237/0x250
[ 1094.982701] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1094.982704] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.982706] [   T5574]  ret_from_fork+0xc0/0x550
[ 1094.982710] [   T5574]  ? __switch_to+0x134/0x460
[ 1094.982715] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.982717] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1094.982723] [   T5574]  </TASK>
[ 1094.982723] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1094.982746] [   T5574] ------------[ cut here ]------------
[ 1094.982747] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#19: kworker/u80:53/5574
[ 1094.982752] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1094.982778] [   T5574] CPU: 19 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1094.982782] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1094.982783] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1094.982784] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1094.982786] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1094.982791] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1094.982795] [   T5574] RSP: 0018:ffffa3dc8a4a3bc0 EFLAGS: 00010246
[ 1094.982797] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[ 1094.982799] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[ 1094.982800] [   T5574] RBP: ffffa3dc8a4a3bd0 R08: ffffa3dc8a4a3ca4 R09: ffffa3dc8a4a3ca0
[ 1094.982804] [   T5574] R10: 0000000000000062 R11: 0000000000001000 R12: ffff938d412ed960
[ 1094.982806] [   T5574] R13: ffff938d999180c8 R14: 0000000000000003 R15: ffff938d42d30358
[ 1094.982807] [   T5574] FS:  0000000000000000(0000) GS:ffff939518f31000(0000) knlGS:0000000000000000
[ 1094.982809] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1094.982811] [   T5574] CR2: 00007f68b5530178 CR3: 00000001867ab006 CR4: 0000000000770ef0
[ 1094.982812] [   T5574] PKRU: 55555554
[ 1094.982813] [   T5574] Call Trace:
[ 1094.982814] [   T5574]  <TASK>
[ 1094.982815] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1094.982818] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1094.982821] [   T5574]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1094.982823] [   T5574]  ? usb4_switch_dealloc_dp_resource+0x3a/0x80
[ 1094.982828] [   T5574]  tb_deactivate_and_free_tunnel+0x104/0x120
[ 1094.982831] [   T5574]  tb_dp_resource_unavailable+0x8f/0x1b0
[ 1094.982834] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1094.982836] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1094.982838] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1094.982842] [   T5574]  worker_thread+0x2ee/0x390
[ 1094.982845] [   T5574]  kthread+0x237/0x250
[ 1094.982847] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1094.982850] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.982853] [   T5574]  ret_from_fork+0xc0/0x550
[ 1094.982856] [   T5574]  ? __switch_to+0x134/0x460
[ 1094.982859] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.982861] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1094.982866] [   T5574]  </TASK>
[ 1094.982867] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1094.989835] [   T5574] ------------[ cut here ]------------
[ 1094.989839] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#19: kworker/u80:53/5574
[ 1094.989846] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1094.989870] [   T5574] CPU: 19 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1094.989874] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1094.989875] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1094.989876] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1094.989879] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1094.989883] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1094.989886] [   T5574] RSP: 0018:ffffa3dc8a4a3bf0 EFLAGS: 00010246
[ 1094.989888] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[ 1094.989890] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7680
[ 1094.989891] [   T5574] RBP: ffffa3dc8a4a3c00 R08: ffffa3dc8a4a3cd4 R09: ffffa3dc8a4a3cd0
[ 1094.989893] [   T5574] R10: 00000000000001af R11: 0000000000000bfb R12: ffff938d412ed3e8
[ 1094.989894] [   T5574] R13: ffff938d412ed0c8 R14: 0000000000000001 R15: ffff938d42d30358
[ 1094.989896] [   T5574] FS:  0000000000000000(0000) GS:ffff939518f31000(0000) knlGS:0000000000000000
[ 1094.989898] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1094.989900] [   T5574] CR2: 00007f68b4f8a010 CR3: 000000011d4a4004 CR4: 0000000000770ef0
[ 1094.989901] [   T5574] PKRU: 55555554
[ 1094.989903] [   T5574] Call Trace:
[ 1094.989904] [   T5574]  <TASK>
[ 1094.989906] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1094.989910] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1094.989912] [   T5574]  tb_tunnel_dp+0x4c0/0x9f0
[ 1094.989915] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1094.989917] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1094.989919] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1094.989922] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1094.989925] [   T5574]  worker_thread+0x2ee/0x390
[ 1094.989928] [   T5574]  kthread+0x237/0x250
[ 1094.989930] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1094.989933] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.989935] [   T5574]  ret_from_fork+0xc0/0x550
[ 1094.989938] [   T5574]  ? __switch_to+0x134/0x460
[ 1094.989940] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.989942] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1094.989947] [   T5574]  </TASK>
[ 1094.989948] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1094.989965] [   T5574] ------------[ cut here ]------------
[ 1094.989966] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#19: kworker/u80:53/5574
[ 1094.989971] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1094.989991] [   T5574] CPU: 19 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1094.989994] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1094.989995] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1094.989997] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1094.989999] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1094.990002] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1094.990004] [   T5574] RSP: 0018:ffffa3dc8a4a3bf0 EFLAGS: 00010246
[ 1094.990006] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[ 1094.990007] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[ 1094.990009] [   T5574] RBP: ffffa3dc8a4a3c00 R08: ffffa3dc8a4a3cd4 R09: ffffa3dc8a4a3cd0
[ 1094.990010] [   T5574] R10: 00000000000001af R11: 0000000000000bfb R12: ffff938d412ed3e8
[ 1094.990012] [   T5574] R13: ffff938d412ed0c8 R14: 0000000000000002 R15: ffff938d42d30358
[ 1094.990013] [   T5574] FS:  0000000000000000(0000) GS:ffff939518f31000(0000) knlGS:0000000000000000
[ 1094.990015] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1094.990016] [   T5574] CR2: 00007f68b4f8a010 CR3: 000000011d4a4004 CR4: 0000000000770ef0
[ 1094.990018] [   T5574] PKRU: 55555554
[ 1094.990019] [   T5574] Call Trace:
[ 1094.990020] [   T5574]  <TASK>
[ 1094.990021] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1094.990024] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1094.990026] [   T5574]  tb_tunnel_dp+0x4c0/0x9f0
[ 1094.990029] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1094.990031] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1094.990033] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1094.990035] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1094.990038] [   T5574]  worker_thread+0x2ee/0x390
[ 1094.990041] [   T5574]  kthread+0x237/0x250
[ 1094.990043] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1094.990046] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.990048] [   T5574]  ret_from_fork+0xc0/0x550
[ 1094.990051] [   T5574]  ? __switch_to+0x134/0x460
[ 1094.990053] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.990055] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1094.990059] [   T5574]  </TASK>
[ 1094.990060] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1094.990086] [   T5574] ------------[ cut here ]------------
[ 1094.990087] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#19: kworker/u80:53/5574
[ 1094.990092] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1094.990113] [   T5574] CPU: 19 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1094.990116] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1094.990118] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1094.990119] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1094.990121] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1094.990125] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1094.990127] [   T5574] RSP: 0018:ffffa3dc8a4a3bf0 EFLAGS: 00010246
[ 1094.990129] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[ 1094.990131] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[ 1094.990132] [   T5574] RBP: ffffa3dc8a4a3c00 R08: ffffa3dc8a4a3cd4 R09: ffffa3dc8a4a3cd0
[ 1094.990134] [   T5574] R10: 00000000000001af R11: 0000000000000bfb R12: ffff938d412ed3e8
[ 1094.990136] [   T5574] R13: ffff938d412ed0c8 R14: 0000000000000003 R15: ffff938d42d30358
[ 1094.990137] [   T5574] FS:  0000000000000000(0000) GS:ffff939518f31000(0000) knlGS:0000000000000000
[ 1094.990139] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1094.990141] [   T5574] CR2: 00007f68b4f8a010 CR3: 000000011d4a4004 CR4: 0000000000770ef0
[ 1094.990142] [   T5574] PKRU: 55555554
[ 1094.990144] [   T5574] Call Trace:
[ 1094.990145] [   T5574]  <TASK>
[ 1094.990146] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1094.990149] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1094.990152] [   T5574]  tb_tunnel_dp+0x4c0/0x9f0
[ 1094.990155] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1094.990157] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1094.990159] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1094.990161] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1094.990165] [   T5574]  worker_thread+0x2ee/0x390
[ 1094.990168] [   T5574]  kthread+0x237/0x250
[ 1094.990170] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1094.990173] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.990175] [   T5574]  ret_from_fork+0xc0/0x550
[ 1094.990178] [   T5574]  ? __switch_to+0x134/0x460
[ 1094.990180] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.990183] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1094.990187] [   T5574]  </TASK>
[ 1094.990188] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1094.992931] [   T5574] ------------[ cut here ]------------
[ 1094.992935] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#18: kworker/u80:53/5574
[ 1094.992944] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1094.992968] [   T5574] CPU: 18 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1094.992973] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1094.992974] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1094.992976] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1094.992979] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1094.992983] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1094.992986] [   T5574] RSP: 0018:ffffa3dc8a4a3bf0 EFLAGS: 00010246
[ 1094.992989] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[ 1094.992991] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7680
[ 1094.992993] [   T5574] RBP: ffffa3dc8a4a3c00 R08: ffffa3dc8a4a3cd4 R09: ffffa3dc8a4a3cd0
[ 1094.992994] [   T5574] R10: 000000000000002b R11: 00000000000007ce R12: ffff938d412ed3e8
[ 1094.992996] [   T5574] R13: ffff938d999180c8 R14: 0000000000000001 R15: ffff938d42d30358
[ 1094.992998] [   T5574] FS:  0000000000000000(0000) GS:ffff939518ef1000(0000) knlGS:0000000000000000
[ 1094.993000] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1094.993002] [   T5574] CR2: 00007f1b97f4c000 CR3: 000000011d4a4005 CR4: 0000000000770ef0
[ 1094.993004] [   T5574] PKRU: 55555554
[ 1094.993005] [   T5574] Call Trace:
[ 1094.993007] [   T5574]  <TASK>
[ 1094.993009] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1094.993013] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1094.993016] [   T5574]  tb_tunnel_dp+0x4c0/0x9f0
[ 1094.993019] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1094.993021] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1094.993023] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1094.993026] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1094.993029] [   T5574]  worker_thread+0x2ee/0x390
[ 1094.993032] [   T5574]  kthread+0x237/0x250
[ 1094.993034] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1094.993037] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.993039] [   T5574]  ret_from_fork+0xc0/0x550
[ 1094.993043] [   T5574]  ? __switch_to+0x134/0x460
[ 1094.993045] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.993047] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1094.993051] [   T5574]  </TASK>
[ 1094.993052] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1094.993084] [   T5574] ------------[ cut here ]------------
[ 1094.993085] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#18: kworker/u80:53/5574
[ 1094.993091] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1094.993111] [   T5574] CPU: 18 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1094.993115] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1094.993116] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1094.993117] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1094.993120] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1094.993123] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1094.993125] [   T5574] RSP: 0018:ffffa3dc8a4a3bf0 EFLAGS: 00010246
[ 1094.993127] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[ 1094.993129] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[ 1094.993130] [   T5574] RBP: ffffa3dc8a4a3c00 R08: ffffa3dc8a4a3cd4 R09: ffffa3dc8a4a3cd0
[ 1094.993132] [   T5574] R10: 000000000000002b R11: 00000000000007ce R12: ffff938d412ed3e8
[ 1094.993133] [   T5574] R13: ffff938d999180c8 R14: 0000000000000002 R15: ffff938d42d30358
[ 1094.993135] [   T5574] FS:  0000000000000000(0000) GS:ffff939518ef1000(0000) knlGS:0000000000000000
[ 1094.993136] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1094.993138] [   T5574] CR2: 00007f1b97f4c000 CR3: 000000011d4a4005 CR4: 0000000000770ef0
[ 1094.993140] [   T5574] PKRU: 55555554
[ 1094.993141] [   T5574] Call Trace:
[ 1094.993142] [   T5574]  <TASK>
[ 1094.993143] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1094.993146] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1094.993149] [   T5574]  tb_tunnel_dp+0x4c0/0x9f0
[ 1094.993151] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1094.993153] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1094.993155] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1094.993157] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1094.993160] [   T5574]  worker_thread+0x2ee/0x390
[ 1094.993163] [   T5574]  kthread+0x237/0x250
[ 1094.993165] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1094.993167] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.993169] [   T5574]  ret_from_fork+0xc0/0x550
[ 1094.993172] [   T5574]  ? __switch_to+0x134/0x460
[ 1094.993174] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.993176] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1094.993180] [   T5574]  </TASK>
[ 1094.993181] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1094.993197] [   T5574] ------------[ cut here ]------------
[ 1094.993198] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#18: kworker/u80:53/5574
[ 1094.993203] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1094.993222] [   T5574] CPU: 18 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1094.993225] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1094.993226] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1094.993227] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1094.993229] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1094.993233] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1094.993234] [   T5574] RSP: 0018:ffffa3dc8a4a3bf0 EFLAGS: 00010246
[ 1094.993236] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[ 1094.993237] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[ 1094.993239] [   T5574] RBP: ffffa3dc8a4a3c00 R08: ffffa3dc8a4a3cd4 R09: ffffa3dc8a4a3cd0
[ 1094.993240] [   T5574] R10: 000000000000002b R11: 00000000000007ce R12: ffff938d412ed3e8
[ 1094.993241] [   T5574] R13: ffff938d999180c8 R14: 0000000000000003 R15: ffff938d42d30358
[ 1094.993243] [   T5574] FS:  0000000000000000(0000) GS:ffff939518ef1000(0000) knlGS:0000000000000000
[ 1094.993244] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1094.993246] [   T5574] CR2: 00007f1b97f4c000 CR3: 000000011d4a4005 CR4: 0000000000770ef0
[ 1094.993247] [   T5574] PKRU: 55555554
[ 1094.993248] [   T5574] Call Trace:
[ 1094.993249] [   T5574]  <TASK>
[ 1094.993250] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1094.993253] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1094.993255] [   T5574]  tb_tunnel_dp+0x4c0/0x9f0
[ 1094.993257] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1094.993259] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1094.993261] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1094.993263] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1094.993266] [   T5574]  worker_thread+0x2ee/0x390
[ 1094.993269] [   T5574]  kthread+0x237/0x250
[ 1094.993271] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1094.993273] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.993275] [   T5574]  ret_from_fork+0xc0/0x550
[ 1094.993278] [   T5574]  ? __switch_to+0x134/0x460
[ 1094.993280] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.993282] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1094.993286] [   T5574]  </TASK>
[ 1094.993287] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1094.994553] [   T5574] ------------[ cut here ]------------
[ 1094.994556] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#18: kworker/u80:53/5574
[ 1094.994564] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1094.994596] [   T5574] CPU: 18 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1094.994602] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1094.994603] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1094.994605] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1094.994608] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1094.994612] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1094.994615] [   T5574] RSP: 0018:ffffa3dc8a4a3b90 EFLAGS: 00010246
[ 1094.994618] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[ 1094.994620] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7680
[ 1094.994622] [   T5574] RBP: ffffa3dc8a4a3ba0 R08: ffffa3dc8a4a3c74 R09: ffffa3dc8a4a3c70
[ 1094.994623] [   T5574] R10: 00000000000002d7 R11: 0000000000000400 R12: ffff938d412ed960
[ 1094.994625] [   T5574] R13: ffff938d412ed0c8 R14: 0000000000000001 R15: ffff938d42d30358
[ 1094.994626] [   T5574] FS:  0000000000000000(0000) GS:ffff939518ef1000(0000) knlGS:0000000000000000
[ 1094.994629] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1094.994633] [   T5574] CR2: 00007f1b97f4c000 CR3: 000000011d4a4005 CR4: 0000000000770ef0
[ 1094.994635] [   T5574] PKRU: 55555554
[ 1094.994635] [   T5574] Call Trace:
[ 1094.994637] [   T5574]  <TASK>
[ 1094.994639] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1094.994643] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1094.994647] [   T5574]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1094.994650] [   T5574]  tb_tunnel_dp+0x4f3/0x9f0
[ 1094.994652] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1094.994655] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1094.994656] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1094.994660] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1094.994665] [   T5574]  worker_thread+0x2ee/0x390
[ 1094.994668] [   T5574]  kthread+0x237/0x250
[ 1094.994670] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1094.994673] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.994675] [   T5574]  ret_from_fork+0xc0/0x550
[ 1094.994678] [   T5574]  ? __switch_to+0x134/0x460
[ 1094.994681] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.994684] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1094.994689] [   T5574]  </TASK>
[ 1094.994690] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1094.994726] [   T5574] ------------[ cut here ]------------
[ 1094.994726] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#18: kworker/u80:53/5574
[ 1094.994732] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1094.994748] [   T5574] CPU: 18 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1094.994752] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1094.994753] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1094.994754] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1094.994757] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1094.994760] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1094.994762] [   T5574] RSP: 0018:ffffa3dc8a4a3b90 EFLAGS: 00010246
[ 1094.994764] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[ 1094.994765] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[ 1094.994766] [   T5574] RBP: ffffa3dc8a4a3ba0 R08: ffffa3dc8a4a3c74 R09: ffffa3dc8a4a3c70
[ 1094.994767] [   T5574] R10: 00000000000002d7 R11: 0000000000000400 R12: ffff938d412ed960
[ 1094.994768] [   T5574] R13: ffff938d412ed0c8 R14: 0000000000000002 R15: ffff938d42d30358
[ 1094.994770] [   T5574] FS:  0000000000000000(0000) GS:ffff939518ef1000(0000) knlGS:0000000000000000
[ 1094.994772] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1094.994773] [   T5574] CR2: 00007f1b97f4c000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1094.994775] [   T5574] PKRU: 55555554
[ 1094.994776] [   T5574] Call Trace:
[ 1094.994777] [   T5574]  <TASK>
[ 1094.994778] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1094.994780] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1094.994785] [   T5574]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1094.994787] [   T5574]  tb_tunnel_dp+0x4f3/0x9f0
[ 1094.994790] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1094.994792] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1094.994793] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1094.994795] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1094.994800] [   T5574]  worker_thread+0x2ee/0x390
[ 1094.994803] [   T5574]  kthread+0x237/0x250
[ 1094.994805] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1094.994807] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.994809] [   T5574]  ret_from_fork+0xc0/0x550
[ 1094.994811] [   T5574]  ? __switch_to+0x134/0x460
[ 1094.994814] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.994815] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1094.994819] [   T5574]  </TASK>
[ 1094.994820] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1094.994836] [   T5574] ------------[ cut here ]------------
[ 1094.994837] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#18: kworker/u80:53/5574
[ 1094.994841] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1094.994863] [   T5574] CPU: 18 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1094.994866] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1094.994867] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1094.994868] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1094.994870] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1094.994873] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1094.994875] [   T5574] RSP: 0018:ffffa3dc8a4a3b90 EFLAGS: 00010246
[ 1094.994876] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[ 1094.994878] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[ 1094.994879] [   T5574] RBP: ffffa3dc8a4a3ba0 R08: ffffa3dc8a4a3c74 R09: ffffa3dc8a4a3c70
[ 1094.994880] [   T5574] R10: 00000000000002d7 R11: 0000000000000400 R12: ffff938d412ed960
[ 1094.994883] [   T5574] R13: ffff938d412ed0c8 R14: 0000000000000003 R15: ffff938d42d30358
[ 1094.994884] [   T5574] FS:  0000000000000000(0000) GS:ffff939518ef1000(0000) knlGS:0000000000000000
[ 1094.994886] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1094.994887] [   T5574] CR2: 00007f1b97f4c000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1094.994888] [   T5574] PKRU: 55555554
[ 1094.994889] [   T5574] Call Trace:
[ 1094.994889] [   T5574]  <TASK>
[ 1094.994890] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1094.994892] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1094.994895] [   T5574]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1094.994899] [   T5574]  tb_tunnel_dp+0x4f3/0x9f0
[ 1094.994901] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1094.994903] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1094.994904] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1094.994906] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1094.994909] [   T5574]  worker_thread+0x2ee/0x390
[ 1094.994913] [   T5574]  kthread+0x237/0x250
[ 1094.994915] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1094.994917] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.994919] [   T5574]  ret_from_fork+0xc0/0x550
[ 1094.994921] [   T5574]  ? __switch_to+0x134/0x460
[ 1094.994924] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.994927] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1094.994931] [   T5574]  </TASK>
[ 1094.994931] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1094.995774] [   T5574] ------------[ cut here ]------------
[ 1094.995776] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#18: kworker/u80:53/5574
[ 1094.995782] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1094.995802] [   T5574] CPU: 18 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1094.995806] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1094.995807] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1094.995808] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1094.995810] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1094.995814] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1094.995818] [   T5574] RSP: 0000:ffffa3dc8a4a3b90 EFLAGS: 00010246
[ 1094.995820] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[ 1094.995821] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7680
[ 1094.995822] [   T5574] RBP: ffffa3dc8a4a3ba0 R08: ffffa3dc8a4a3c74 R09: ffffa3dc8a4a3c70
[ 1094.995824] [   T5574] R10: 000000000000037f R11: 00000000000007ca R12: ffff938d412ed960
[ 1094.995825] [   T5574] R13: ffff938d999180c8 R14: 0000000000000001 R15: ffff938d42d30358
[ 1094.995829] [   T5574] FS:  0000000000000000(0000) GS:ffff939518ef1000(0000) knlGS:0000000000000000
[ 1094.995830] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1094.995832] [   T5574] CR2: 00007f1b4eeaa000 CR3: 000000011d4a4005 CR4: 0000000000770ef0
[ 1094.995833] [   T5574] PKRU: 55555554
[ 1094.995834] [   T5574] Call Trace:
[ 1094.995835] [   T5574]  <TASK>
[ 1094.995836] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1094.995839] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1094.995842] [   T5574]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1094.995844] [   T5574]  tb_tunnel_dp+0x4f3/0x9f0
[ 1094.995847] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1094.995849] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1094.995851] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1094.995853] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1094.995855] [   T5574]  worker_thread+0x2ee/0x390
[ 1094.995858] [   T5574]  kthread+0x237/0x250
[ 1094.995860] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1094.995862] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.995864] [   T5574]  ret_from_fork+0xc0/0x550
[ 1094.995866] [   T5574]  ? __switch_to+0x134/0x460
[ 1094.995868] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.995870] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1094.995874] [   T5574]  </TASK>
[ 1094.995875] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1094.995892] [   T5574] ------------[ cut here ]------------
[ 1094.995892] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#18: kworker/u80:53/5574
[ 1094.995896] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1094.995916] [   T5574] CPU: 18 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1094.995919] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1094.995920] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1094.995921] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1094.995922] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1094.995925] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1094.995927] [   T5574] RSP: 0000:ffffa3dc8a4a3b90 EFLAGS: 00010246
[ 1094.995928] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[ 1094.995930] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[ 1094.995931] [   T5574] RBP: ffffa3dc8a4a3ba0 R08: ffffa3dc8a4a3c74 R09: ffffa3dc8a4a3c70
[ 1094.995932] [   T5574] R10: 000000000000037f R11: 00000000000007ca R12: ffff938d412ed960
[ 1094.995933] [   T5574] R13: ffff938d999180c8 R14: 0000000000000002 R15: ffff938d42d30358
[ 1094.995934] [   T5574] FS:  0000000000000000(0000) GS:ffff939518ef1000(0000) knlGS:0000000000000000
[ 1094.995935] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1094.995936] [   T5574] CR2: 00007f1b4eeaa000 CR3: 000000011d4a4005 CR4: 0000000000770ef0
[ 1094.995938] [   T5574] PKRU: 55555554
[ 1094.995939] [   T5574] Call Trace:
[ 1094.995939] [   T5574]  <TASK>
[ 1094.995940] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1094.995942] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1094.995945] [   T5574]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1094.995948] [   T5574]  tb_tunnel_dp+0x4f3/0x9f0
[ 1094.995950] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1094.995952] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1094.995954] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1094.995956] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1094.995958] [   T5574]  worker_thread+0x2ee/0x390
[ 1094.995963] [   T5574]  kthread+0x237/0x250
[ 1094.995964] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1094.995966] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.995968] [   T5574]  ret_from_fork+0xc0/0x550
[ 1094.995971] [   T5574]  ? __switch_to+0x134/0x460
[ 1094.995973] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.995974] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1094.995978] [   T5574]  </TASK>
[ 1094.995979] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1094.995996] [   T5574] ------------[ cut here ]------------
[ 1094.995996] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#18: kworker/u80:53/5574
[ 1094.996002] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1094.996021] [   T5574] CPU: 18 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1094.996023] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1094.996025] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1094.996026] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1094.996028] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1094.996031] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1094.996032] [   T5574] RSP: 0000:ffffa3dc8a4a3b90 EFLAGS: 00010246
[ 1094.996034] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[ 1094.996035] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[ 1094.996036] [   T5574] RBP: ffffa3dc8a4a3ba0 R08: ffffa3dc8a4a3c74 R09: ffffa3dc8a4a3c70
[ 1094.996037] [   T5574] R10: 000000000000037f R11: 00000000000007ca R12: ffff938d412ed960
[ 1094.996039] [   T5574] R13: ffff938d999180c8 R14: 0000000000000003 R15: ffff938d42d30358
[ 1094.996040] [   T5574] FS:  0000000000000000(0000) GS:ffff939518ef1000(0000) knlGS:0000000000000000
[ 1094.996042] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1094.996043] [   T5574] CR2: 00007f1b4eeaa000 CR3: 000000011d4a4005 CR4: 0000000000770ef0
[ 1094.996044] [   T5574] PKRU: 55555554
[ 1094.996044] [   T5574] Call Trace:
[ 1094.996045] [   T5574]  <TASK>
[ 1094.996046] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1094.996048] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1094.996051] [   T5574]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1094.996053] [   T5574]  tb_tunnel_dp+0x4f3/0x9f0
[ 1094.996055] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1094.996057] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1094.996059] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1094.996061] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1094.996063] [   T5574]  worker_thread+0x2ee/0x390
[ 1094.996078] [   T5574]  kthread+0x237/0x250
[ 1094.996080] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1094.996083] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.996084] [   T5574]  ret_from_fork+0xc0/0x550
[ 1094.996087] [   T5574]  ? __switch_to+0x134/0x460
[ 1094.996089] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1094.996090] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1094.996094] [   T5574]  </TASK>
[ 1094.996095] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1095.002500] [   T5574] ------------[ cut here ]------------
[ 1095.002503] [   T5574] WARNING: drivers/thunderbolt/tb.c:1598 at tb_attach_bandwidth_group+0x1da/0x260, CPU#16: kworker/u80:53/5574
[ 1095.002510] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1095.002532] [   T5574] CPU: 16 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1095.002537] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1095.002538] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1095.002539] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1095.002542] [   T5574] RIP: 0010:tb_attach_bandwidth_group+0x1da/0x260
[ 1095.002545] [   T5574] Code: e1 ff ff ff 7f 48 c1 e1 20 8b 90 08 03 00 00 48 09 ca 0f b6 4e 50 48 c7 c6 c8 47 24 95 e8 ae ca 0d ff 31 c0 eb b4 0f 0b eb b0 <0f> 0b eb ac 48 8b 4e 20 48 8b 91 38 03 00 00 48 8b ba 20 03 00 00
[ 1095.002547] [   T5574] RSP: 0018:ffffa3dc8a4a3d08 EFLAGS: 00010286
[ 1095.002550] [   T5574] RAX: ffff938d42d303d8 RBX: ffff938d99918af0 RCX: ffff938d59164c80
[ 1095.002551] [   T5574] RDX: ffff938d99918af0 RSI: ffff938d412ed4b0 RDI: ffff938d42d30358
[ 1095.002552] [   T5574] RBP: ffffa3dc8a4a3d10 R08: ffff938d44d51000 R09: ffff938d56ac3200
[ 1095.002554] [   T5574] R10: 000000000000018c R11: 0000000000000400 R12: ffff938d42d30368
[ 1095.002555] [   T5574] R13: ffff938d412ed538 R14: ffff938d412ed4b0 R15: ffff938d99918b78
[ 1095.002557] [   T5574] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1095.002559] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1095.002561] [   T5574] CR2: 00007f8792095000 CR3: 000000018aa0d005 CR4: 0000000000770ef0
[ 1095.002563] [   T5574] PKRU: 55555554
[ 1095.002564] [   T5574] Call Trace:
[ 1095.002565] [   T5574]  <TASK>
[ 1095.002567] [   T5574]  tb_tunnel_dp+0x476/0x9f0
[ 1095.002570] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1095.002573] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1095.002574] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1095.002577] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1095.002580] [   T5574]  worker_thread+0x2ee/0x390
[ 1095.002582] [   T5574]  kthread+0x237/0x250
[ 1095.002584] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1095.002587] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.002589] [   T5574]  ret_from_fork+0xc0/0x550
[ 1095.002591] [   T5574]  ? __switch_to+0x134/0x460
[ 1095.002594] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.002595] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1095.002599] [   T5574]  </TASK>
[ 1095.002600] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1095.005297] [   T5574] ------------[ cut here ]------------
[ 1095.005298] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:53/5574
[ 1095.005304] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1095.005323] [   T5574] CPU: 16 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1095.005327] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1095.005328] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1095.005329] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1095.005331] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1095.005335] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1095.005337] [   T5574] RSP: 0018:ffffa3dc8a4a3bf0 EFLAGS: 00010246
[ 1095.005339] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[ 1095.005340] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7680
[ 1095.005342] [   T5574] RBP: ffffa3dc8a4a3c00 R08: ffffa3dc8a4a3cd4 R09: ffffa3dc8a4a3cd0
[ 1095.005343] [   T5574] R10: 00000000000000c5 R11: 0000000000000400 R12: ffff938d412ed4b0
[ 1095.005344] [   T5574] R13: ffff938d412ed0c8 R14: 0000000000000001 R15: ffff938d42d30358
[ 1095.005345] [   T5574] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1095.005347] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1095.005349] [   T5574] CR2: 00007f8792095000 CR3: 000000018aa0d005 CR4: 0000000000770ef0
[ 1095.005350] [   T5574] PKRU: 55555554
[ 1095.005351] [   T5574] Call Trace:
[ 1095.005352] [   T5574]  <TASK>
[ 1095.005354] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1095.005357] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1095.005359] [   T5574]  tb_tunnel_dp+0x4c0/0x9f0
[ 1095.005362] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1095.005363] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1095.005365] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1095.005367] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1095.005370] [   T5574]  worker_thread+0x2ee/0x390
[ 1095.005372] [   T5574]  kthread+0x237/0x250
[ 1095.005376] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1095.005379] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.005381] [   T5574]  ret_from_fork+0xc0/0x550
[ 1095.005383] [   T5574]  ? __switch_to+0x134/0x460
[ 1095.005385] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.005387] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1095.005391] [   T5574]  </TASK>
[ 1095.005392] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1095.005406] [   T5574] ------------[ cut here ]------------
[ 1095.005407] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:53/5574
[ 1095.005411] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1095.005428] [   T5574] CPU: 16 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1095.005432] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1095.005432] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1095.005433] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1095.005435] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1095.005438] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1095.005440] [   T5574] RSP: 0018:ffffa3dc8a4a3bf0 EFLAGS: 00010246
[ 1095.005441] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[ 1095.005442] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[ 1095.005444] [   T5574] RBP: ffffa3dc8a4a3c00 R08: ffffa3dc8a4a3cd4 R09: ffffa3dc8a4a3cd0
[ 1095.005445] [   T5574] R10: 00000000000000c5 R11: 0000000000000400 R12: ffff938d412ed4b0
[ 1095.005446] [   T5574] R13: ffff938d412ed0c8 R14: 0000000000000002 R15: ffff938d42d30358
[ 1095.005447] [   T5574] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1095.005449] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1095.005450] [   T5574] CR2: 00007f8792095000 CR3: 000000018aa0d005 CR4: 0000000000770ef0
[ 1095.005452] [   T5574] PKRU: 55555554
[ 1095.005452] [   T5574] Call Trace:
[ 1095.005453] [   T5574]  <TASK>
[ 1095.005454] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1095.005456] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1095.005459] [   T5574]  tb_tunnel_dp+0x4c0/0x9f0
[ 1095.005461] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1095.005463] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1095.005464] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1095.005466] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1095.005469] [   T5574]  worker_thread+0x2ee/0x390
[ 1095.005471] [   T5574]  kthread+0x237/0x250
[ 1095.005473] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1095.005475] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.005477] [   T5574]  ret_from_fork+0xc0/0x550
[ 1095.005479] [   T5574]  ? __switch_to+0x134/0x460
[ 1095.005481] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.005483] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1095.005486] [   T5574]  </TASK>
[ 1095.005487] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1095.005501] [   T5574] ------------[ cut here ]------------
[ 1095.005502] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:53/5574
[ 1095.005506] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1095.005522] [   T5574] CPU: 16 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1095.005525] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1095.005526] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1095.005527] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1095.005528] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1095.005531] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1095.005533] [   T5574] RSP: 0018:ffffa3dc8a4a3bf0 EFLAGS: 00010246
[ 1095.005534] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[ 1095.005535] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[ 1095.005536] [   T5574] RBP: ffffa3dc8a4a3c00 R08: ffffa3dc8a4a3cd4 R09: ffffa3dc8a4a3cd0
[ 1095.005538] [   T5574] R10: 00000000000000c5 R11: 0000000000000400 R12: ffff938d412ed4b0
[ 1095.005539] [   T5574] R13: ffff938d412ed0c8 R14: 0000000000000003 R15: ffff938d42d30358
[ 1095.005540] [   T5574] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1095.005542] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1095.005543] [   T5574] CR2: 00007f8792095000 CR3: 000000018aa0d005 CR4: 0000000000770ef0
[ 1095.005544] [   T5574] PKRU: 55555554
[ 1095.005545] [   T5574] Call Trace:
[ 1095.005545] [   T5574]  <TASK>
[ 1095.005546] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1095.005549] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1095.005551] [   T5574]  tb_tunnel_dp+0x4c0/0x9f0
[ 1095.005553] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1095.005555] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1095.005556] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1095.005558] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1095.005561] [   T5574]  worker_thread+0x2ee/0x390
[ 1095.005563] [   T5574]  kthread+0x237/0x250
[ 1095.005565] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1095.005567] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.005569] [   T5574]  ret_from_fork+0xc0/0x550
[ 1095.005571] [   T5574]  ? __switch_to+0x134/0x460
[ 1095.005573] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.005575] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1095.005578] [   T5574]  </TASK>
[ 1095.005579] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1095.006053] [   T5574] ------------[ cut here ]------------
[ 1095.006054] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:53/5574
[ 1095.006058] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1095.006083] [   T5574] CPU: 16 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1095.006086] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1095.006087] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1095.006088] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1095.006090] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1095.006093] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1095.006095] [   T5574] RSP: 0018:ffffa3dc8a4a3bf0 EFLAGS: 00010246
[ 1095.006097] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[ 1095.006098] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7680
[ 1095.006099] [   T5574] RBP: ffffa3dc8a4a3c00 R08: ffffa3dc8a4a3cd4 R09: ffffa3dc8a4a3cd0
[ 1095.006101] [   T5574] R10: 0000000000000002 R11: 0000000000000400 R12: ffff938d412ed4b0
[ 1095.006102] [   T5574] R13: ffff938d999180c8 R14: 0000000000000001 R15: ffff938d42d30358
[ 1095.006103] [   T5574] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1095.006105] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1095.006106] [   T5574] CR2: 00007f8792095000 CR3: 000000018aa0d005 CR4: 0000000000770ef0
[ 1095.006107] [   T5574] PKRU: 55555554
[ 1095.006108] [   T5574] Call Trace:
[ 1095.006110] [   T5574]  <TASK>
[ 1095.006111] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1095.006114] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1095.006116] [   T5574]  tb_tunnel_dp+0x4c0/0x9f0
[ 1095.006118] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1095.006120] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1095.006122] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1095.006123] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1095.006126] [   T5574]  worker_thread+0x2ee/0x390
[ 1095.006129] [   T5574]  kthread+0x237/0x250
[ 1095.006131] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1095.006133] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.006135] [   T5574]  ret_from_fork+0xc0/0x550
[ 1095.006137] [   T5574]  ? __switch_to+0x134/0x460
[ 1095.006139] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.006141] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1095.006145] [   T5574]  </TASK>
[ 1095.006146] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1095.006160] [   T5574] ------------[ cut here ]------------
[ 1095.006161] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:53/5574
[ 1095.006165] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1095.006182] [   T5574] CPU: 16 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1095.006184] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1095.006185] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1095.006186] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1095.006188] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1095.006191] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1095.006192] [   T5574] RSP: 0018:ffffa3dc8a4a3bf0 EFLAGS: 00010246
[ 1095.006194] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[ 1095.006195] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[ 1095.006196] [   T5574] RBP: ffffa3dc8a4a3c00 R08: ffffa3dc8a4a3cd4 R09: ffffa3dc8a4a3cd0
[ 1095.006197] [   T5574] R10: 0000000000000002 R11: 0000000000000400 R12: ffff938d412ed4b0
[ 1095.006198] [   T5574] R13: ffff938d999180c8 R14: 0000000000000002 R15: ffff938d42d30358
[ 1095.006199] [   T5574] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1095.006201] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1095.006202] [   T5574] CR2: 00007f8792095000 CR3: 000000018aa0d005 CR4: 0000000000770ef0
[ 1095.006203] [   T5574] PKRU: 55555554
[ 1095.006204] [   T5574] Call Trace:
[ 1095.006205] [   T5574]  <TASK>
[ 1095.006206] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1095.006208] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1095.006211] [   T5574]  tb_tunnel_dp+0x4c0/0x9f0
[ 1095.006213] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1095.006214] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1095.006216] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1095.006218] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1095.006220] [   T5574]  worker_thread+0x2ee/0x390
[ 1095.006223] [   T5574]  kthread+0x237/0x250
[ 1095.006225] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1095.006227] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.006228] [   T5574]  ret_from_fork+0xc0/0x550
[ 1095.006231] [   T5574]  ? __switch_to+0x134/0x460
[ 1095.006233] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.006235] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1095.006238] [   T5574]  </TASK>
[ 1095.006239] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1095.006254] [   T5574] ------------[ cut here ]------------
[ 1095.006255] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:53/5574
[ 1095.006259] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1095.006280] [   T5574] CPU: 16 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1095.006283] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1095.006284] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1095.006285] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1095.006287] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1095.006290] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1095.006292] [   T5574] RSP: 0018:ffffa3dc8a4a3bf0 EFLAGS: 00010246
[ 1095.006293] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[ 1095.006295] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[ 1095.006296] [   T5574] RBP: ffffa3dc8a4a3c00 R08: ffffa3dc8a4a3cd4 R09: ffffa3dc8a4a3cd0
[ 1095.006297] [   T5574] R10: 0000000000000002 R11: 0000000000000400 R12: ffff938d412ed4b0
[ 1095.006299] [   T5574] R13: ffff938d999180c8 R14: 0000000000000003 R15: ffff938d42d30358
[ 1095.006300] [   T5574] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1095.006301] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1095.006303] [   T5574] CR2: 00007f8792095000 CR3: 000000018aa0d005 CR4: 0000000000770ef0
[ 1095.006304] [   T5574] PKRU: 55555554
[ 1095.006305] [   T5574] Call Trace:
[ 1095.006306] [   T5574]  <TASK>
[ 1095.006307] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1095.006310] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1095.006312] [   T5574]  tb_tunnel_dp+0x4c0/0x9f0
[ 1095.006314] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1095.006316] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1095.006318] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1095.006320] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1095.006323] [   T5574]  worker_thread+0x2ee/0x390
[ 1095.006325] [   T5574]  kthread+0x237/0x250
[ 1095.006327] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1095.006329] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.006331] [   T5574]  ret_from_fork+0xc0/0x550
[ 1095.006334] [   T5574]  ? __switch_to+0x134/0x460
[ 1095.006336] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.006338] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1095.006341] [   T5574]  </TASK>
[ 1095.006342] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1095.006969] [   T5574] ------------[ cut here ]------------
[ 1095.006970] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:53/5574
[ 1095.006974] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1095.006993] [   T5574] CPU: 16 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1095.006996] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1095.006997] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1095.006999] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1095.007001] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1095.007004] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1095.007005] [   T5574] RSP: 0018:ffffa3dc8a4a3b90 EFLAGS: 00010246
[ 1095.007007] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[ 1095.007008] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7680
[ 1095.007009] [   T5574] RBP: ffffa3dc8a4a3ba0 R08: ffffa3dc8a4a3c74 R09: ffffa3dc8a4a3c70
[ 1095.007010] [   T5574] R10: 0000000000000283 R11: 0000000000000400 R12: ffff938d412ed960
[ 1095.007013] [   T5574] R13: ffff938d412ed0c8 R14: 0000000000000001 R15: ffff938d42d30358
[ 1095.007014] [   T5574] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1095.007015] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1095.007016] [   T5574] CR2: 00007f8792095000 CR3: 000000018aa0d005 CR4: 0000000000770ef0
[ 1095.007017] [   T5574] PKRU: 55555554
[ 1095.007018] [   T5574] Call Trace:
[ 1095.007019] [   T5574]  <TASK>
[ 1095.007020] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1095.007022] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1095.007024] [   T5574]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1095.007027] [   T5574]  tb_tunnel_dp+0x4f3/0x9f0
[ 1095.007029] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1095.007031] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1095.007032] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1095.007034] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1095.007036] [   T5574]  worker_thread+0x2ee/0x390
[ 1095.007039] [   T5574]  kthread+0x237/0x250
[ 1095.007040] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1095.007042] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.007044] [   T5574]  ret_from_fork+0xc0/0x550
[ 1095.007046] [   T5574]  ? __switch_to+0x134/0x460
[ 1095.007048] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.007049] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1095.007053] [   T5574]  </TASK>
[ 1095.007054] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1095.007076] [   T5574] ------------[ cut here ]------------
[ 1095.007077] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:53/5574
[ 1095.007081] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1095.007097] [   T5574] CPU: 16 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1095.007099] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1095.007100] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1095.007102] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1095.007104] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1095.007107] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1095.007108] [   T5574] RSP: 0018:ffffa3dc8a4a3b90 EFLAGS: 00010246
[ 1095.007109] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[ 1095.007111] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[ 1095.007111] [   T5574] RBP: ffffa3dc8a4a3ba0 R08: ffffa3dc8a4a3c74 R09: ffffa3dc8a4a3c70
[ 1095.007113] [   T5574] R10: 0000000000000283 R11: 0000000000000400 R12: ffff938d412ed960
[ 1095.007114] [   T5574] R13: ffff938d412ed0c8 R14: 0000000000000002 R15: ffff938d42d30358
[ 1095.007118] [   T5574] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1095.007120] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1095.007121] [   T5574] CR2: 00007f8792095000 CR3: 000000018aa0d005 CR4: 0000000000770ef0
[ 1095.007122] [   T5574] PKRU: 55555554
[ 1095.007123] [   T5574] Call Trace:
[ 1095.007123] [   T5574]  <TASK>
[ 1095.007124] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1095.007127] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1095.007129] [   T5574]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1095.007131] [   T5574]  tb_tunnel_dp+0x4f3/0x9f0
[ 1095.007133] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1095.007135] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1095.007136] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1095.007138] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1095.007142] [   T5574]  worker_thread+0x2ee/0x390
[ 1095.007145] [   T5574]  kthread+0x237/0x250
[ 1095.007146] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1095.007148] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.007150] [   T5574]  ret_from_fork+0xc0/0x550
[ 1095.007153] [   T5574]  ? __switch_to+0x134/0x460
[ 1095.007156] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.007158] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1095.007162] [   T5574]  </TASK>
[ 1095.007162] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1095.007177] [   T5574] ------------[ cut here ]------------
[ 1095.007178] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:53/5574
[ 1095.007182] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1095.007202] [   T5574] CPU: 16 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1095.007205] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1095.007205] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1095.007206] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1095.007207] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1095.007210] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1095.007211] [   T5574] RSP: 0018:ffffa3dc8a4a3b90 EFLAGS: 00010246
[ 1095.007213] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[ 1095.007214] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[ 1095.007215] [   T5574] RBP: ffffa3dc8a4a3ba0 R08: ffffa3dc8a4a3c74 R09: ffffa3dc8a4a3c70
[ 1095.007216] [   T5574] R10: 0000000000000283 R11: 0000000000000400 R12: ffff938d412ed960
[ 1095.007217] [   T5574] R13: ffff938d412ed0c8 R14: 0000000000000003 R15: ffff938d42d30358
[ 1095.007218] [   T5574] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1095.007219] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1095.007220] [   T5574] CR2: 00007f8792095000 CR3: 000000018aa0d005 CR4: 0000000000770ef0
[ 1095.007221] [   T5574] PKRU: 55555554
[ 1095.007222] [   T5574] Call Trace:
[ 1095.007222] [   T5574]  <TASK>
[ 1095.007223] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1095.007225] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1095.007228] [   T5574]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1095.007230] [   T5574]  tb_tunnel_dp+0x4f3/0x9f0
[ 1095.007232] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1095.007233] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1095.007235] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1095.007237] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1095.007239] [   T5574]  worker_thread+0x2ee/0x390
[ 1095.007243] [   T5574]  kthread+0x237/0x250
[ 1095.007244] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1095.007246] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.007248] [   T5574]  ret_from_fork+0xc0/0x550
[ 1095.007251] [   T5574]  ? __switch_to+0x134/0x460
[ 1095.007254] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.007255] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1095.007260] [   T5574]  </TASK>
[ 1095.007261] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1095.008060] [   T5574] ------------[ cut here ]------------
[ 1095.008061] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:53/5574
[ 1095.008065] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1095.008098] [   T5574] CPU: 16 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1095.008100] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1095.008101] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1095.008102] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1095.008104] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1095.008107] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1095.008108] [   T5574] RSP: 0018:ffffa3dc8a4a3b90 EFLAGS: 00010246
[ 1095.008109] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[ 1095.008110] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7680
[ 1095.008111] [   T5574] RBP: ffffa3dc8a4a3ba0 R08: ffffa3dc8a4a3c74 R09: ffffa3dc8a4a3c70
[ 1095.008112] [   T5574] R10: 000000000000028e R11: 0000000000000400 R12: ffff938d412ed960
[ 1095.008113] [   T5574] R13: ffff938d999180c8 R14: 0000000000000001 R15: ffff938d42d30358
[ 1095.008114] [   T5574] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1095.008115] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1095.008116] [   T5574] CR2: 00007f8792095000 CR3: 000000018aa0d005 CR4: 0000000000770ef0
[ 1095.008117] [   T5574] PKRU: 55555554
[ 1095.008117] [   T5574] Call Trace:
[ 1095.008118] [   T5574]  <TASK>
[ 1095.008119] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1095.008122] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1095.008124] [   T5574]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1095.008126] [   T5574]  tb_tunnel_dp+0x4f3/0x9f0
[ 1095.008130] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1095.008132] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1095.008133] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1095.008135] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1095.008138] [   T5574]  worker_thread+0x2ee/0x390
[ 1095.008140] [   T5574]  kthread+0x237/0x250
[ 1095.008142] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1095.008144] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.008146] [   T5574]  ret_from_fork+0xc0/0x550
[ 1095.008148] [   T5574]  ? __switch_to+0x134/0x460
[ 1095.008150] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.008151] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1095.008155] [   T5574]  </TASK>
[ 1095.008155] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1095.008171] [   T5574] ------------[ cut here ]------------
[ 1095.008171] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:53/5574
[ 1095.008175] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1095.008188] [   T5574] CPU: 16 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1095.008190] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1095.008191] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1095.008191] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1095.008193] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1095.008195] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1095.008197] [   T5574] RSP: 0018:ffffa3dc8a4a3b90 EFLAGS: 00010246
[ 1095.008198] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[ 1095.008198] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[ 1095.008199] [   T5574] RBP: ffffa3dc8a4a3ba0 R08: ffffa3dc8a4a3c74 R09: ffffa3dc8a4a3c70
[ 1095.008200] [   T5574] R10: 000000000000028e R11: 0000000000000400 R12: ffff938d412ed960
[ 1095.008201] [   T5574] R13: ffff938d999180c8 R14: 0000000000000002 R15: ffff938d42d30358
[ 1095.008202] [   T5574] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1095.008203] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1095.008204] [   T5574] CR2: 00007f8792095000 CR3: 000000018aa0d005 CR4: 0000000000770ef0
[ 1095.008206] [   T5574] PKRU: 55555554
[ 1095.008206] [   T5574] Call Trace:
[ 1095.008211] [   T5574]  <TASK>
[ 1095.008211] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1095.008213] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1095.008215] [   T5574]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1095.008217] [   T5574]  tb_tunnel_dp+0x4f3/0x9f0
[ 1095.008219] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1095.008221] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1095.008222] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1095.008224] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1095.008226] [   T5574]  worker_thread+0x2ee/0x390
[ 1095.008228] [   T5574]  kthread+0x237/0x250
[ 1095.008230] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1095.008232] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.008233] [   T5574]  ret_from_fork+0xc0/0x550
[ 1095.008235] [   T5574]  ? __switch_to+0x134/0x460
[ 1095.008237] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.008238] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1095.008242] [   T5574]  </TASK>
[ 1095.008242] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1095.008257] [   T5574] ------------[ cut here ]------------
[ 1095.008257] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:53/5574
[ 1095.008261] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1095.008281] [   T5574] CPU: 16 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1095.008283] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1095.008284] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1095.008284] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1095.008286] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1095.008288] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1095.008289] [   T5574] RSP: 0018:ffffa3dc8a4a3b90 EFLAGS: 00010246
[ 1095.008290] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[ 1095.008291] [   T5574] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[ 1095.008292] [   T5574] RBP: ffffa3dc8a4a3ba0 R08: ffffa3dc8a4a3c74 R09: ffffa3dc8a4a3c70
[ 1095.008293] [   T5574] R10: 000000000000028e R11: 0000000000000400 R12: ffff938d412ed960
[ 1095.008294] [   T5574] R13: ffff938d999180c8 R14: 0000000000000003 R15: ffff938d42d30358
[ 1095.008295] [   T5574] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1095.008296] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1095.008297] [   T5574] CR2: 00007f8792095000 CR3: 000000018aa0d005 CR4: 0000000000770ef0
[ 1095.008298] [   T5574] PKRU: 55555554
[ 1095.008299] [   T5574] Call Trace:
[ 1095.008299] [   T5574]  <TASK>
[ 1095.008300] [   T5574]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1095.008302] [   T5574]  tb_available_bandwidth+0x333/0x450
[ 1095.008304] [   T5574]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1095.008306] [   T5574]  tb_tunnel_dp+0x4f3/0x9f0
[ 1095.008307] [   T5574]  tb_dp_resource_unavailable+0xd3/0x1b0
[ 1095.008309] [   T5574]  tb_handle_hotplug+0x4b4/0x820
[ 1095.008310] [   T5574]  ? __queue_delayed_work+0xc9/0x110
[ 1095.008312] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1095.008314] [   T5574]  worker_thread+0x2ee/0x390
[ 1095.008317] [   T5574]  kthread+0x237/0x250
[ 1095.008318] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1095.008320] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.008322] [   T5574]  ret_from_fork+0xc0/0x550
[ 1095.008324] [   T5574]  ? __switch_to+0x134/0x460
[ 1095.008326] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1095.008327] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1095.008331] [   T5574]  </TASK>
[ 1095.008331] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1098.742470] [   T5535] ------------[ cut here ]------------
[ 1098.742483] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.742515] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.742598] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.742616] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.742620] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.742625] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.742636] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.742649] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.742658] [   T5535] RSP: 0018:ffffa3dc80d37bf0 EFLAGS: 00010246
[ 1098.742666] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[ 1098.742673] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7680
[ 1098.742679] [   T5535] RBP: ffffa3dc80d37c00 R08: ffffa3dc80d37cd4 R09: ffffa3dc80d37cd0
[ 1098.742683] [   T5535] R10: 000000000000005e R11: 0000000000000400 R12: ffff938d412ed3e8
[ 1098.742688] [   T5535] R13: ffff938d412ed0c8 R14: 0000000000000001 R15: ffff938d42d30358
[ 1098.742693] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.742700] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.742706] [   T5535] CR2: 00007f8792095000 CR3: 000000018aa0d005 CR4: 0000000000770ef0
[ 1098.742713] [   T5535] PKRU: 55555554
[ 1098.742716] [   T5535] Call Trace:
[ 1098.742721] [   T5535]  <TASK>
[ 1098.742733] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.742744] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.742753] [   T5535]  tb_tunnel_dp+0x4c0/0x9f0
[ 1098.742761] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.742768] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.742775] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.742789] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.742801] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.742810] [   T5535]  kthread+0x237/0x250
[ 1098.742816] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.742825] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.742831] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.742842] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.742888] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.742894] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.742907] [   T5535]  </TASK>
[ 1098.742911] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.742962] [   T5535] ------------[ cut here ]------------
[ 1098.742965] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.742983] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.743046] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.743057] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.743060] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.743064] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.743071] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.743081] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.743087] [   T5535] RSP: 0018:ffffa3dc80d37bf0 EFLAGS: 00010246
[ 1098.743093] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[ 1098.743097] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[ 1098.743102] [   T5535] RBP: ffffa3dc80d37c00 R08: ffffa3dc80d37cd4 R09: ffffa3dc80d37cd0
[ 1098.743107] [   T5535] R10: 000000000000005e R11: 0000000000000400 R12: ffff938d412ed3e8
[ 1098.743111] [   T5535] R13: ffff938d412ed0c8 R14: 0000000000000002 R15: ffff938d42d30358
[ 1098.743116] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.743122] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.743127] [   T5535] CR2: 00007f8792095000 CR3: 000000018aa0d005 CR4: 0000000000770ef0
[ 1098.743133] [   T5535] PKRU: 55555554
[ 1098.743135] [   T5535] Call Trace:
[ 1098.743138] [   T5535]  <TASK>
[ 1098.743142] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.743151] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.743158] [   T5535]  tb_tunnel_dp+0x4c0/0x9f0
[ 1098.743164] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.743170] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.743175] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.743185] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.743192] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.743199] [   T5535]  kthread+0x237/0x250
[ 1098.743204] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.743211] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.743216] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.743223] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.743229] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.743234] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.743244] [   T5535]  </TASK>
[ 1098.743247] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.743289] [   T5535] ------------[ cut here ]------------
[ 1098.743292] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.743304] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.743354] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.743363] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.743365] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.743368] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.743374] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.743383] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.743387] [   T5535] RSP: 0018:ffffa3dc80d37bf0 EFLAGS: 00010246
[ 1098.743392] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[ 1098.743395] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[ 1098.743398] [   T5535] RBP: ffffa3dc80d37c00 R08: ffffa3dc80d37cd4 R09: ffffa3dc80d37cd0
[ 1098.743402] [   T5535] R10: 000000000000005e R11: 0000000000000400 R12: ffff938d412ed3e8
[ 1098.743405] [   T5535] R13: ffff938d412ed0c8 R14: 0000000000000003 R15: ffff938d42d30358
[ 1098.743409] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.743414] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.743417] [   T5535] CR2: 00007f8792095000 CR3: 000000018aa0d005 CR4: 0000000000770ef0
[ 1098.743421] [   T5535] PKRU: 55555554
[ 1098.743423] [   T5535] Call Trace:
[ 1098.743425] [   T5535]  <TASK>
[ 1098.743428] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.743436] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.743443] [   T5535]  tb_tunnel_dp+0x4c0/0x9f0
[ 1098.743450] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.743456] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.743462] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.743471] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.743479] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.743487] [   T5535]  kthread+0x237/0x250
[ 1098.743492] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.743499] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.743505] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.743513] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.743519] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.743525] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.743536] [   T5535]  </TASK>
[ 1098.743538] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.744629] [   T5535] ------------[ cut here ]------------
[ 1098.744633] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.744646] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.744722] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.744729] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.744731] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.744733] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.744738] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.744746] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.744750] [   T5535] RSP: 0018:ffffa3dc80d37bf0 EFLAGS: 00010246
[ 1098.744753] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[ 1098.744756] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7680
[ 1098.744759] [   T5535] RBP: ffffa3dc80d37c00 R08: ffffa3dc80d37cd4 R09: ffffa3dc80d37cd0
[ 1098.744762] [   T5535] R10: 00000000000000a4 R11: 0000000000000400 R12: ffff938d412ed3e8
[ 1098.744765] [   T5535] R13: ffff938d999180c8 R14: 0000000000000001 R15: ffff938d42d30358
[ 1098.744768] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.744771] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.744774] [   T5535] CR2: 00007f8792095000 CR3: 000000018aa0d005 CR4: 0000000000770ef0
[ 1098.744777] [   T5535] PKRU: 55555554
[ 1098.744779] [   T5535] Call Trace:
[ 1098.744781] [   T5535]  <TASK>
[ 1098.744784] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.744791] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.744797] [   T5535]  tb_tunnel_dp+0x4c0/0x9f0
[ 1098.744803] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.744808] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.744813] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.744822] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.744829] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.744836] [   T5535]  kthread+0x237/0x250
[ 1098.744841] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.744865] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.744871] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.744878] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.744883] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.744894] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.744904] [   T5535]  </TASK>
[ 1098.744906] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.744950] [   T5535] ------------[ cut here ]------------
[ 1098.744951] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.744967] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.745027] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.745035] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.745038] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.745041] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.745050] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.745058] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.745062] [   T5535] RSP: 0018:ffffa3dc80d37bf0 EFLAGS: 00010246
[ 1098.745065] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[ 1098.745069] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[ 1098.745072] [   T5535] RBP: ffffa3dc80d37c00 R08: ffffa3dc80d37cd4 R09: ffffa3dc80d37cd0
[ 1098.745075] [   T5535] R10: 00000000000000a4 R11: 0000000000000400 R12: ffff938d412ed3e8
[ 1098.745079] [   T5535] R13: ffff938d999180c8 R14: 0000000000000002 R15: ffff938d42d30358
[ 1098.745083] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.745086] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.745092] [   T5535] CR2: 00007f8792095000 CR3: 000000018aa0d005 CR4: 0000000000770ef0
[ 1098.745095] [   T5535] PKRU: 55555554
[ 1098.745098] [   T5535] Call Trace:
[ 1098.745099] [   T5535]  <TASK>
[ 1098.745102] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.745107] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.745113] [   T5535]  tb_tunnel_dp+0x4c0/0x9f0
[ 1098.745119] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.745127] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.745132] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.745140] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.745150] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.745156] [   T5535]  kthread+0x237/0x250
[ 1098.745160] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.745165] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.745169] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.745175] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.745180] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.745184] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.745193] [   T5535]  </TASK>
[ 1098.745194] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.745231] [   T5535] ------------[ cut here ]------------
[ 1098.745232] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.745241] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.745279] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.745285] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.745287] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.745289] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.745293] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.745300] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.745303] [   T5535] RSP: 0018:ffffa3dc80d37bf0 EFLAGS: 00010246
[ 1098.745307] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[ 1098.745313] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[ 1098.745316] [   T5535] RBP: ffffa3dc80d37c00 R08: ffffa3dc80d37cd4 R09: ffffa3dc80d37cd0
[ 1098.745319] [   T5535] R10: 00000000000000a4 R11: 0000000000000400 R12: ffff938d412ed3e8
[ 1098.745324] [   T5535] R13: ffff938d999180c8 R14: 0000000000000003 R15: ffff938d42d30358
[ 1098.745327] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.745331] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.745334] [   T5535] CR2: 00007f8792095000 CR3: 000000018aa0d005 CR4: 0000000000770ef0
[ 1098.745337] [   T5535] PKRU: 55555554
[ 1098.745339] [   T5535] Call Trace:
[ 1098.745340] [   T5535]  <TASK>
[ 1098.745342] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.745348] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.745354] [   T5535]  tb_tunnel_dp+0x4c0/0x9f0
[ 1098.745359] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.745364] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.745368] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.745379] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.745389] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.745395] [   T5535]  kthread+0x237/0x250
[ 1098.745399] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.745405] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.745410] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.745417] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.745421] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.745425] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.745434] [   T5535]  </TASK>
[ 1098.745435] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.747273] [   T5535] ------------[ cut here ]------------
[ 1098.747278] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.747289] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.747329] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.747335] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.747336] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.747338] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.747342] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.747348] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.747350] [   T5535] RSP: 0018:ffffa3dc80d37b90 EFLAGS: 00010246
[ 1098.747353] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[ 1098.747355] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7680
[ 1098.747357] [   T5535] RBP: ffffa3dc80d37ba0 R08: ffffa3dc80d37c74 R09: ffffa3dc80d37c70
[ 1098.747359] [   T5535] R10: 00000000000001a5 R11: 0000000000000bf8 R12: ffff938d412ed960
[ 1098.747361] [   T5535] R13: ffff938d412ed0c8 R14: 0000000000000001 R15: ffff938d42d30358
[ 1098.747363] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.747366] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.747368] [   T5535] CR2: 00007f8792095000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1098.747371] [   T5535] PKRU: 55555554
[ 1098.747372] [   T5535] Call Trace:
[ 1098.747374] [   T5535]  <TASK>
[ 1098.747378] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.747382] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.747387] [   T5535]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1098.747391] [   T5535]  tb_tunnel_dp+0x4f3/0x9f0
[ 1098.747395] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.747399] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.747403] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.747410] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.747415] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.747419] [   T5535]  kthread+0x237/0x250
[ 1098.747423] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.747427] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.747430] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.747435] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.747438] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.747441] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.747448] [   T5535]  </TASK>
[ 1098.747449] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.747480] [   T5535] ------------[ cut here ]------------
[ 1098.747481] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.747489] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.747523] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.747528] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.747529] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.747531] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.747534] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.747540] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.747545] [   T5535] RSP: 0018:ffffa3dc80d37b90 EFLAGS: 00010246
[ 1098.747548] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[ 1098.747549] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[ 1098.747551] [   T5535] RBP: ffffa3dc80d37ba0 R08: ffffa3dc80d37c74 R09: ffffa3dc80d37c70
[ 1098.747553] [   T5535] R10: 00000000000001a5 R11: 0000000000000bf8 R12: ffff938d412ed960
[ 1098.747555] [   T5535] R13: ffff938d412ed0c8 R14: 0000000000000002 R15: ffff938d42d30358
[ 1098.747557] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.747559] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.747561] [   T5535] CR2: 00007f8792095000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1098.747564] [   T5535] PKRU: 55555554
[ 1098.747565] [   T5535] Call Trace:
[ 1098.747567] [   T5535]  <TASK>
[ 1098.747568] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.747573] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.747578] [   T5535]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1098.747584] [   T5535]  tb_tunnel_dp+0x4f3/0x9f0
[ 1098.747587] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.747591] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.747595] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.747601] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.747606] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.747610] [   T5535]  kthread+0x237/0x250
[ 1098.747613] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.747617] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.747620] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.747625] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.747629] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.747632] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.747639] [   T5535]  </TASK>
[ 1098.747640] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.747693] [   T5535] ------------[ cut here ]------------
[ 1098.747694] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.747702] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.747742] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.747746] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.747747] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.747748] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.747751] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.747757] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.747760] [   T5535] RSP: 0018:ffffa3dc80d37b90 EFLAGS: 00010246
[ 1098.747765] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[ 1098.747767] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[ 1098.747769] [   T5535] RBP: ffffa3dc80d37ba0 R08: ffffa3dc80d37c74 R09: ffffa3dc80d37c70
[ 1098.747771] [   T5535] R10: 00000000000001a5 R11: 0000000000000bf8 R12: ffff938d412ed960
[ 1098.747775] [   T5535] R13: ffff938d412ed0c8 R14: 0000000000000003 R15: ffff938d42d30358
[ 1098.747777] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.747779] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.747781] [   T5535] CR2: 00007f8792095000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1098.747783] [   T5535] PKRU: 55555554
[ 1098.747784] [   T5535] Call Trace:
[ 1098.747785] [   T5535]  <TASK>
[ 1098.747786] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.747791] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.747795] [   T5535]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1098.747800] [   T5535]  tb_tunnel_dp+0x4f3/0x9f0
[ 1098.747803] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.747806] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.747809] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.747816] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.747820] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.747825] [   T5535]  kthread+0x237/0x250
[ 1098.747828] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.747832] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.747836] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.747840] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.747844] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.747867] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.747875] [   T5535]  </TASK>
[ 1098.747877] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.748738] [   T5535] ------------[ cut here ]------------
[ 1098.748740] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.748752] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.748780] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.748785] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.748786] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.748788] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.748794] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.748799] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.748801] [   T5535] RSP: 0018:ffffa3dc80d37b90 EFLAGS: 00010246
[ 1098.748804] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[ 1098.748805] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7680
[ 1098.748807] [   T5535] RBP: ffffa3dc80d37ba0 R08: ffffa3dc80d37c74 R09: ffffa3dc80d37c70
[ 1098.748809] [   T5535] R10: 00000000000003b2 R11: 00000000000007f8 R12: ffff938d412ed960
[ 1098.748811] [   T5535] R13: ffff938d999180c8 R14: 0000000000000001 R15: ffff938d42d30358
[ 1098.748816] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.748818] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.748820] [   T5535] CR2: 00007f8792095000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1098.748823] [   T5535] PKRU: 55555554
[ 1098.748824] [   T5535] Call Trace:
[ 1098.748825] [   T5535]  <TASK>
[ 1098.748827] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.748831] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.748835] [   T5535]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1098.748838] [   T5535]  tb_tunnel_dp+0x4f3/0x9f0
[ 1098.748842] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.748845] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.748866] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.748873] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.748877] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.748882] [   T5535]  kthread+0x237/0x250
[ 1098.748885] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.748889] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.748892] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.748897] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.748902] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.748905] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.748911] [   T5535]  </TASK>
[ 1098.748912] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.748940] [   T5535] ------------[ cut here ]------------
[ 1098.748941] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.748947] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.748977] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.748981] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.748982] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.748984] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.748989] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.748994] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.748996] [   T5535] RSP: 0018:ffffa3dc80d37b90 EFLAGS: 00010246
[ 1098.748999] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[ 1098.749001] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[ 1098.749005] [   T5535] RBP: ffffa3dc80d37ba0 R08: ffffa3dc80d37c74 R09: ffffa3dc80d37c70
[ 1098.749006] [   T5535] R10: 00000000000003b2 R11: 00000000000007f8 R12: ffff938d412ed960
[ 1098.749008] [   T5535] R13: ffff938d999180c8 R14: 0000000000000002 R15: ffff938d42d30358
[ 1098.749010] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.749013] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.749014] [   T5535] CR2: 00007f8792095000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1098.749016] [   T5535] PKRU: 55555554
[ 1098.749017] [   T5535] Call Trace:
[ 1098.749018] [   T5535]  <TASK>
[ 1098.749020] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.749024] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.749028] [   T5535]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1098.749032] [   T5535]  tb_tunnel_dp+0x4f3/0x9f0
[ 1098.749035] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.749037] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.749040] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.749046] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.749050] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.749054] [   T5535]  kthread+0x237/0x250
[ 1098.749057] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.749062] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.749064] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.749069] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.749071] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.749077] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.749083] [   T5535]  </TASK>
[ 1098.749084] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.749113] [   T5535] ------------[ cut here ]------------
[ 1098.749114] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.749120] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.749150] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.749154] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.749155] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.749156] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.749158] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.749163] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.749165] [   T5535] RSP: 0018:ffffa3dc80d37b90 EFLAGS: 00010246
[ 1098.749171] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[ 1098.749172] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[ 1098.749174] [   T5535] RBP: ffffa3dc80d37ba0 R08: ffffa3dc80d37c74 R09: ffffa3dc80d37c70
[ 1098.749175] [   T5535] R10: 00000000000003b2 R11: 00000000000007f8 R12: ffff938d412ed960
[ 1098.749177] [   T5535] R13: ffff938d999180c8 R14: 0000000000000003 R15: ffff938d42d30358
[ 1098.749178] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.749180] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.749182] [   T5535] CR2: 00007f8792095000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1098.749184] [   T5535] PKRU: 55555554
[ 1098.749185] [   T5535] Call Trace:
[ 1098.749186] [   T5535]  <TASK>
[ 1098.749187] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.749191] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.749195] [   T5535]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1098.749198] [   T5535]  tb_tunnel_dp+0x4f3/0x9f0
[ 1098.749201] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.749204] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.749207] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.749212] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.749216] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.749220] [   T5535]  kthread+0x237/0x250
[ 1098.749222] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.749226] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.749228] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.749233] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.749238] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.749240] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.749246] [   T5535]  </TASK>
[ 1098.749247] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.757381] [   T5535] ------------[ cut here ]------------
[ 1098.757384] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.757391] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.757416] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.757420] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.757421] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.757422] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.757425] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.757429] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.757431] [   T5535] RSP: 0018:ffffa3dc80d37bf0 EFLAGS: 00010246
[ 1098.757433] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[ 1098.757435] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7680
[ 1098.757436] [   T5535] RBP: ffffa3dc80d37c00 R08: ffffa3dc80d37cd4 R09: ffffa3dc80d37cd0
[ 1098.757438] [   T5535] R10: 0000000000000135 R11: 0000000000000400 R12: ffff938d412ed4b0
[ 1098.757439] [   T5535] R13: ffff938d412ed0c8 R14: 0000000000000001 R15: ffff938d42d30358
[ 1098.757441] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.757442] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.757444] [   T5535] CR2: 00007f8792095000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1098.757446] [   T5535] PKRU: 55555554
[ 1098.757447] [   T5535] Call Trace:
[ 1098.757448] [   T5535]  <TASK>
[ 1098.757450] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.757453] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.757456] [   T5535]  tb_tunnel_dp+0x4c0/0x9f0
[ 1098.757459] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.757461] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.757463] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.757468] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.757472] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.757475] [   T5535]  kthread+0x237/0x250
[ 1098.757477] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.757480] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.757482] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.757486] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.757488] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.757490] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.757495] [   T5535]  </TASK>
[ 1098.757496] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.757515] [   T5535] ------------[ cut here ]------------
[ 1098.757516] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.757521] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.757542] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.757545] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.757546] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.757548] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.757550] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.757554] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.757555] [   T5535] RSP: 0018:ffffa3dc80d37bf0 EFLAGS: 00010246
[ 1098.757557] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[ 1098.757559] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[ 1098.757560] [   T5535] RBP: ffffa3dc80d37c00 R08: ffffa3dc80d37cd4 R09: ffffa3dc80d37cd0
[ 1098.757561] [   T5535] R10: 0000000000000135 R11: 0000000000000400 R12: ffff938d412ed4b0
[ 1098.757563] [   T5535] R13: ffff938d412ed0c8 R14: 0000000000000002 R15: ffff938d42d30358
[ 1098.757564] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.757566] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.757568] [   T5535] CR2: 00007f8792095000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1098.757569] [   T5535] PKRU: 55555554
[ 1098.757570] [   T5535] Call Trace:
[ 1098.757571] [   T5535]  <TASK>
[ 1098.757572] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.757575] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.757578] [   T5535]  tb_tunnel_dp+0x4c0/0x9f0
[ 1098.757581] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.757583] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.757585] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.757589] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.757592] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.757596] [   T5535]  kthread+0x237/0x250
[ 1098.757598] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.757601] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.757603] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.757606] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.757608] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.757611] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.757615] [   T5535]  </TASK>
[ 1098.757616] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.757635] [   T5535] ------------[ cut here ]------------
[ 1098.757636] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.757640] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.757662] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.757665] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.757666] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.757667] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.757669] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.757673] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.757675] [   T5535] RSP: 0018:ffffa3dc80d37bf0 EFLAGS: 00010246
[ 1098.757676] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[ 1098.757678] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[ 1098.757679] [   T5535] RBP: ffffa3dc80d37c00 R08: ffffa3dc80d37cd4 R09: ffffa3dc80d37cd0
[ 1098.757681] [   T5535] R10: 0000000000000135 R11: 0000000000000400 R12: ffff938d412ed4b0
[ 1098.757682] [   T5535] R13: ffff938d412ed0c8 R14: 0000000000000003 R15: ffff938d42d30358
[ 1098.757684] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.757685] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.757687] [   T5535] CR2: 00007f8792095000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1098.757688] [   T5535] PKRU: 55555554
[ 1098.757689] [   T5535] Call Trace:
[ 1098.757690] [   T5535]  <TASK>
[ 1098.757691] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.757694] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.757697] [   T5535]  tb_tunnel_dp+0x4c0/0x9f0
[ 1098.757700] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.757702] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.757704] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.757708] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.757712] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.757715] [   T5535]  kthread+0x237/0x250
[ 1098.757717] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.757720] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.757722] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.757725] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.757728] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.757730] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.757735] [   T5535]  </TASK>
[ 1098.757735] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.758281] [   T5535] ------------[ cut here ]------------
[ 1098.758284] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.758291] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.758315] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.758319] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.758319] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.758321] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.758323] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.758328] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.758332] [   T5535] RSP: 0018:ffffa3dc80d37bf0 EFLAGS: 00010246
[ 1098.758333] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[ 1098.758335] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7680
[ 1098.758336] [   T5535] RBP: ffffa3dc80d37c00 R08: ffffa3dc80d37cd4 R09: ffffa3dc80d37cd0
[ 1098.758338] [   T5535] R10: 0000000000000014 R11: 0000000000000bdc R12: ffff938d412ed4b0
[ 1098.758339] [   T5535] R13: ffff938d999180c8 R14: 0000000000000001 R15: ffff938d42d30358
[ 1098.758341] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.758342] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.758344] [   T5535] CR2: 00007f8792095000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1098.758345] [   T5535] PKRU: 55555554
[ 1098.758346] [   T5535] Call Trace:
[ 1098.758347] [   T5535]  <TASK>
[ 1098.758349] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.758353] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.758358] [   T5535]  tb_tunnel_dp+0x4c0/0x9f0
[ 1098.758360] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.758363] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.758365] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.758369] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.758373] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.758376] [   T5535]  kthread+0x237/0x250
[ 1098.758378] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.758381] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.758383] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.758386] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.758389] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.758391] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.758396] [   T5535]  </TASK>
[ 1098.758397] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.758418] [   T5535] ------------[ cut here ]------------
[ 1098.758419] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.758424] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.758448] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.758452] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.758453] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.758454] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.758456] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.758460] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.758462] [   T5535] RSP: 0018:ffffa3dc80d37bf0 EFLAGS: 00010246
[ 1098.758463] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[ 1098.758465] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[ 1098.758466] [   T5535] RBP: ffffa3dc80d37c00 R08: ffffa3dc80d37cd4 R09: ffffa3dc80d37cd0
[ 1098.758468] [   T5535] R10: 0000000000000014 R11: 0000000000000bdc R12: ffff938d412ed4b0
[ 1098.758469] [   T5535] R13: ffff938d999180c8 R14: 0000000000000002 R15: ffff938d42d30358
[ 1098.758471] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.758472] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.758474] [   T5535] CR2: 00007f8792095000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1098.758475] [   T5535] PKRU: 55555554
[ 1098.758476] [   T5535] Call Trace:
[ 1098.758477] [   T5535]  <TASK>
[ 1098.758478] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.758482] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.758485] [   T5535]  tb_tunnel_dp+0x4c0/0x9f0
[ 1098.758488] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.758490] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.758492] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.758496] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.758499] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.758503] [   T5535]  kthread+0x237/0x250
[ 1098.758505] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.758508] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.758510] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.758514] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.758516] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.758518] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.758523] [   T5535]  </TASK>
[ 1098.758526] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.758546] [   T5535] ------------[ cut here ]------------
[ 1098.758547] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.758552] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.758576] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.758580] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.758580] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.758581] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.758583] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.758589] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.758590] [   T5535] RSP: 0018:ffffa3dc80d37bf0 EFLAGS: 00010246
[ 1098.758592] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[ 1098.758594] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[ 1098.758597] [   T5535] RBP: ffffa3dc80d37c00 R08: ffffa3dc80d37cd4 R09: ffffa3dc80d37cd0
[ 1098.758598] [   T5535] R10: 0000000000000014 R11: 0000000000000bdc R12: ffff938d412ed4b0
[ 1098.758600] [   T5535] R13: ffff938d999180c8 R14: 0000000000000003 R15: ffff938d42d30358
[ 1098.758601] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.758603] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.758604] [   T5535] CR2: 00007f8792095000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1098.758606] [   T5535] PKRU: 55555554
[ 1098.758607] [   T5535] Call Trace:
[ 1098.758608] [   T5535]  <TASK>
[ 1098.758608] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.758611] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.758614] [   T5535]  tb_tunnel_dp+0x4c0/0x9f0
[ 1098.758619] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.758621] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.758623] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.758628] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.758631] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.758634] [   T5535]  kthread+0x237/0x250
[ 1098.758636] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.758639] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.758642] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.758645] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.758647] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.758650] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.758654] [   T5535]  </TASK>
[ 1098.758655] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.759338] [   T5535] ------------[ cut here ]------------
[ 1098.759340] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.759347] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.759373] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.759377] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.759378] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.759379] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.759382] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.759386] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.759387] [   T5535] RSP: 0018:ffffa3dc80d37b90 EFLAGS: 00010246
[ 1098.759389] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[ 1098.759391] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7680
[ 1098.759392] [   T5535] RBP: ffffa3dc80d37ba0 R08: ffffa3dc80d37c74 R09: ffffa3dc80d37c70
[ 1098.759393] [   T5535] R10: 0000000000000060 R11: 0000000000000400 R12: ffff938d412ed960
[ 1098.759395] [   T5535] R13: ffff938d412ed0c8 R14: 0000000000000001 R15: ffff938d42d30358
[ 1098.759397] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.759399] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.759402] [   T5535] CR2: 00007f8792095000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1098.759403] [   T5535] PKRU: 55555554
[ 1098.759404] [   T5535] Call Trace:
[ 1098.759405] [   T5535]  <TASK>
[ 1098.759407] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.759410] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.759413] [   T5535]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1098.759416] [   T5535]  tb_tunnel_dp+0x4f3/0x9f0
[ 1098.759419] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.759422] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.759424] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.759429] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.759432] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.759436] [   T5535]  kthread+0x237/0x250
[ 1098.759438] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.759441] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.759443] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.759447] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.759449] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.759452] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.759457] [   T5535]  </TASK>
[ 1098.759457] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.759479] [   T5535] ------------[ cut here ]------------
[ 1098.759480] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.759485] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.759510] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.759513] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.759514] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.759515] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.759518] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.759521] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.759523] [   T5535] RSP: 0018:ffffa3dc80d37b90 EFLAGS: 00010246
[ 1098.759525] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[ 1098.759526] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[ 1098.759528] [   T5535] RBP: ffffa3dc80d37ba0 R08: ffffa3dc80d37c74 R09: ffffa3dc80d37c70
[ 1098.759530] [   T5535] R10: 0000000000000060 R11: 0000000000000400 R12: ffff938d412ed960
[ 1098.759531] [   T5535] R13: ffff938d412ed0c8 R14: 0000000000000002 R15: ffff938d42d30358
[ 1098.759533] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.759536] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.759538] [   T5535] CR2: 00007f8792095000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1098.759539] [   T5535] PKRU: 55555554
[ 1098.759541] [   T5535] Call Trace:
[ 1098.759542] [   T5535]  <TASK>
[ 1098.759543] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.759546] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.759550] [   T5535]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1098.759554] [   T5535]  tb_tunnel_dp+0x4f3/0x9f0
[ 1098.759556] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.759559] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.759561] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.759566] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.759569] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.759573] [   T5535]  kthread+0x237/0x250
[ 1098.759575] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.759578] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.759580] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.759585] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.759588] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.759590] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.759595] [   T5535]  </TASK>
[ 1098.759596] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.759626] [   T5535] ------------[ cut here ]------------
[ 1098.759627] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.759632] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.759657] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.759660] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.759661] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.759662] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.759664] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.759670] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.759672] [   T5535] RSP: 0018:ffffa3dc80d37b90 EFLAGS: 00010246
[ 1098.759673] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[ 1098.759675] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[ 1098.759676] [   T5535] RBP: ffffa3dc80d37ba0 R08: ffffa3dc80d37c74 R09: ffffa3dc80d37c70
[ 1098.759677] [   T5535] R10: 0000000000000060 R11: 0000000000000400 R12: ffff938d412ed960
[ 1098.759678] [   T5535] R13: ffff938d412ed0c8 R14: 0000000000000003 R15: ffff938d42d30358
[ 1098.759680] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.759682] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.759683] [   T5535] CR2: 00007f8792095000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1098.759685] [   T5535] PKRU: 55555554
[ 1098.759686] [   T5535] Call Trace:
[ 1098.759686] [   T5535]  <TASK>
[ 1098.759688] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.759691] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.759694] [   T5535]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1098.759698] [   T5535]  tb_tunnel_dp+0x4f3/0x9f0
[ 1098.759701] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.759704] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.759706] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.759710] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.759714] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.759717] [   T5535]  kthread+0x237/0x250
[ 1098.759720] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.759722] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.759725] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.759728] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.759731] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.759733] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.759738] [   T5535]  </TASK>
[ 1098.759739] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.760650] [   T5535] ------------[ cut here ]------------
[ 1098.760653] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.760660] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.760685] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.760689] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.760690] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.760691] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.760694] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.760698] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.760700] [   T5535] RSP: 0018:ffffa3dc80d37b90 EFLAGS: 00010246
[ 1098.760702] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[ 1098.760704] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7680
[ 1098.760705] [   T5535] RBP: ffffa3dc80d37ba0 R08: ffffa3dc80d37c74 R09: ffffa3dc80d37c70
[ 1098.760707] [   T5535] R10: 00000000000000fa R11: 00000000000007d5 R12: ffff938d412ed960
[ 1098.760708] [   T5535] R13: ffff938d999180c8 R14: 0000000000000001 R15: ffff938d42d30358
[ 1098.760710] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.760712] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.760713] [   T5535] CR2: 00007f8792095000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1098.760715] [   T5535] PKRU: 55555554
[ 1098.760716] [   T5535] Call Trace:
[ 1098.760717] [   T5535]  <TASK>
[ 1098.760719] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.760723] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.760726] [   T5535]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1098.760729] [   T5535]  tb_tunnel_dp+0x4f3/0x9f0
[ 1098.760731] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.760734] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.760736] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.760741] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.760744] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.760747] [   T5535]  kthread+0x237/0x250
[ 1098.760750] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.760753] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.760755] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.760759] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.760761] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.760763] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.760768] [   T5535]  </TASK>
[ 1098.760769] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.760790] [   T5535] ------------[ cut here ]------------
[ 1098.760791] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.760796] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.760818] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.760822] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.760823] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.760824] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.760826] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.760830] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.760831] [   T5535] RSP: 0018:ffffa3dc80d37b90 EFLAGS: 00010246
[ 1098.760833] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000001
[ 1098.760834] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7180
[ 1098.760836] [   T5535] RBP: ffffa3dc80d37ba0 R08: ffffa3dc80d37c74 R09: ffffa3dc80d37c70
[ 1098.760837] [   T5535] R10: 00000000000000fa R11: 00000000000007d5 R12: ffff938d412ed960
[ 1098.760839] [   T5535] R13: ffff938d999180c8 R14: 0000000000000002 R15: ffff938d42d30358
[ 1098.760840] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.760842] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.760843] [   T5535] CR2: 00007f8792095000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1098.760845] [   T5535] PKRU: 55555554
[ 1098.760845] [   T5535] Call Trace:
[ 1098.760846] [   T5535]  <TASK>
[ 1098.760847] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.760863] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.760866] [   T5535]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1098.760870] [   T5535]  tb_tunnel_dp+0x4f3/0x9f0
[ 1098.760873] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.760875] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.760878] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.760882] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.760885] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.760888] [   T5535]  kthread+0x237/0x250
[ 1098.760890] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.760893] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.760895] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.760899] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.760901] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.760903] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.760908] [   T5535]  </TASK>
[ 1098.760909] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1098.760929] [   T5535] ------------[ cut here ]------------
[ 1098.760929] [   T5535] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:9/5535
[ 1098.760934] [   T5535] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1098.760963] [   T5535] CPU: 16 UID: 0 PID: 5535 Comm: kworker/u80:9 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1098.760966] [   T5535] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1098.760967] [   T5535] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1098.760968] [   T5535] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1098.760971] [   T5535] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1098.760975] [   T5535] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1098.760976] [   T5535] RSP: 0018:ffffa3dc80d37b90 EFLAGS: 00010246
[ 1098.760978] [   T5535] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000002
[ 1098.760979] [   T5535] RDX: 0000000000000050 RSI: 0000000000000050 RDI: ffff938d4efb7740
[ 1098.760980] [   T5535] RBP: ffffa3dc80d37ba0 R08: ffffa3dc80d37c74 R09: ffffa3dc80d37c70
[ 1098.760982] [   T5535] R10: 00000000000000fa R11: 00000000000007d5 R12: ffff938d412ed960
[ 1098.760985] [   T5535] R13: ffff938d999180c8 R14: 0000000000000003 R15: ffff938d42d30358
[ 1098.760986] [   T5535] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1098.760988] [   T5535] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1098.760989] [   T5535] CR2: 00007f8792095000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1098.760990] [   T5535] PKRU: 55555554
[ 1098.760991] [   T5535] Call Trace:
[ 1098.760992] [   T5535]  <TASK>
[ 1098.760993] [   T5535]  tb_consumed_dp_bandwidth+0xa8/0x1d0
[ 1098.760998] [   T5535]  tb_available_bandwidth+0x333/0x450
[ 1098.761001] [   T5535]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
[ 1098.761003] [   T5535]  tb_tunnel_dp+0x4f3/0x9f0
[ 1098.761006] [   T5535]  tb_dp_resource_available+0x10b/0x230
[ 1098.761008] [   T5535]  tb_handle_hotplug+0x59c/0x820
[ 1098.761010] [   T5535]  ? drm_sched_run_job_work+0x38/0x340 [gpu_sched]
[ 1098.761014] [   T5535]  process_scheduled_works+0x1e7/0x370
[ 1098.761017] [   T5535]  worker_thread+0x2ee/0x390
[ 1098.761020] [   T5535]  kthread+0x237/0x250
[ 1098.761022] [   T5535]  ? pr_cont_work+0x1c0/0x1c0
[ 1098.761027] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.761029] [   T5535]  ret_from_fork+0xc0/0x550
[ 1098.761032] [   T5535]  ? __switch_to+0x134/0x460
[ 1098.761034] [   T5535]  ? kthread_blkcg+0x30/0x30
[ 1098.761036] [   T5535]  ret_from_fork_asm+0x11/0x20
[ 1098.761041] [   T5535]  </TASK>
[ 1098.761041] [   T5535] ---[ end trace 0000000000000000 ]---
[ 1151.195984] [   T5574] nfs: server 192.168.124.200 not responding, timed out
[ 1151.624779] [   T4934] usb 3-3: USB disconnect, device number 31
[ 1151.624803] [   T4934] usb 3-3.1: USB disconnect, device number 32
[ 1151.626360] [   T4934] usb 3-3.4: USB disconnect, device number 33
[ 1151.626372] [   T4934] usb 3-3.4.2: USB disconnect, device number 34
[ 1151.626380] [   T4934] usb 3-3.4.2.1: USB disconnect, device number 35
[ 1151.626388] [   T4934] usb 3-3.4.2.1.2: USB disconnect, device number 36
[ 1151.627160] [   T5574] thunderbolt 1-0:1.1: retimer disconnected
[ 1151.633900] [   T5574] ------------[ cut here ]------------
[ 1151.633913] [   T5574] WARNING: drivers/thunderbolt/tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#16: kworker/u80:53/5574
[ 1151.633950] [   T5574] Modules linked in: intel_ipu6_isys videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper ttm drm_gpuvm drm_exec
[ 1151.634063] [   T5574] CPU: 16 UID: 0 PID: 5574 Comm: kworker/u80:53 Tainted: G S      W  O        6.19.0-rc7-kenny+ #33 PREEMPT 
[ 1151.634089] [   T5574] Tainted: [S]=CPU_OUT_OF_SPEC, [W]=WARN, [O]=OOT_MODULE
[ 1151.634094] [   T5574] Hardware name: Dell Inc. XPS 9320/0KNXGD, BIOS 2.26.0 10/27/2025
[ 1151.634101] [   T5574] Workqueue: thunderbolt1 tb_handle_hotplug
[ 1151.634116] [   T5574] RIP: 0010:tb_tunnel_is_invalid+0x46/0x60
[ 1151.634135] [   T5574] Code: 00 00 00 00 48 8b 43 20 48 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 5e 5d c3 31 c0 c3 cc cc
[ 1151.634147] [   T5574] RSP: 0018:ffffa3dc8a4a3d98 EFLAGS: 00010246
[ 1151.634159] [   T5574] RAX: ffff938db2f6b8e0 RBX: ffff938d59164c00 RCX: 0000000000000000
[ 1151.634169] [   T5574] RDX: 000000000020000e RSI: ffffe9ec05e3c600 RDI: ffff938d4efb7680
[ 1151.634177] [   T5574] RBP: ffffa3dc8a4a3da8 R08: 000000000020000d R09: 000000000000000d
[ 1151.634184] [   T5574] R10: 0000000002000001 R11: 00000000077b1200 R12: ffff938d42d30358
[ 1151.634192] [   T5574] R13: ffff938d42d30358 R14: 0000000000000001 R15: ffff938d59164c00
[ 1151.634199] [   T5574] FS:  0000000000000000(0000) GS:ffff939518e71000(0000) knlGS:0000000000000000
[ 1151.634209] [   T5574] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1151.634218] [   T5574] CR2: 00007f1bac403000 CR3: 00000001867ab003 CR4: 0000000000770ef0
[ 1151.634228] [   T5574] PKRU: 55555554
[ 1151.634233] [   T5574] Call Trace:
[ 1151.634239] [   T5574]  <TASK>
[ 1151.634252] [   T5574]  tb_handle_hotplug+0x202/0x820
[ 1151.634265] [   T5574]  process_scheduled_works+0x1e7/0x370
[ 1151.634282] [   T5574]  worker_thread+0x2ee/0x390
[ 1151.634296] [   T5574]  kthread+0x237/0x250
[ 1151.634306] [   T5574]  ? pr_cont_work+0x1c0/0x1c0
[ 1151.634319] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1151.634329] [   T5574]  ret_from_fork+0xc0/0x550
[ 1151.634345] [   T5574]  ? __switch_to+0x134/0x460
[ 1151.634356] [   T5574]  ? kthread_blkcg+0x30/0x30
[ 1151.634365] [   T5574]  ret_from_fork_asm+0x11/0x20
[ 1151.634385] [   T5574]  </TASK>
[ 1151.634389] [   T5574] ---[ end trace 0000000000000000 ]---
[ 1151.638198] [   T5574] thunderbolt 1-1: device disconnected
[ 1151.660852] [   T4934] usb 3-3.4.2.1.3: USB disconnect, device number 37
[ 1151.900412] [   T4934] usb 3-3.4.2.1.4: USB disconnect, device number 38
[ 1157.636276] [   T5554] thunderbolt 1-1: new device found, vendor=0xee device=0x1330
[ 1157.636285] [   T5554] thunderbolt 1-1: Good Way Technology Thunderbolt4/USB4 Dock Pro
[ 1157.901296] [   T5554] thunderbolt 1-0:1.1: new retimer found, vendor=0x8087 device=0x15ee
[ 1158.078223] [   T4856] usb 3-3: new high-speed USB device number 39 using xhci_hcd
[ 1158.202745] [   T4856] usb 3-3: New USB device found, idVendor=1d5c, idProduct=5801, bcdDevice= 1.01
[ 1158.202748] [   T4856] usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1158.202749] [   T4856] usb 3-3: Product: USB2.0 Hub
[ 1158.202750] [   T4856] usb 3-3: Manufacturer: Fresco Logic, Inc.
[ 1158.204267] [   T4856] hub 3-3:1.0: USB hub found
[ 1158.204467] [   T4856] hub 3-3:1.0: 4 ports detected
[ 1158.575864] [    T192] pcieport 0000:00:07.2: pciehp: Slot(5): Card present
[ 1158.575867] [    T192] pcieport 0000:00:07.2: pciehp: Slot(5): Link Up
[ 1158.701407] [    T192] pci 0000:40:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Upstream Port
[ 1158.701449] [    T192] pci 0000:40:00.0: PCI bridge to [bus 00]
[ 1158.701461] [    T192] pci 0000:40:00.0:   bridge window [io  0x0000-0x0fff]
[ 1158.701466] [    T192] pci 0000:40:00.0:   bridge window [mem 0x00000000-0x000fffff]
[ 1158.701481] [    T192] pci 0000:40:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[ 1158.701498] [    T192] pci 0000:40:00.0: enabling Extended Tags
[ 1158.701975] [    T192] pci 0000:40:00.0: supports D1 D2
[ 1158.701976] [    T192] pci 0000:40:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1158.702115] [    T192] pci 0000:40:00.0: PTM enabled, 4ns granularity
[ 1158.702360] [    T192] pci 0000:40:00.0: Adding to iommu group 17
[ 1158.702421] [    T192] pcieport 0000:00:07.2: ASPM: current common clock configuration is inconsistent, reconfiguring
[ 1158.704445] [    T192] pci 0000:40:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[ 1158.704583] [    T192] pci 0000:41:00.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[ 1158.704620] [    T192] pci 0000:41:00.0: PCI bridge to [bus 00]
[ 1158.704629] [    T192] pci 0000:41:00.0:   bridge window [io  0x0000-0x0fff]
[ 1158.704633] [    T192] pci 0000:41:00.0:   bridge window [mem 0x00000000-0x000fffff]
[ 1158.704648] [    T192] pci 0000:41:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[ 1158.704668] [    T192] pci 0000:41:00.0: enabling Extended Tags
[ 1158.704825] [    T192] pci 0000:41:00.0: supports D1 D2
[ 1158.704826] [    T192] pci 0000:41:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1158.707229] [    T192] pci 0000:41:00.0: Adding to iommu group 18
[ 1158.707299] [    T192] pci 0000:41:01.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[ 1158.707336] [    T192] pci 0000:41:01.0: PCI bridge to [bus 00]
[ 1158.707347] [    T192] pci 0000:41:01.0:   bridge window [io  0x0000-0x0fff]
[ 1158.707350] [    T192] pci 0000:41:01.0:   bridge window [mem 0x00000000-0x000fffff]
[ 1158.707365] [    T192] pci 0000:41:01.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[ 1158.707385] [    T192] pci 0000:41:01.0: enabling Extended Tags
[ 1158.707759] [    T192] pci 0000:41:01.0: supports D1 D2
[ 1158.707760] [    T192] pci 0000:41:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1158.709044] [    T192] pci 0000:41:01.0: Adding to iommu group 19
[ 1158.709118] [    T192] pci 0000:41:02.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[ 1158.709155] [    T192] pci 0000:41:02.0: PCI bridge to [bus 00]
[ 1158.709164] [    T192] pci 0000:41:02.0:   bridge window [io  0x0000-0x0fff]
[ 1158.709167] [    T192] pci 0000:41:02.0:   bridge window [mem 0x00000000-0x000fffff]
[ 1158.709182] [    T192] pci 0000:41:02.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[ 1158.709202] [    T192] pci 0000:41:02.0: enabling Extended Tags
[ 1158.709385] [    T192] pci 0000:41:02.0: supports D1 D2
[ 1158.709385] [    T192] pci 0000:41:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1158.710407] [     T98] usb 2-3: new SuperSpeed Plus Gen 2x1 USB device number 24 using xhci_hcd
[ 1158.710855] [    T192] pci 0000:41:02.0: Adding to iommu group 20
[ 1158.710923] [    T192] pci 0000:41:03.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[ 1158.710960] [    T192] pci 0000:41:03.0: PCI bridge to [bus 00]
[ 1158.710968] [    T192] pci 0000:41:03.0:   bridge window [io  0x0000-0x0fff]
[ 1158.710972] [    T192] pci 0000:41:03.0:   bridge window [mem 0x00000000-0x000fffff]
[ 1158.710987] [    T192] pci 0000:41:03.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[ 1158.711028] [    T192] pci 0000:41:03.0: enabling Extended Tags
[ 1158.711187] [    T192] pci 0000:41:03.0: supports D1 D2
[ 1158.711188] [    T192] pci 0000:41:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1158.711409] [    T192] pci 0000:41:03.0: Adding to iommu group 21
[ 1158.711480] [    T192] pci 0000:41:04.0: [8086:0b26] type 01 class 0x060400 PCIe Switch Downstream Port
[ 1158.711518] [    T192] pci 0000:41:04.0: PCI bridge to [bus 00]
[ 1158.711526] [    T192] pci 0000:41:04.0:   bridge window [io  0x0000-0x0fff]
[ 1158.711530] [    T192] pci 0000:41:04.0:   bridge window [mem 0x00000000-0x000fffff]
[ 1158.711545] [    T192] pci 0000:41:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[ 1158.711564] [    T192] pci 0000:41:04.0: enabling Extended Tags
[ 1158.711724] [    T192] pci 0000:41:04.0: supports D1 D2
[ 1158.711724] [    T192] pci 0000:41:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 1158.711940] [    T192] pci 0000:41:04.0: Adding to iommu group 22
[ 1158.712017] [    T192] pci 0000:40:00.0: PCI bridge to [bus 41-7e]
[ 1158.712035] [    T192] pci 0000:41:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[ 1158.712045] [    T192] pci 0000:41:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[ 1158.712056] [    T192] pci 0000:41:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[ 1158.712066] [    T192] pci 0000:41:03.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[ 1158.712076] [    T192] pci 0000:41:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[ 1158.712154] [    T192] pci 0000:41:00.0: PCI bridge to [bus 42-7e]
[ 1158.712171] [    T192] pci_bus 0000:42: busn_res: [bus 42-7e] end is updated to 42
[ 1158.712247] [    T192] pci 0000:41:01.0: PCI bridge to [bus 43-7e]
[ 1158.712263] [    T192] pci_bus 0000:43: busn_res: [bus 43-7e] end is updated to 56
[ 1158.712337] [    T192] pci 0000:41:02.0: PCI bridge to [bus 57-7e]
[ 1158.712356] [    T192] pci_bus 0000:57: busn_res: [bus 57-7e] end is updated to 6a
[ 1158.712428] [    T192] pci 0000:41:03.0: PCI bridge to [bus 6b-7e]
[ 1158.712445] [    T192] pci_bus 0000:6b: busn_res: [bus 6b-7e] end is updated to 7d
[ 1158.712519] [    T192] pci 0000:41:04.0: PCI bridge to [bus 7e]
[ 1158.712536] [    T192] pci_bus 0000:7e: busn_res: [bus 7e] end is updated to 7e
[ 1158.712542] [    T192] pci_bus 0000:41: busn_res: [bus 41-7e] end is updated to 7e
[ 1158.712549] [    T192] pci 0000:41:01.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 43-56] add_size 100000 add_align 100000
[ 1158.712550] [    T192] pci 0000:41:01.0: bridge window [mem 0x00100000-0x001fffff] to [bus 43-56] add_size 100000 add_align 100000
[ 1158.712551] [    T192] pci 0000:41:02.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 57-6a] add_size 100000 add_align 100000
[ 1158.712552] [    T192] pci 0000:41:02.0: bridge window [mem 0x00100000-0x001fffff] to [bus 57-6a] add_size 100000 add_align 100000
[ 1158.712553] [    T192] pci 0000:41:03.0: bridge window [mem 0x00100000-0x001fffff 64bit pref] to [bus 6b-7d] add_size 100000 add_align 100000
[ 1158.712554] [    T192] pci 0000:41:03.0: bridge window [mem 0x00100000-0x001fffff] to [bus 6b-7d] add_size 100000 add_align 100000
[ 1158.712555] [    T192] pci 0000:40:00.0: bridge window [mem 0x00100000-0x005fffff 64bit pref] to [bus 41-7e] add_size 300000 add_align 100000
[ 1158.712557] [    T192] pci 0000:40:00.0: bridge window [mem 0x00100000-0x005fffff] to [bus 41-7e] add_size 300000 add_align 100000
[ 1158.712560] [    T192] pci 0000:40:00.0: bridge window [mem 0x74000000-0x801fffff]: assigned
[ 1158.712561] [    T192] pci 0000:40:00.0: bridge window [mem 0x6020000000-0x603bffffff 64bit pref]: assigned
[ 1158.712562] [    T192] pci 0000:40:00.0: bridge window [io  0x5000-0x9fff]: assigned
[ 1158.712564] [    T192] pci 0000:41:00.0: bridge window [mem 0x74000000-0x740fffff]: assigned
[ 1158.712565] [    T192] pci 0000:41:00.0: bridge window [mem 0x6020000000-0x60200fffff 64bit pref]: assigned
[ 1158.712565] [    T192] pci 0000:41:01.0: bridge window [mem 0x74100000-0x780fffff]: assigned
[ 1158.712566] [    T192] pci 0000:41:01.0: bridge window [mem 0x6020100000-0x60294fffff 64bit pref]: assigned
[ 1158.712567] [    T192] pci 0000:41:02.0: bridge window [mem 0x78100000-0x7c0fffff]: assigned
[ 1158.712567] [    T192] pci 0000:41:02.0: bridge window [mem 0x6029500000-0x60328fffff 64bit pref]: assigned
[ 1158.712568] [    T192] pci 0000:41:03.0: bridge window [mem 0x7c100000-0x800fffff]: assigned
[ 1158.712568] [    T192] pci 0000:41:03.0: bridge window [mem 0x6032900000-0x603bcfffff 64bit pref]: assigned
[ 1158.712569] [    T192] pci 0000:41:04.0: bridge window [mem 0x80100000-0x801fffff]: assigned
[ 1158.712569] [    T192] pci 0000:41:04.0: bridge window [mem 0x603bd00000-0x603bdfffff 64bit pref]: assigned
[ 1158.712570] [    T192] pci 0000:41:00.0: bridge window [io  0x5000-0x5fff]: assigned
[ 1158.712571] [    T192] pci 0000:41:01.0: bridge window [io  0x6000-0x6fff]: assigned
[ 1158.712571] [    T192] pci 0000:41:02.0: bridge window [io  0x7000-0x7fff]: assigned
[ 1158.712572] [    T192] pci 0000:41:03.0: bridge window [io  0x8000-0x8fff]: assigned
[ 1158.712572] [    T192] pci 0000:41:04.0: bridge window [io  0x9000-0x9fff]: assigned
[ 1158.712573] [    T192] pci 0000:41:00.0: PCI bridge to [bus 42]
[ 1158.712575] [    T192] pci 0000:41:00.0:   bridge window [io  0x5000-0x5fff]
[ 1158.712581] [    T192] pci 0000:41:00.0:   bridge window [mem 0x74000000-0x740fffff]
[ 1158.712585] [    T192] pci 0000:41:00.0:   bridge window [mem 0x6020000000-0x60200fffff 64bit pref]
[ 1158.712592] [    T192] pci 0000:41:01.0: PCI bridge to [bus 43-56]
[ 1158.712594] [    T192] pci 0000:41:01.0:   bridge window [io  0x6000-0x6fff]
[ 1158.712599] [    T192] pci 0000:41:01.0:   bridge window [mem 0x74100000-0x780fffff]
[ 1158.712603] [    T192] pci 0000:41:01.0:   bridge window [mem 0x6020100000-0x60294fffff 64bit pref]
[ 1158.712610] [    T192] pci 0000:41:02.0: PCI bridge to [bus 57-6a]
[ 1158.712612] [    T192] pci 0000:41:02.0:   bridge window [io  0x7000-0x7fff]
[ 1158.712617] [    T192] pci 0000:41:02.0:   bridge window [mem 0x78100000-0x7c0fffff]
[ 1158.712620] [    T192] pci 0000:41:02.0:   bridge window [mem 0x6029500000-0x60328fffff 64bit pref]
[ 1158.712627] [    T192] pci 0000:41:03.0: PCI bridge to [bus 6b-7d]
[ 1158.712629] [    T192] pci 0000:41:03.0:   bridge window [io  0x8000-0x8fff]
[ 1158.712635] [    T192] pci 0000:41:03.0:   bridge window [mem 0x7c100000-0x800fffff]
[ 1158.712638] [    T192] pci 0000:41:03.0:   bridge window [mem 0x6032900000-0x603bcfffff 64bit pref]
[ 1158.712645] [    T192] pci 0000:41:04.0: PCI bridge to [bus 7e]
[ 1158.712647] [    T192] pci 0000:41:04.0:   bridge window [io  0x9000-0x9fff]
[ 1158.712652] [    T192] pci 0000:41:04.0:   bridge window [mem 0x80100000-0x801fffff]
[ 1158.712656] [    T192] pci 0000:41:04.0:   bridge window [mem 0x603bd00000-0x603bdfffff 64bit pref]
[ 1158.712663] [    T192] pci 0000:40:00.0: PCI bridge to [bus 41-7e]
[ 1158.712665] [    T192] pci 0000:40:00.0:   bridge window [io  0x5000-0x9fff]
[ 1158.712670] [    T192] pci 0000:40:00.0:   bridge window [mem 0x74000000-0x801fffff]
[ 1158.712674] [    T192] pci 0000:40:00.0:   bridge window [mem 0x6020000000-0x603bffffff 64bit pref]
[ 1158.712680] [    T192] pcieport 0000:00:07.2: PCI bridge to [bus 40-7e]
[ 1158.712681] [    T192] pcieport 0000:00:07.2:   bridge window [io  0x5000-0x9fff]
[ 1158.712683] [    T192] pcieport 0000:00:07.2:   bridge window [mem 0x74000000-0x801fffff]
[ 1158.712685] [    T192] pcieport 0000:00:07.2:   bridge window [mem 0x6020000000-0x603bffffff 64bit pref]
[ 1158.713770] [    T192] pcieport 0000:40:00.0: enabling device (0000 -> 0003)
[ 1158.714938] [    T192] pcieport 0000:41:00.0: enabling device (0000 -> 0003)
[ 1158.715229] [    T192] pcieport 0000:41:01.0: enabling device (0000 -> 0003)
[ 1158.716210] [    T192] pcieport 0000:41:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 1158.721775] [     T98] usb 2-3: New USB device found, idVendor=8087, idProduct=0b40, bcdDevice=12.34
[ 1158.721780] [     T98] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1158.721782] [     T98] usb 2-3: Product: USB3.0 Hub
[ 1158.721784] [     T98] usb 2-3: Manufacturer: Intel Corporation.
[ 1158.722255] [    T192] pcieport 0000:41:02.0: enabling device (0000 -> 0003)
[ 1158.725861] [    T192] pcieport 0000:41:02.0: pciehp: Slot #2 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 1158.726379] [     T98] hub 2-3:1.0: USB hub found
[ 1158.726424] [     T98] hub 2-3:1.0: 4 ports detected
[ 1158.727376] [    T192] pcieport 0000:41:03.0: enabling device (0000 -> 0003)
[ 1158.727851] [   T5429] i2c i2c-3: adapter quirk: msg too long (addr 0x0050, size 128, read)
[ 1158.730719] [    T192] pcieport 0000:41:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 1158.733756] [    T192] pcieport 0000:41:04.0: enabling device (0000 -> 0003)
[ 1158.740367] [   T5762] usb 3-3.1: new low-speed USB device number 40 using xhci_hcd
[ 1158.836550] [   T5762] usb 3-3.1: New USB device found, idVendor=0451, idProduct=ace1, bcdDevice= 1.50
[ 1158.836557] [   T5762] usb 3-3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1158.836560] [   T5762] usb 3-3.1: Product: TPS DMC Family
[ 1158.836563] [   T5762] usb 3-3.1: Manufacturer: Texas Instruments Inc
[ 1158.836565] [   T5762] usb 3-3.1: SerialNumber: 331964161CF1E0B5624D9D096602BC1
[ 1158.914438] [   T5762] usb 3-3.4: new high-speed USB device number 41 using xhci_hcd
[ 1159.002390] [   T5762] usb 3-3.4: New USB device found, idVendor=2109, idProduct=2822, bcdDevice=90.44
[ 1159.002399] [   T5762] usb 3-3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1159.002402] [   T5762] usb 3-3.4: Product: USB2.0 Hub             
[ 1159.002405] [   T5762] usb 3-3.4: Manufacturer: VIA Labs, Inc.         
[ 1159.003745] [   T5762] hub 3-3.4:1.0: USB hub found
[ 1159.003986] [   T5762] hub 3-3.4:1.0: 4 ports detected
[ 1159.244803] [   T5464] usb 2-3.4: new SuperSpeed Plus Gen 2x1 USB device number 25 using xhci_hcd
[ 1159.259979] [   T5464] usb 2-3.4: New USB device found, idVendor=2109, idProduct=0822, bcdDevice=90.44
[ 1159.260003] [   T5464] usb 2-3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1159.260006] [   T5464] usb 2-3.4: Product: USB3.1 Hub             
[ 1159.260008] [   T5464] usb 2-3.4: Manufacturer: VIA Labs, Inc.         
[ 1159.261996] [   T5464] hub 2-3.4:1.0: USB hub found
[ 1159.262305] [   T5464] hub 2-3.4:1.0: 4 ports detected
[ 1159.287473] [     T98] usb 3-3.4.2: new high-speed USB device number 42 using xhci_hcd
[ 1159.377508] [     T98] usb 3-3.4.2: New USB device found, idVendor=2109, idProduct=2822, bcdDevice=90.43
[ 1159.377515] [     T98] usb 3-3.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1159.377518] [     T98] usb 3-3.4.2: Product: USB2.0 Hub             
[ 1159.377520] [     T98] usb 3-3.4.2: Manufacturer: VIA Labs, Inc.         
[ 1159.379976] [     T98] hub 3-3.4.2:1.0: USB hub found
[ 1159.380462] [     T98] hub 3-3.4.2:1.0: 4 ports detected
[ 1159.535019] [   T5800] usb 2-3.4.1: new SuperSpeed USB device number 26 using xhci_hcd
[ 1159.547483] [   T5800] usb 2-3.4.1: New USB device found, idVendor=0bda, idProduct=8156, bcdDevice=31.04
[ 1159.547492] [   T5800] usb 2-3.4.1: New USB device strings: Mfr=1, Product=2, SerialNumber=6
[ 1159.547496] [   T5800] usb 2-3.4.1: Product: USB 10/100/1G/2.5G LAN
[ 1159.547499] [   T5800] usb 2-3.4.1: Manufacturer: Realtek
[ 1159.547502] [   T5800] usb 2-3.4.1: SerialNumber: 401385A8AD
[ 1159.571663] [   T5800] cdc_ncm 2-3.4.1:2.0: MAC-Address: 80:6d:97:85:a8:ad
[ 1159.571670] [   T5800] cdc_ncm 2-3.4.1:2.0: setting rx_max = 16384
[ 1159.571810] [   T5800] cdc_ncm 2-3.4.1:2.0: setting tx_max = 16384
[ 1159.572328] [   T5800] cdc_ncm 2-3.4.1:2.0 eth0: register 'cdc_ncm' at usb-0000:00:0d.0-3.4.1, CDC NCM (NO ZLP), 80:6d:97:85:a8:ad
[ 1159.575945] [   T5800] cdc_ncm 2-3.4.1:2.0 eth0: unregister 'cdc_ncm' usb-0000:00:0d.0-3.4.1, CDC NCM (NO ZLP)
[ 1159.655902] [   T5800] r8152-cfgselector 2-3.4.1: reset SuperSpeed USB device number 26 using xhci_hcd
[ 1159.663655] [   T4833] usb 3-3.4.2.1: new high-speed USB device number 43 using xhci_hcd
[ 1159.673484] [   T5800] r8152 2-3.4.1:1.0 (unnamed net_device) (uninitialized): Invalid header when reading pass-thru MAC addr
[ 1159.726882] [   T5800] r8152 2-3.4.1:1.0 eth0: v2.21.4 (2025/10/28)
[ 1159.726888] [   T5800] r8152 2-3.4.1:1.0 eth0: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[ 1159.751023] [   T4833] usb 3-3.4.2.1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.56
[ 1159.751045] [   T4833] usb 3-3.4.2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1159.751049] [   T4833] usb 3-3.4.2.1: Product: USB2.1 Hub
[ 1159.751051] [   T4833] usb 3-3.4.2.1: Manufacturer: GenesysLogic
[ 1159.752731] [   T4833] hub 3-3.4.2.1:1.0: USB hub found
[ 1159.753039] [   T4833] hub 3-3.4.2.1:1.0: 4 ports detected
[ 1159.793774] [   T5800] usb 2-3.4.2: new SuperSpeed Plus Gen 2x1 USB device number 27 using xhci_hcd
[ 1159.808928] [   T5800] usb 2-3.4.2: New USB device found, idVendor=2109, idProduct=0822, bcdDevice=90.43
[ 1159.808935] [   T5800] usb 2-3.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1159.808938] [   T5800] usb 2-3.4.2: Product: USB3.1 Hub             
[ 1159.808940] [   T5800] usb 2-3.4.2: Manufacturer: VIA Labs, Inc.         
[ 1159.809897] [   T5800] hub 2-3.4.2:1.0: USB hub found
[ 1159.810214] [   T5800] hub 2-3.4.2:1.0: 4 ports detected
[ 1159.916300] [   T5859] r8152-cfgselector 2-3.4.1: reset SuperSpeed USB device number 26 using xhci_hcd
[ 1159.934987] [   T5859] r8152 2-3.4.1:1.0 (unnamed net_device) (uninitialized): Invalid header when reading pass-thru MAC addr
[ 1159.967471] [   T5859] r8152 2-3.4.1:1.0 eth0: v2.21.4 (2025/10/28)
[ 1159.967478] [   T5859] r8152 2-3.4.1:1.0 eth0: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[ 1160.052635] [   T5762] usb 3-3.4.2.1.2: new full-speed USB device number 44 using xhci_hcd
[ 1160.087778] [     T98] usb 2-3.4.2.1: new SuperSpeed USB device number 28 using xhci_hcd
[ 1160.103249] [     T98] usb 2-3.4.2.1: New USB device found, idVendor=05e3, idProduct=0626, bcdDevice= 6.56
[ 1160.103256] [     T98] usb 2-3.4.2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1160.103260] [     T98] usb 2-3.4.2.1: Product: USB3.1 Hub
[ 1160.103262] [     T98] usb 2-3.4.2.1: Manufacturer: GenesysLogic
[ 1160.104923] [     T98] hub 2-3.4.2.1:1.0: USB hub found
[ 1160.105209] [     T98] hub 2-3.4.2.1:1.0: 4 ports detected
[ 1160.171157] [   T5762] usb 3-3.4.2.1.2: New USB device found, idVendor=05ac, idProduct=110b, bcdDevice=26.81
[ 1160.171165] [   T5762] usb 3-3.4.2.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1160.171167] [   T5762] usb 3-3.4.2.1.2: Product: EarPods
[ 1160.171169] [   T5762] usb 3-3.4.2.1.2: Manufacturer: Apple, Inc.
[ 1160.171171] [   T5762] usb 3-3.4.2.1.2: SerialNumber: GNXTP7WK57
[ 1160.207201] [   T5762] input: Apple, Inc. EarPods as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.2/3-3.4.2.1.2:2.3/0003:05AC:110B.001B/input/input58
[ 1160.258389] [   T5762] hid-generic 0003:05AC:110B.001B: input,hidraw2: USB HID v1.11 Device [Apple, Inc. EarPods] on usb-0000:00:14.0-3.4.2.1.2/input3
[ 1160.261015] [   T5762] hid-generic 0003:05AC:110B.001C: hiddev0,hidraw3: USB HID v1.11 Device [Apple, Inc. EarPods] on usb-0000:00:14.0-3.4.2.1.2/input4
[ 1160.348732] [   T5762] usb 3-3.4.2.1.3: new full-speed USB device number 45 using xhci_hcd
[ 1160.459214] [   T5762] usb 3-3.4.2.1.3: New USB device found, idVendor=05ac, idProduct=024f, bcdDevice= 1.12
[ 1160.459220] [   T5762] usb 3-3.4.2.1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1160.459222] [   T5762] usb 3-3.4.2.1.3: Product: Keychron K2
[ 1160.459224] [   T5762] usb 3-3.4.2.1.3: Manufacturer: Keychron
[ 1160.466082] [   T5762] input: Keychron Keychron K2 as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.0/0003:05AC:024F.001D/input/input59
[ 1160.494101] [   T5762] hid-generic 0003:05AC:024F.001D: input,hidraw4: USB HID v1.11 Keyboard [Keychron Keychron K2] on usb-0000:00:14.0-3.4.2.1.3/input0
[ 1160.495711] [   T5762] input: Keychron Keychron K2 Consumer Control as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.001E/input/input60
[ 1160.495859] [   T5762] input: Keychron Keychron K2 System Control as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.001E/input/input61
[ 1160.495990] [   T5762] input: Keychron Keychron K2 Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.001E/input/input62
[ 1160.496159] [   T5762] input: Keychron Keychron K2 Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.001E/input/input63
[ 1160.496279] [   T5762] input: Keychron Keychron K2 as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.3/3-3.4.2.1.3:1.1/0003:05AC:024F.001E/input/input64
[ 1160.496414] [   T5762] hid-generic 0003:05AC:024F.001E: input,hiddev1,hidraw5: USB HID v1.11 Keyboard [Keychron Keychron K2] on usb-0000:00:14.0-3.4.2.1.3/input1
[ 1160.594767] [   T5762] usb 3-3.4.2.1.4: new low-speed USB device number 46 using xhci_hcd
[ 1160.708341] [   T5762] usb 3-3.4.2.1.4: New USB device found, idVendor=093a, idProduct=2510, bcdDevice= 1.00
[ 1160.708373] [   T5762] usb 3-3.4.2.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1160.708377] [   T5762] usb 3-3.4.2.1.4: Product: USB Optical Mouse
[ 1160.708380] [   T5762] usb 3-3.4.2.1.4: Manufacturer: PixArt
[ 1160.714102] [   T5762] input: PixArt USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4.2/3-3.4.2.1/3-3.4.2.1.4/3-3.4.2.1.4:1.0/0003:093A:2510.001F/input/input65
[ 1160.714341] [   T5762] hid-generic 0003:093A:2510.001F: input,hidraw6: USB HID v1.11 Mouse [PixArt USB Optical Mouse] on usb-0000:00:14.0-3.4.2.1.4/input0
[ 1162.830070] [   T5841] r8152 2-3.4.1:1.0 eth0: carrier on
[ 1163.084797] [   T5841] r8152 2-3.4.1:1.0 eth0: carrier off
[ 1166.413666] [   T5841] r8152 2-3.4.1:1.0 eth0: carrier on
Re: [PATCH v2 0/2] thunderbolt: Fix S4 resume incongruities
Posted by Kenneth Crudup 1 week, 1 day ago
BTW, I had no TB connectivity until I'd unplugged/replugged.

-Kenny

On 1/29/26 17:39, Kenneth Crudup wrote:
> 
>>> The issue I'm trying to chase down (and not sure if any of this will
>>> help with this, I wonder if it's really BIOS/EC related) is often times
>>> that after a suspend (or hibernate, but I use "suspend then hibernate",
>>> which I think does both and chooses which to use upon resume) and then
>>> connect to a different dock (or setup) from the one I'd suspended with,
>>> sometimes I have to unplug/replug my TB cable, otherwise I either get no
>>> recognition of my new display setup (and sometimes TB devices) or it'll
>>> try and use the same monitor resolution of the previously-connected
>>> monitor (as if the TB subsystem doesn't recognize things have changed).
> 
> On 1/29/26 15:13, Katiyar, Pooja wrote:
> 
>> Below is the patch series that addresses mentioned issue. There are two
>> patches in this series. The series takes care of releasing the DP 
>> resources
>> as part of freeze call before the hibernation image is created. You 
>> can test
>> it for your issues and let us know if it helps.
>>
>> Please note that these changes are still under internal review and are
>> subject to change.
> 
> I tested this against Linus' master (4d310797262) and while the jury is 
> still out on my issue (a few tests against different monitors looked 
> good, the big test is when I get back home later), I did see this on the 
> 3rd resume from hibernate (full dmesg attached):
> 
> ----
> [Thu Jan 29 17:25:10 2026] [   T5543] ------------[ cut here ]------------
> [Thu Jan 29 17:25:10 2026] [   T5543] WARNING: drivers/thunderbolt/ 
> tunnel.c:2358 at tb_tunnel_is_invalid+0x46/0x60, CPU#12: kworker/ 
> u80:19/5543
> [Thu Jan 29 17:25:10 2026] [   T5543] Modules linked in: intel_ipu6_isys 
> videobuf2_dma_sg ivsc_ace ivsc_csi intel_ishtp_hid iwlmvm 
> snd_soc_sof_sdw mac80211 r8152(O) mei_vsc iwlwifi snd_sof_pci_intel_tgl 
> snd_sof_pci_intel_cnl btusb cfg80211 intel_ish_ipc btintel intel_ishtp 
> intel_ipu6 mei_vsc_hw xe i2c_algo_bit drm_display_helper cec 
> drm_gpusvm_helper drm_buddy drm_suballoc_helper gpu_sched drm_ttm_helper 
> ttm drm_gpuvm drm_exec
> [Thu Jan 29 17:25:10 2026] [   T5543] CPU: 12 UID: 0 PID: 5543 Comm: 
> kworker/u80:19 Tainted: G S         O        6.19.0-rc7-kenny+ #33 PREEMPT
> [Thu Jan 29 17:25:10 2026] [   T5543] Tainted: [S]=CPU_OUT_OF_SPEC, 
> [O]=OOT_MODULE
> [Thu Jan 29 17:25:10 2026] [   T5543] Hardware name: Dell Inc. XPS 
> 9320/0KNXGD, BIOS 2.26.0 10/27/2025
> [Thu Jan 29 17:25:10 2026] [   T5543] Workqueue: thunderbolt1 
> tb_dp_dprx_work
> [Thu Jan 29 17:25:10 2026] [   T5543] RIP: 
> 0010:tb_tunnel_is_invalid+0x46/0x60
> [Thu Jan 29 17:25:10 2026] [   T5543] Code: 00 00 00 00 48 8b 43 20 48 
> 8b 3c c8 80 7f 22 00 74 18 e8 bd b0 ff ff 84 c0 75 1b 49 63 ce 44 8d 71 
> 01 48 39 4b 28 77 dc eb 0c <0f> 0b 48 8b 43 20 48 8b 3c c8 eb dc 5b 41 
> 5e 5d c3 31 c0 c3 cc cc
> [Thu Jan 29 17:25:10 2026] [   T5543] RSP: 0000:ffffa3dc86ebbbd0 EFLAGS: 
> 00010246
> [Thu Jan 29 17:25:10 2026] [   T5543] RAX: ffff938db2f6b8e0 RBX: 
> ffff938d59164c00 RCX: 0000000000000000
> [Thu Jan 29 17:25:10 2026] [   T5543] RDX: ffffa3dc86ebbc08 RSI: 
> ffffa3dc86ebbc0c RDI: ffff938d4efb7680
> [Thu Jan 29 17:25:10 2026] [   T5543] RBP: ffffa3dc86ebbbe0 R08: 
> 0000000000000000 R09: ffff938dc5344ac0
> [Thu Jan 29 17:25:10 2026] [   T5543] R10: 00000000000002bf R11: 
> 0000000000000400 R12: ffff938d412ed960
> [Thu Jan 29 17:25:10 2026] [   T5543] R13: ffff938d412ed0c8 R14: 
> 0000000000000001 R15: ffff938d42d30358
> [Thu Jan 29 17:25:10 2026] [   T5543] FS:  0000000000000000(0000) 
> GS:ffff939518d71000(0000) knlGS:0000000000000000
> [Thu Jan 29 17:25:10 2026] [   T5543] CS:  0010 DS: 0000 ES: 0000 CR0: 
> 0000000080050033
> [Thu Jan 29 17:25:10 2026] [   T5543] CR2: 0000000000000000 CR3: 
> 000000018aa0d001 CR4: 0000000000770ef0
> [Thu Jan 29 17:25:10 2026] [   T5543] PKRU: 55555554
> [Thu Jan 29 17:25:10 2026] [   T5543] Call Trace:
> [Thu Jan 29 17:25:10 2026] [   T5543]  <TASK>
> [Thu Jan 29 17:25:10 2026] [   T5543]  tb_consumed_dp_bandwidth+0xa8/0x1d0
> [Thu Jan 29 17:25:10 2026] [   T5543]  tb_available_bandwidth+0x333/0x450
> [Thu Jan 29 17:25:10 2026] [   T5543]  tb_reclaim_usb3_bandwidth+0x57/0x2a0
> [Thu Jan 29 17:25:10 2026] [   T5543]  tb_dp_tunnel_active+0x73/0x310
> [Thu Jan 29 17:25:10 2026] [   T5543]  ? tb_tunnel_event+0x131/0x160
> [Thu Jan 29 17:25:10 2026] [   T5543]  tb_dp_dprx_work+0xf4/0x110
> [Thu Jan 29 17:25:10 2026] [   T5543]  process_scheduled_works+0x1e7/0x370
> [Thu Jan 29 17:25:10 2026] [   T5543]  worker_thread+0x2ee/0x390
> [Thu Jan 29 17:25:10 2026] [   T5543]  kthread+0x237/0x250
> [Thu Jan 29 17:25:10 2026] [   T5543]  ? pr_cont_work+0x1c0/0x1c0
> [Thu Jan 29 17:25:10 2026] [   T5543]  ? kthread_blkcg+0x30/0x30
> [Thu Jan 29 17:25:10 2026] [   T5543]  ret_from_fork+0xc0/0x550
> [Thu Jan 29 17:25:10 2026] [   T5543]  ? __switch_to+0x134/0x460
> [Thu Jan 29 17:25:10 2026] [   T5543]  ? kthread_blkcg+0x30/0x30
> [Thu Jan 29 17:25:10 2026] [   T5543]  ret_from_fork_asm+0x11/0x20
> [Thu Jan 29 17:25:10 2026] [   T5543]  </TASK>
> [Thu Jan 29 17:25:10 2026] [   T5543] ---[ end trace 0000000000000000 ]---
> [Thu Jan 29 17:25:10 2026] [   T5543] ------------[ cut here ]------------
> ----
> 
> -Kenny
> 

-- 
Kenneth R. Crudup / Sr. SW Engineer, Scott County Consulting, Orange 
County CA

Re: [PATCH v2 0/2] thunderbolt: Fix S4 resume incongruities
Posted by Katiyar, Pooja 3 days, 14 hours ago
Hi Kenny,

On Thu, Jan 29, 2026 at 05:42:43PM -0800, Kenneth Crudup wrote:
> 
> BTW, I had no TB connectivity until I'd unplugged/replugged.
> 
> -Kenny

Thanks for testing the patch series!

To help diagnose the warning/issue, can you share your TB dock/setup
information and the steps that you are following? Also it would be
helpful if you can provide logs with dynamic debugging enabled for
thunderbolt. I am not able to reproduce the issue at my end, so the
above information would be really helpful to look into the issue while
I continue checking on my end. From the warning it appears that the tunnels
are invalid from the stack trace in the logs.

> 
> On 1/29/26 17:39, Kenneth Crudup wrote:
>>
>>>> The issue I'm trying to chase down (and not sure if any of this will
>>>> help with this, I wonder if it's really BIOS/EC related) is often times
>>>> that after a suspend (or hibernate, but I use "suspend then hibernate",
>>>> which I think does both and chooses which to use upon resume) and then
>>>> connect to a different dock (or setup) from the one I'd suspended with,
>>>> sometimes I have to unplug/replug my TB cable, otherwise I either get no
>>>> recognition of my new display setup (and sometimes TB devices) or it'll
>>>> try and use the same monitor resolution of the previously-connected
>>>> monitor (as if the TB subsystem doesn't recognize things have changed).
>>
>> On 1/29/26 15:13, Katiyar, Pooja wrote:
>>
>>> Below is the patch series that addresses mentioned issue. There are two
>>> patches in this series. The series takes care of releasing the DP resources
>>> as part of freeze call before the hibernation image is created. You can test
>>> it for your issues and let us know if it helps.
>>>
>>> Please note that these changes are still under internal review and are
>>> subject to change.
>>
>> I tested this against Linus' master (4d310797262) and while the jury is still out on my issue (a few tests against different monitors looked good, the big test is when I get back home later), I did see this on the 3rd resume from hibernate (full dmesg attached):
>>
>> ----

Thanks and Regards,
Pooja
Re: [PATCH v2 0/2] thunderbolt: Fix S4 resume incongruities
Posted by Mario Limonciello 4 weeks ago
On 1/9/26 1:23 AM, Mika Westerberg wrote:
> On Thu, Jan 08, 2026 at 01:18:58PM -0600, Mario Limonciello wrote:
>> On 1/8/26 5:42 AM, Mika Westerberg wrote:
>>> On Wed, Jan 07, 2026 at 02:50:54PM -0600, Mario Limonciello wrote:
>>>> On 1/7/26 3:33 AM, Mika Westerberg wrote:
>>>>> Hi,
>>>>>
>>>>> On Mon, Jan 05, 2026 at 11:37:47PM -0600, Mario Limonciello (AMD) wrote:
>>>>>> When a machine is restored from S4 if the firmware CM has created
>>>>>> tunnels there can be an incongruity of expectation from the kernel
>>>>>> when compared to booting from S5.  This series addresses those.
>>>>>
>>>>> I suspect there is no Firmware CM in AMD platforms so this actually means
>>>>> the BIOS CM, correct?
>>>>
>>>> That's correct.
>>>>
>>>>>
>>>>> However, on S4 we actually do reset host router when the "boot kernel" is
>>>>> started before loading and jumping to the hibernation image.
>>>>
>>>> That's only if thunderbolt.ko is built into the kernel or is included in the
>>>> initramfs before it does the pivot to the hibernation image.
>>>
>>> Ah good point.
>>>
>>>> At least in the tests we were doing it's not part of the boot kernel.
>>>>
>>>>> It might be
>>>>> that this boot kernel tunnel configuration is causing the issues you are
>>>>> seeing (can you elaborate on those?)
>>>>
>>>> The issues manifest "downstream" in the GPU driver.  There are a bunch of
>>>> aux failures and a non functional display.  Tracing it back the GPU driver
>>>> isn't alive at the time that the tunnels are attempted to be reconstructed
>>>> at the moment and so CM tears DP tunnel down and then when GPU driver does
>>>> come up it is not functional.
>>>>
>>>> DP tunnel constructed at:
>>>>
>>>> [  486.007194] thunderbolt 0000:c6:00.6: AUX RX path activation complete
>>>>
>>>> First DPRx timeout at:
>>>>
>>>> [  486.135483] thunderbolt 0000:c6:00.6: 0:6 <-> 2:13 (DP): DPRX read
>>>> timeout
>>>>
>>>> DP tunnel deactivating at:
>>>>
>>>>    [  486.331856] thunderbolt 0000:c6:00.6: 0:6 <-> 2:13 (DP): deactivating
>>>
>>> Hmm, we have dprx_timeout by default 12 seconds. How come it tears down the
>>> tunnel already?
>>
>> *I believe* it's because of a hot unplug event that occurs from it not
>> working.
>>
>>>
>>>>
>>>> First DPRx DPCD reading starts at:
>>>>
>>>> [  486.351765] amdgpu 0000:c4:00.0: amdgpu: [drm] DPIA AUX failed on
>>>> 0xf0000(10), error 7
>>>
>>> This would have maked it within the 12s if I read the timestamps right.
>>
>> Let me just share the whole log so you can see the full context.
>>
>> https://gist.github.com/superm1/6798fff44d0875b4ed0fe43d0794f81e
> 
> Thanks!
> 
> [Side note, you seem to have the link trained at Gen2 (20G) instead of Gen3
> (40G).]
> 
> Looking at the dmesg I recalled that there is an internal report about
> similar issue by Pooja and Rene (Cc'd) and it all boils down to this log
> entry:
> 
> [  489.339148] thunderbolt 0000:c6:00.6: 2:13: could not allocate DP tunnel
> 
> They made a hack patch that works it around, see below. I wonder if you
> could try that too? If that's the issue (not releasing HopIDs) then we need
> to figure a way to fix it properly. 

Thanks! I shared it with our internal team that reproduced it, will come 
back next week with their results.

> One suggestion is to release DP
> resources earlier, and of course doing full reset as done here. I would
> prefer "smallest" possible change.

Well FWIW the v1 of my patch for the reset was a lot smaller :P

https://lore.kernel.org/linux-usb/20251023050354.115015-1-superm1@kernel.org/#t

> 
> @Pooja, any updates on your side to this?
> 
> diff --git a/drivers/thunderbolt/tunnel.c b/drivers/thunderbolt/tunnel.c
> index 28c1e5c062f3..45f7ee940f10 100644
> --- a/drivers/thunderbolt/tunnel.c
> +++ b/drivers/thunderbolt/tunnel.c
> @@ -1084,6 +1084,9 @@ static void tb_dp_dprx_work(struct work_struct *work)
>   
>   static int tb_dp_dprx_start(struct tb_tunnel *tunnel)
>   {
> +	if (tunnel->dprx_started)
> +		return 0;
> +
>   	/*
>   	 * Bump up the reference to keep the tunnel around. It will be
>   	 * dropped in tb_dp_dprx_stop() once the tunnel is deactivated.