* USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
@ 2024-10-10 3:01 Aaron Rainbolt
2024-10-10 4:49 ` Mika Westerberg
0 siblings, 1 reply; 29+ messages in thread
From: Aaron Rainbolt @ 2024-10-10 3:01 UTC (permalink / raw)
To: mika.westerberg, YehezkelShB, michael.jamet, andreas.noever
Cc: linux-usb, mmikowski, linux-kernel
We're experiencing a Linux kernel bug affecting multiple Clevo X370SNx1
laptops (specifically the X370SNW1 variant). The bug appears to be
present in kernels greater than or equal to 6.5, worsening
significantly with kernel 6.11.2 (latest stable at time of this
writing). It is unclear if all of the issues encountered are the same
bug, however the primary problem we've run into appears to be a
consequence of the power management code involving Intel Barlow Ridge
controllers and DisplayPort. The issue occurs with in-kernel Nouveau
drivers and also with proprietary NVIDIA drivers.
When a DisplayPort monitor is attached to these laptops via a USB-C
connection, the monitor is recognized by the system and comes on for
approximately 15 seconds. It then blanks out and is automatically
disconnected from the system as if it had been unplugged. It will
remain that way indefinitely until unplugged and replugged, or until
something "jiggles" (for lack of a better term) the thunderbolt driver.
When either of these things occur, the display will re-attach and come
back on for 15 seconds, then blank out and detach again. There are
various different things that can "jiggle" the thunderbolt driver,
including but not limited to:
* Running `lspci -k` (this one came as a particular surprise)
* Removing and re-inserting the thunderbolt driver (`sudo modprobe -r
thunderbolt; sleep 1; sudo modprobe thunderbolt`)
* Running `nvidia-detector` while proprietary NVIDIA drivers are loaded
It is possible to mitigate this issue by simply running
`sudo modprobe -r thunderbolt` or `sudo rmmod thunderbolt` and then
leaving the driver unloaded. USB-C displays become stable after this -
they are recognized when attached and remain recognized and functional
indefinitely as one would expect.
We believe this is related to the Intel Barlow Ridge USB4 controller
because:
* Removing the thunderbolt driver restores normal display operation.
* This issue was *not* a problem on Clevo X370SNx machines, which are
identical to the X370SNx1 except for the Maple Ridge TBT controller
on the board has been replaced with a Barlow Ridge USB4 controller.
* This problem does not occur on the affected models with the 6.1
kernel. It occurs with the 6.5 kernel and on all newer kernels we
have tried.
Furthermore, from inspecting the Thunderbolt driver code, we believe
this is related to the power management features of the driver, because:
* There is only one 15-second timeout defined in the driver source
code, that being TB_AUTOSUSPEND_DELAY in drivers/thunderbolt/tb.h
* On earlier kernels (Ubuntu’s variant of 6.8 at least), displays are
stable even when the thunderbolt driver is loaded if we:
* Remove the thunderbolt driver
* Attach a USB-C dock
* Attach displays to the dock (we used 2 4K HDMI monitors)
* Reload the thunderbolt driver
During our investigation, we discovered commit
a75e0684efe567ae5f6a8e91a8360c4c1773cf3a (patch on mailing list at
https://lore.kernel.org/linux-usb/20240213114318.3023150-1-mika.westerberg@linux.intel.com/)
which appears to be a fix for this exact problem. It adds a quirk for
Intel Barlow Ridge controllers, which detects when a DisplayPort device
has been plugged directly into the USB4 port (thus using "redrive"
mode), and instructs the power management subsystem to not power the
chip down during this time if so. Unfortunately, this quirk seems to be
silently ignored, as we built a custom kernel with some `printk` lines
added to the `tb_enter_redrive` and `tb_exit_redrive` functions to
announce when they were called, and nothing in the dmesg log indicated
that they had been called when we did this.
This bug is easily reproducible using the stock kernels in Kubuntu
22.04, Kubuntu 24.04, Kali Linux 2024.2, and Fedora Workstation
Rawhide. Similar behavior is observed across all of these distributions.
We built the 6.11.2 kernel from source and tested it on Kubuntu 24.04,
but while the kernel built, installed, and functioned properly in most
respects, it actually made the problem with USB-C displays worse. As
long as the thunderbolt driver was loaded, no displays were detected
when plugged in (not for even a short length of time), and when the
thunderbolt driver was unloaded, displays would only be recognized and
function if there was only one display attached. Attaching a second
display resulted in the first external display becoming detached and
the second display not coming on. Unplugging the second display
resulted in the first display reattaching. This machine supports up to
three external displays and this has proven to be achievable and stable
with earlier kernels. No valuable error messages were logged in dmesg
when these problems occurred.
Our testing has been limited to the Clevo X370SNW1 model, however we
expect that the X370SNV1 model will exhibit the same issues as it uses
very similar internal components on the system board.
This is basically the extent of our knowledge at this point. We
attempted various patches on Ubuntu's 6.8 kernel to resolve the issue,
all without success:
* We attempted reverting fd4d58d1fef9ae9b0ee235eaad73d2e0a6a73025
(thunderbolt: Enable CL2 low power state), which had no effect.
* We noticed that one of the Barlow Ridge bridge controllers
listed by `lspci -k` appeared to not have its device ID in
drivers/thunderbolt/nhi.h and there was a corresponding quirk in
drivers/thunderbolt/quirks.c that looked like it might be vaguely
related to the issue (specifically quirk_usb3_maximum_bandwidth), so
we tried adding that device to the appropriate files in order to make
that quirk apply to that device as well, this had no visible effect
on the kernel's operation and did not resolve the issue.
* After narrowing it down to `quirk_block_rpm_in_redrive`, we attempted
adding a new `thunderbolt.kf_force_redrive` kernel parameter in
drivers/thunderbolt/tb.c that forced the code in
`tb_enter_redrive` and `tb_exit_redrive` to be executed even *if* the
device didn't have the appropriate quirk bit set, in the hopes that
this would make the quirk execute and resolve the issue. What ended
up happening was somehow `tb_enter_redrive` was never called at all
and `tb_exit_redrive` was called. This in turn made it so that no
USB-C displays would even be recognized for a short period of time if
the thunderbolt driver was loaded.
* Looking at PCI vendor IDs, we noticed that the PCI vendor ID used to
recognize all Intel controllers in drivers/thunderbolt/quirks.c was
0x8087, whereas the Barlow Ridge controller in our device reported a
vendor ID of 0x8086. On the off chance that this was a typo of epic
proportions, we tried adjusting all of the occurrences of 0x8087 in
the tb_quirks[] array to PCI_VENDOR_ID_INTEL (which is defined as
0x8086 in include/linux/pci_ids.h). This has no visible effect on the
kernel's behavior, and did not resolve the issue. (Presumably there's
something going on with the IDs there that we're not aware of.)
As to my speculation as to what's wrong, I believe this is likely a
combination of two things:
* Some data in the `tb_quirks` array in drivers/thunderbolt/quirks.c is
incorrect and leading to the Barlow Ridge controllers not being
recognized as needing the DisplayPort redrive mode quirk.
* The code in drivers/thunderbolt/tb.c `tb_dp_resource_unavailable`
that controls whether or not to run `tb_enter_redrive` is faulty in
some way and is not calling `tb_enter_redrive` in all scenarios where
it is necessary. To be clear, the exact code I'm talking about is
this chunk from the aforementioned function:
tunnel = tb_find_tunnel(tb, TB_TUNNEL_DP, in, out);
if (tunnel)
tb_deactivate_and_free_tunnel(tunnel);
else
tb_enter_redrive(port);
Finally, this is probably a result of me misreading the driver code
somehow, but I was surprised by the following conditional at the top
of `tb_enter_redrive`:
if (!(sw->quirks & QUIRK_KEEP_POWER_IN_DP_REDRIVE))
return;
To me this reads as "if the DP redrive quirk bit is set, return and do
nothing. Otherwise, if the bit is not set, run the quirk function."
This is the opposite of what I would expect - shouldn't the code run if
the bit is set, not if it is clear? Or does the bit being unset mean
that the quirk is active? (I do not believe that this is the root cause
of the issue because even when I forced this function to run any time
it was invoked, it wasn't being invoked at all.)
This issue has only been definitively reproduced on already-EOL kernels
due to the (potentially related) problem encountered with 6.11.2.
However based on a code comparison it appears all of the apparently
relevant code (that which deals with the DP quirk) is identical between
Ubuntu's variation of the 6.8 kernel and the tip of the mainline master
branch. Therefore I believe this issue very likely impacts the latest
mainline kernel.
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-10-10 3:01 USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue? Aaron Rainbolt
@ 2024-10-10 4:49 ` Mika Westerberg
2024-10-11 4:26 ` Aaron Rainbolt
0 siblings, 1 reply; 29+ messages in thread
From: Mika Westerberg @ 2024-10-10 4:49 UTC (permalink / raw)
To: Aaron Rainbolt
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel
Hi,
On Wed, Oct 09, 2024 at 10:01:18PM -0500, Aaron Rainbolt wrote:
> We're experiencing a Linux kernel bug affecting multiple Clevo X370SNx1
> laptops (specifically the X370SNW1 variant). The bug appears to be
> present in kernels greater than or equal to 6.5, worsening
> significantly with kernel 6.11.2 (latest stable at time of this
> writing). It is unclear if all of the issues encountered are the same
> bug, however the primary problem we've run into appears to be a
> consequence of the power management code involving Intel Barlow Ridge
> controllers and DisplayPort. The issue occurs with in-kernel Nouveau
> drivers and also with proprietary NVIDIA drivers.
>
> When a DisplayPort monitor is attached to these laptops via a USB-C
> connection, the monitor is recognized by the system and comes on for
> approximately 15 seconds. It then blanks out and is automatically
> disconnected from the system as if it had been unplugged. It will
> remain that way indefinitely until unplugged and replugged, or until
> something "jiggles" (for lack of a better term) the thunderbolt driver.
> When either of these things occur, the display will re-attach and come
> back on for 15 seconds, then blank out and detach again. There are
> various different things that can "jiggle" the thunderbolt driver,
> including but not limited to:
>
> * Running `lspci -k` (this one came as a particular surprise)
> * Removing and re-inserting the thunderbolt driver (`sudo modprobe -r
> thunderbolt; sleep 1; sudo modprobe thunderbolt`)
> * Running `nvidia-detector` while proprietary NVIDIA drivers are loaded
Or just disabling runtime PM, I presume.
> It is possible to mitigate this issue by simply running
> `sudo modprobe -r thunderbolt` or `sudo rmmod thunderbolt` and then
> leaving the driver unloaded. USB-C displays become stable after this -
> they are recognized when attached and remain recognized and functional
> indefinitely as one would expect.
>
> We believe this is related to the Intel Barlow Ridge USB4 controller
> because:
>
> * Removing the thunderbolt driver restores normal display operation.
> * This issue was *not* a problem on Clevo X370SNx machines, which are
> identical to the X370SNx1 except for the Maple Ridge TBT controller
> on the board has been replaced with a Barlow Ridge USB4 controller.
> * This problem does not occur on the affected models with the 6.1
> kernel. It occurs with the 6.5 kernel and on all newer kernels we
> have tried.
>
> Furthermore, from inspecting the Thunderbolt driver code, we believe
> this is related to the power management features of the driver, because:
>
> * There is only one 15-second timeout defined in the driver source
> code, that being TB_AUTOSUSPEND_DELAY in drivers/thunderbolt/tb.h
> * On earlier kernels (Ubuntu’s variant of 6.8 at least), displays are
> stable even when the thunderbolt driver is loaded if we:
> * Remove the thunderbolt driver
> * Attach a USB-C dock
> * Attach displays to the dock (we used 2 4K HDMI monitors)
> * Reload the thunderbolt driver
>
> During our investigation, we discovered commit
> a75e0684efe567ae5f6a8e91a8360c4c1773cf3a (patch on mailing list at
> https://lore.kernel.org/linux-usb/20240213114318.3023150-1-mika.westerberg@linux.intel.com/)
> which appears to be a fix for this exact problem. It adds a quirk for
> Intel Barlow Ridge controllers, which detects when a DisplayPort device
> has been plugged directly into the USB4 port (thus using "redrive"
> mode), and instructs the power management subsystem to not power the
> chip down during this time if so. Unfortunately, this quirk seems to be
> silently ignored, as we built a custom kernel with some `printk` lines
> added to the `tb_enter_redrive` and `tb_exit_redrive` functions to
> announce when they were called, and nothing in the dmesg log indicated
> that they had been called when we did this.
>
> This bug is easily reproducible using the stock kernels in Kubuntu
> 22.04, Kubuntu 24.04, Kali Linux 2024.2, and Fedora Workstation
> Rawhide. Similar behavior is observed across all of these distributions.
>
> We built the 6.11.2 kernel from source and tested it on Kubuntu 24.04,
> but while the kernel built, installed, and functioned properly in most
> respects, it actually made the problem with USB-C displays worse. As
> long as the thunderbolt driver was loaded, no displays were detected
> when plugged in (not for even a short length of time), and when the
> thunderbolt driver was unloaded, displays would only be recognized and
> function if there was only one display attached. Attaching a second
> display resulted in the first external display becoming detached and
> the second display not coming on. Unplugging the second display
> resulted in the first display reattaching. This machine supports up to
> three external displays and this has proven to be achievable and stable
> with earlier kernels. No valuable error messages were logged in dmesg
> when these problems occurred.
>
> Our testing has been limited to the Clevo X370SNW1 model, however we
> expect that the X370SNV1 model will exhibit the same issues as it uses
> very similar internal components on the system board.
>
> This is basically the extent of our knowledge at this point. We
> attempted various patches on Ubuntu's 6.8 kernel to resolve the issue,
> all without success:
>
> * We attempted reverting fd4d58d1fef9ae9b0ee235eaad73d2e0a6a73025
> (thunderbolt: Enable CL2 low power state), which had no effect.
> * We noticed that one of the Barlow Ridge bridge controllers
> listed by `lspci -k` appeared to not have its device ID in
> drivers/thunderbolt/nhi.h and there was a corresponding quirk in
> drivers/thunderbolt/quirks.c that looked like it might be vaguely
> related to the issue (specifically quirk_usb3_maximum_bandwidth), so
> we tried adding that device to the appropriate files in order to make
> that quirk apply to that device as well, this had no visible effect
> on the kernel's operation and did not resolve the issue.
> * After narrowing it down to `quirk_block_rpm_in_redrive`, we attempted
> adding a new `thunderbolt.kf_force_redrive` kernel parameter in
> drivers/thunderbolt/tb.c that forced the code in
> `tb_enter_redrive` and `tb_exit_redrive` to be executed even *if* the
> device didn't have the appropriate quirk bit set, in the hopes that
> this would make the quirk execute and resolve the issue. What ended
> up happening was somehow `tb_enter_redrive` was never called at all
> and `tb_exit_redrive` was called. This in turn made it so that no
> USB-C displays would even be recognized for a short period of time if
> the thunderbolt driver was loaded.
> * Looking at PCI vendor IDs, we noticed that the PCI vendor ID used to
> recognize all Intel controllers in drivers/thunderbolt/quirks.c was
> 0x8087, whereas the Barlow Ridge controller in our device reported a
> vendor ID of 0x8086. On the off chance that this was a typo of epic
> proportions, we tried adjusting all of the occurrences of 0x8087 in
> the tb_quirks[] array to PCI_VENDOR_ID_INTEL (which is defined as
> 0x8086 in include/linux/pci_ids.h). This has no visible effect on the
> kernel's behavior, and did not resolve the issue. (Presumably there's
> something going on with the IDs there that we're not aware of.)
>
> As to my speculation as to what's wrong, I believe this is likely a
> combination of two things:
>
> * Some data in the `tb_quirks` array in drivers/thunderbolt/quirks.c is
> incorrect and leading to the Barlow Ridge controllers not being
> recognized as needing the DisplayPort redrive mode quirk.
> * The code in drivers/thunderbolt/tb.c `tb_dp_resource_unavailable`
> that controls whether or not to run `tb_enter_redrive` is faulty in
> some way and is not calling `tb_enter_redrive` in all scenarios where
> it is necessary. To be clear, the exact code I'm talking about is
> this chunk from the aforementioned function:
>
> tunnel = tb_find_tunnel(tb, TB_TUNNEL_DP, in, out);
> if (tunnel)
> tb_deactivate_and_free_tunnel(tunnel);
> else
> tb_enter_redrive(port);
>
> Finally, this is probably a result of me misreading the driver code
> somehow, but I was surprised by the following conditional at the top
> of `tb_enter_redrive`:
>
> if (!(sw->quirks & QUIRK_KEEP_POWER_IN_DP_REDRIVE))
> return;
>
> To me this reads as "if the DP redrive quirk bit is set, return and do
> nothing. Otherwise, if the bit is not set, run the quirk function."
There is the "return;" which reads that if the quirk is not set, return
from this function early.
> This is the opposite of what I would expect - shouldn't the code run if
> the bit is set, not if it is clear? Or does the bit being unset mean
> that the quirk is active? (I do not believe that this is the root cause
> of the issue because even when I forced this function to run any time
> it was invoked, it wasn't being invoked at all.)
Okay, thanks for the very detailed report.
We need bit more information to investigate this. The commit you
referred is exactly for this purpose and I'm surprised it did not work
but also the Barlow Ridge PCI IDs are suprised too, as if this would
have some old firmware or something.
Can you share full dmesg with the repro and "thunderbolt.dyndbg=+p" in
the kernel command line?
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-10-10 4:49 ` Mika Westerberg
@ 2024-10-11 4:26 ` Aaron Rainbolt
2024-10-11 16:38 ` Mika Westerberg
0 siblings, 1 reply; 29+ messages in thread
From: Aaron Rainbolt @ 2024-10-11 4:26 UTC (permalink / raw)
To: Mika Westerberg
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel
[-- Attachment #1: Type: text/plain, Size: 11216 bytes --]
On Thu, 10 Oct 2024 07:49:19 +0300
Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
> Hi,
>
> On Wed, Oct 09, 2024 at 10:01:18PM -0500, Aaron Rainbolt wrote:
> > We're experiencing a Linux kernel bug affecting multiple Clevo
> > X370SNx1 laptops (specifically the X370SNW1 variant). The bug
> > appears to be present in kernels greater than or equal to 6.5,
> > worsening significantly with kernel 6.11.2 (latest stable at time
> > of this writing). It is unclear if all of the issues encountered
> > are the same bug, however the primary problem we've run into
> > appears to be a consequence of the power management code involving
> > Intel Barlow Ridge controllers and DisplayPort. The issue occurs
> > with in-kernel Nouveau drivers and also with proprietary NVIDIA
> > drivers.
> >
> > When a DisplayPort monitor is attached to these laptops via a USB-C
> > connection, the monitor is recognized by the system and comes on for
> > approximately 15 seconds. It then blanks out and is automatically
> > disconnected from the system as if it had been unplugged. It will
> > remain that way indefinitely until unplugged and replugged, or until
> > something "jiggles" (for lack of a better term) the thunderbolt
> > driver. When either of these things occur, the display will
> > re-attach and come back on for 15 seconds, then blank out and
> > detach again. There are various different things that can "jiggle"
> > the thunderbolt driver, including but not limited to:
> >
> > * Running `lspci -k` (this one came as a particular surprise)
> > * Removing and re-inserting the thunderbolt driver (`sudo modprobe
> > -r thunderbolt; sleep 1; sudo modprobe thunderbolt`)
> > * Running `nvidia-detector` while proprietary NVIDIA drivers are
> > loaded
>
> Or just disabling runtime PM, I presume.
>
> > It is possible to mitigate this issue by simply running
> > `sudo modprobe -r thunderbolt` or `sudo rmmod thunderbolt` and then
> > leaving the driver unloaded. USB-C displays become stable after
> > this - they are recognized when attached and remain recognized and
> > functional indefinitely as one would expect.
> >
> > We believe this is related to the Intel Barlow Ridge USB4 controller
> > because:
> >
> > * Removing the thunderbolt driver restores normal display operation.
> > * This issue was *not* a problem on Clevo X370SNx machines, which
> > are identical to the X370SNx1 except for the Maple Ridge TBT
> > controller on the board has been replaced with a Barlow Ridge USB4
> > controller.
> > * This problem does not occur on the affected models with the 6.1
> > kernel. It occurs with the 6.5 kernel and on all newer kernels we
> > have tried.
> >
> > Furthermore, from inspecting the Thunderbolt driver code, we believe
> > this is related to the power management features of the driver,
> > because:
> >
> > * There is only one 15-second timeout defined in the driver source
> > code, that being TB_AUTOSUSPEND_DELAY in drivers/thunderbolt/tb.h
> > * On earlier kernels (Ubuntu’s variant of 6.8 at least), displays
> > are stable even when the thunderbolt driver is loaded if we:
> > * Remove the thunderbolt driver
> > * Attach a USB-C dock
> > * Attach displays to the dock (we used 2 4K HDMI monitors)
> > * Reload the thunderbolt driver
> >
> > During our investigation, we discovered commit
> > a75e0684efe567ae5f6a8e91a8360c4c1773cf3a (patch on mailing list at
> > https://lore.kernel.org/linux-usb/20240213114318.3023150-1-mika.westerberg@linux.intel.com/)
> > which appears to be a fix for this exact problem. It adds a quirk
> > for Intel Barlow Ridge controllers, which detects when a
> > DisplayPort device has been plugged directly into the USB4 port
> > (thus using "redrive" mode), and instructs the power management
> > subsystem to not power the chip down during this time if so.
> > Unfortunately, this quirk seems to be silently ignored, as we built
> > a custom kernel with some `printk` lines added to the
> > `tb_enter_redrive` and `tb_exit_redrive` functions to announce when
> > they were called, and nothing in the dmesg log indicated that they
> > had been called when we did this.
> >
> > This bug is easily reproducible using the stock kernels in Kubuntu
> > 22.04, Kubuntu 24.04, Kali Linux 2024.2, and Fedora Workstation
> > Rawhide. Similar behavior is observed across all of these
> > distributions.
> >
> > We built the 6.11.2 kernel from source and tested it on Kubuntu
> > 24.04, but while the kernel built, installed, and functioned
> > properly in most respects, it actually made the problem with USB-C
> > displays worse. As long as the thunderbolt driver was loaded, no
> > displays were detected when plugged in (not for even a short length
> > of time), and when the thunderbolt driver was unloaded, displays
> > would only be recognized and function if there was only one display
> > attached. Attaching a second display resulted in the first external
> > display becoming detached and the second display not coming on.
> > Unplugging the second display resulted in the first display
> > reattaching. This machine supports up to three external displays
> > and this has proven to be achievable and stable with earlier
> > kernels. No valuable error messages were logged in dmesg when these
> > problems occurred.
> >
> > Our testing has been limited to the Clevo X370SNW1 model, however we
> > expect that the X370SNV1 model will exhibit the same issues as it
> > uses very similar internal components on the system board.
> >
> > This is basically the extent of our knowledge at this point. We
> > attempted various patches on Ubuntu's 6.8 kernel to resolve the
> > issue, all without success:
> >
> > * We attempted reverting fd4d58d1fef9ae9b0ee235eaad73d2e0a6a73025
> > (thunderbolt: Enable CL2 low power state), which had no effect.
> > * We noticed that one of the Barlow Ridge bridge controllers
> > listed by `lspci -k` appeared to not have its device ID in
> > drivers/thunderbolt/nhi.h and there was a corresponding quirk in
> > drivers/thunderbolt/quirks.c that looked like it might be vaguely
> > related to the issue (specifically quirk_usb3_maximum_bandwidth),
> > so we tried adding that device to the appropriate files in order to
> > make that quirk apply to that device as well, this had no visible
> > effect on the kernel's operation and did not resolve the issue.
> > * After narrowing it down to `quirk_block_rpm_in_redrive`, we
> > attempted adding a new `thunderbolt.kf_force_redrive` kernel
> > parameter in drivers/thunderbolt/tb.c that forced the code in
> > `tb_enter_redrive` and `tb_exit_redrive` to be executed even *if*
> > the device didn't have the appropriate quirk bit set, in the hopes
> > that this would make the quirk execute and resolve the issue. What
> > ended up happening was somehow `tb_enter_redrive` was never called
> > at all and `tb_exit_redrive` was called. This in turn made it so
> > that no USB-C displays would even be recognized for a short period
> > of time if the thunderbolt driver was loaded.
> > * Looking at PCI vendor IDs, we noticed that the PCI vendor ID used
> > to recognize all Intel controllers in drivers/thunderbolt/quirks.c
> > was 0x8087, whereas the Barlow Ridge controller in our device
> > reported a vendor ID of 0x8086. On the off chance that this was a
> > typo of epic proportions, we tried adjusting all of the occurrences
> > of 0x8087 in the tb_quirks[] array to PCI_VENDOR_ID_INTEL (which is
> > defined as 0x8086 in include/linux/pci_ids.h). This has no visible
> > effect on the kernel's behavior, and did not resolve the issue.
> > (Presumably there's something going on with the IDs there that
> > we're not aware of.)
> >
> > As to my speculation as to what's wrong, I believe this is likely a
> > combination of two things:
> >
> > * Some data in the `tb_quirks` array in
> > drivers/thunderbolt/quirks.c is incorrect and leading to the Barlow
> > Ridge controllers not being recognized as needing the DisplayPort
> > redrive mode quirk.
> > * The code in drivers/thunderbolt/tb.c `tb_dp_resource_unavailable`
> > that controls whether or not to run `tb_enter_redrive` is faulty
> > in some way and is not calling `tb_enter_redrive` in all scenarios
> > where it is necessary. To be clear, the exact code I'm talking
> > about is this chunk from the aforementioned function:
> >
> > tunnel = tb_find_tunnel(tb, TB_TUNNEL_DP, in, out);
> > if (tunnel)
> > tb_deactivate_and_free_tunnel(tunnel);
> > else
> > tb_enter_redrive(port);
> >
> > Finally, this is probably a result of me misreading the driver code
> > somehow, but I was surprised by the following conditional at the top
> > of `tb_enter_redrive`:
> >
> > if (!(sw->quirks & QUIRK_KEEP_POWER_IN_DP_REDRIVE))
> > return;
> >
> > To me this reads as "if the DP redrive quirk bit is set, return and
> > do nothing. Otherwise, if the bit is not set, run the quirk
> > function."
>
> There is the "return;" which reads that if the quirk is not set,
> return from this function early.
>
> > This is the opposite of what I would expect - shouldn't the code
> > run if the bit is set, not if it is clear? Or does the bit being
> > unset mean that the quirk is active? (I do not believe that this is
> > the root cause of the issue because even when I forced this
> > function to run any time it was invoked, it wasn't being invoked at
> > all.)
>
> Okay, thanks for the very detailed report.
>
> We need bit more information to investigate this. The commit you
> referred is exactly for this purpose and I'm surprised it did not work
> but also the Barlow Ridge PCI IDs are suprised too, as if this would
> have some old firmware or something.
>
> Can you share full dmesg with the repro and "thunderbolt.dyndbg=+p" in
> the kernel command line?
The full log is very long, so I've included it as an email attachment.
The exact steps taken after booting with the requested kernel parameter
were:
1. boot with thunderbolt.dyndbg=+p kernel param, no USB-C plugged in.
2. After login, hot-plug two USB-C cables. This time, the displays came
up and stayed resident (this happens sometimes)
3. Unplugged both cables.
4. Replugged both. This time, the displays did not show anything.
5. lspci -k "jiggled" the displays and they came back on.
6. After ~15s, the displays blacked out again.
7. Save to the demsg file after about 30s.
The laptop's firmware is fully up-to-date. One of the fixes we tried
was installing Windows 11, updating the firmware, and then
re-installing Kubuntu 24.04. This had no effect on the issue.
Notes:
* Kernel 6.1 does not exhibit this time out. 6.5 and later do.
* Windows 11 had very similar behavior before installing Windows
updates. After update, it was fixed.
* All distros and W11 were tested on the same hardware with the latest
firmware, so we know this is not a hardware failure.
Thanks for your help!
[-- Attachment #2: 2024-10-10-thunderbolt.dyndbg+p.log --]
[-- Type: text/x-log, Size: 137939 bytes --]
[ 0.000000] Linux version 6.8.0-45-kfocus (buildd@lcy02-amd64-017) (x86_64-linux-gnu-gcc-13 (Ubuntu 13.2.0-23ubuntu4) 13.2.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #45+kfocus2-Ubuntu SMP PREEMPT_DYNAMIC Fri Oct 4 17:21:48 UTC 2 (Ubuntu 6.8.0-45.45+kfocus2-kfocus 6.8.12)
[ 0.000000] Command line: BOOT_IMAGE=/@boot/vmlinuz-6.8.0-45-kfocus root=UUID=d4f6fb42-b08b-4b54-a060-a4e3fc1f51fd ro rootflags=subvol=@ quiet cryptdevice=UUID=9992e62a-e20e-4d65-8cd4-d1988f6f3ab3:luks-9992e62a-e20e-4d65-8cd4-d1988f6f3ab3 root=/dev/mapper/luks-9992e62a-e20e-4d65-8cd4-d1988f6f3ab3 splash modprobe.blacklist=nouveau modprobe.blacklist=ucsi_acpi tpm_tis.interrupts=0 intel_pstate=passive snd_hda_core.gpu_bind=0 pci=noaer loglevel=3 vt.handoff=7 thunderbolt.dyndbg=+p
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Hygon HygonGenuine
[ 0.000000] Centaur CentaurHauls
[ 0.000000] zhaoxin Shanghai
[ 0.000000] x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000002c228fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000002c229000-0x000000002cb28fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000002cb29000-0x000000002e93efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000002e93f000-0x00000000309defff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000309df000-0x000000003398efff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000003398f000-0x0000000033afefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x0000000033aff000-0x0000000033afffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000033b00000-0x00000000383fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000038e00000-0x00000000407fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000018bf7fffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] efi: EFI v2.8 by INSYDE Corp.
[ 0.000000] efi: ACPI=0x33afe000 ACPI 2.0=0x33afe014 TPMFinalLog=0x33866000 SMBIOS=0x2efda000 MEMATTR=0x27d90018 ESRT=0x28a1f018 MOKvar=0x2ef86000 INITRD=0x274bdf98 RNG=0x33a24018 TPMEventLog=0x274b0018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem90: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0xc0000000-0xcfffffff] reserved
[ 0.000000] efi: Remove mem92: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] secureboot: Secure boot disabled
[ 0.000000] SMBIOS 3.4 present.
[ 0.000000] DMI: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 0.000000] tsc: Detected 2400.000 MHz processor
[ 0.000000] tsc: Detected 2419.200 MHz TSC
[ 0.000009] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000013] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000022] last_pfn = 0x18bf800 max_arch_pfn = 0x400000000
[ 0.000028] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
[ 0.000031] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000804] last_pfn = 0x33b00 max_arch_pfn = 0x400000000
[ 0.009530] esrt: Reserving ESRT space from 0x0000000028a1f018 to 0x0000000028a1f0a0.
[ 0.009538] e820: update [mem 0x28a1f000-0x28a1ffff] usable ==> reserved
[ 0.009562] Using GB pages for direct mapping
[ 0.010106] secureboot: Secure boot disabled
[ 0.010107] RAMDISK: [mem 0x0d5ee000-0x17228fff]
[ 0.010658] ACPI: Early table checksum verification disabled
[ 0.010662] ACPI: RSDP 0x0000000033AFE014 000024 (v02 INSYDE)
[ 0.010668] ACPI: XSDT 0x0000000033A38188 00012C (v01 INSYDE ADL 00000002 01000013)
[ 0.010676] ACPI: FACP 0x0000000033ADB000 000114 (v06 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010683] ACPI: DSDT 0x0000000033A4E000 089652 (v02 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010687] ACPI: FACS 0x000000003383E000 000040
[ 0.010690] ACPI: UEFI 0x000000003398E000 0001CF (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
[ 0.010694] ACPI: SSDT 0x0000000033AF3000 00908F (v02 DptfTb DptfTabl 00001000 INTL 20200717)
[ 0.010698] ACPI: SSDT 0x0000000033AED000 005D34 (v02 CpuRef CpuSsdt 00003000 INTL 20200717)
[ 0.010702] ACPI: SSDT 0x0000000033AEA000 00276F (v02 SaSsdt SaSsdt 00003000 INTL 20200717)
[ 0.010706] ACPI: SSDT 0x0000000033AE6000 00328B (v02 INTEL IgfxSsdt 00003000 INTL 20200717)
[ 0.010709] ACPI: SSDT 0x0000000033AE5000 00077B (v02 INSYDE Tpm2Tabl 00001000 INTL 20200717)
[ 0.010713] ACPI: TPM2 0x0000000033AE4000 00004C (v04 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010717] ACPI: SSDT 0x0000000033ADF000 003249 (v02 INTEL DTbtSsdt 00001000 INTL 20200717)
[ 0.010720] ACPI: SSDT 0x0000000033ADD000 0016A6 (v02 INSYDE UsbCTabl 00001000 INTL 20200717)
[ 0.010724] ACPI: NHLT 0x0000000033ADC000 00002D (v00 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010727] ACPI: HPET 0x0000000033ADA000 000038 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010731] ACPI: APIC 0x0000000033AD9000 0001DC (v05 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010734] ACPI: MCFG 0x0000000033AD8000 00003C (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010738] ACPI: SSDT 0x0000000033A48000 0054E4 (v02 INSYDE ADL 00000002 01000013)
[ 0.010742] ACPI: WSMT 0x0000000033A47000 000028 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010745] ACPI: SSDT 0x0000000033A45000 0015FD (v02 INSYDE PtidDevc 00001000 INTL 20200717)
[ 0.010749] ACPI: SSDT 0x0000000033A3B000 009573 (v02 INSYDE TbtTypeC 00000000 INTL 20200717)
[ 0.010752] ACPI: DBGP 0x0000000033A3A000 000034 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010756] ACPI: DBG2 0x0000000033A39000 000054 (v00 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010759] ACPI: DMAR 0x0000000033AFD000 000088 (v01 INTEL ICL 00000002 ACPI 00040000)
[ 0.010763] ACPI: SSDT 0x0000000033A35000 002EE7 (v01 NvdRef NvdTabl 00001000 INTL 20200717)
[ 0.010766] ACPI: SSDT 0x0000000033A34000 000244 (v01 NvdRef NvdExt 00001000 INTL 20200717)
[ 0.010770] ACPI: SSDT 0x0000000033A33000 000640 (v01 NvdRef NvdDds 00001000 INTL 20200717)
[ 0.010774] ACPI: UEFI 0x000000003383B000 00063A (v01 INTEL RstVmdE 00000000 ACPI 00040000)
[ 0.010777] ACPI: UEFI 0x000000003383A000 00005C (v01 INTEL RstVmdV 00000000 ACPI 00040000)
[ 0.010781] ACPI: SSDT 0x0000000033A31000 001057 (v02 INTEL xh_rplsb 00000000 INTL 20200717)
[ 0.010784] ACPI: SSDT 0x0000000033A2D000 0039DA (v02 SocGpe SocGpe 00003000 INTL 20200717)
[ 0.010788] ACPI: SSDT 0x0000000033A29000 0039DA (v02 SocCmn SocCmn 00003000 INTL 20200717)
[ 0.010792] ACPI: SSDT 0x0000000033A28000 0000F8 (v02 INSYDE PcdTabl 00001000 INTL 20200717)
[ 0.010795] ACPI: FPDT 0x0000000033A27000 000044 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010799] ACPI: PHAT 0x0000000033A25000 0005ED (v01 INSYDE ADL 00000005 ACPI 00040000)
[ 0.010802] ACPI: BGRT 0x0000000033A26000 000038 (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
[ 0.010806] ACPI: Reserving FACP table memory at [mem 0x33adb000-0x33adb113]
[ 0.010808] ACPI: Reserving DSDT table memory at [mem 0x33a4e000-0x33ad7651]
[ 0.010809] ACPI: Reserving FACS table memory at [mem 0x3383e000-0x3383e03f]
[ 0.010810] ACPI: Reserving UEFI table memory at [mem 0x3398e000-0x3398e1ce]
[ 0.010811] ACPI: Reserving SSDT table memory at [mem 0x33af3000-0x33afc08e]
[ 0.010812] ACPI: Reserving SSDT table memory at [mem 0x33aed000-0x33af2d33]
[ 0.010813] ACPI: Reserving SSDT table memory at [mem 0x33aea000-0x33aec76e]
[ 0.010814] ACPI: Reserving SSDT table memory at [mem 0x33ae6000-0x33ae928a]
[ 0.010815] ACPI: Reserving SSDT table memory at [mem 0x33ae5000-0x33ae577a]
[ 0.010816] ACPI: Reserving TPM2 table memory at [mem 0x33ae4000-0x33ae404b]
[ 0.010817] ACPI: Reserving SSDT table memory at [mem 0x33adf000-0x33ae2248]
[ 0.010818] ACPI: Reserving SSDT table memory at [mem 0x33add000-0x33ade6a5]
[ 0.010819] ACPI: Reserving NHLT table memory at [mem 0x33adc000-0x33adc02c]
[ 0.010820] ACPI: Reserving HPET table memory at [mem 0x33ada000-0x33ada037]
[ 0.010821] ACPI: Reserving APIC table memory at [mem 0x33ad9000-0x33ad91db]
[ 0.010822] ACPI: Reserving MCFG table memory at [mem 0x33ad8000-0x33ad803b]
[ 0.010823] ACPI: Reserving SSDT table memory at [mem 0x33a48000-0x33a4d4e3]
[ 0.010824] ACPI: Reserving WSMT table memory at [mem 0x33a47000-0x33a47027]
[ 0.010825] ACPI: Reserving SSDT table memory at [mem 0x33a45000-0x33a465fc]
[ 0.010827] ACPI: Reserving SSDT table memory at [mem 0x33a3b000-0x33a44572]
[ 0.010828] ACPI: Reserving DBGP table memory at [mem 0x33a3a000-0x33a3a033]
[ 0.010829] ACPI: Reserving DBG2 table memory at [mem 0x33a39000-0x33a39053]
[ 0.010830] ACPI: Reserving DMAR table memory at [mem 0x33afd000-0x33afd087]
[ 0.010831] ACPI: Reserving SSDT table memory at [mem 0x33a35000-0x33a37ee6]
[ 0.010832] ACPI: Reserving SSDT table memory at [mem 0x33a34000-0x33a34243]
[ 0.010833] ACPI: Reserving SSDT table memory at [mem 0x33a33000-0x33a3363f]
[ 0.010834] ACPI: Reserving UEFI table memory at [mem 0x3383b000-0x3383b639]
[ 0.010835] ACPI: Reserving UEFI table memory at [mem 0x3383a000-0x3383a05b]
[ 0.010836] ACPI: Reserving SSDT table memory at [mem 0x33a31000-0x33a32056]
[ 0.010837] ACPI: Reserving SSDT table memory at [mem 0x33a2d000-0x33a309d9]
[ 0.010838] ACPI: Reserving SSDT table memory at [mem 0x33a29000-0x33a2c9d9]
[ 0.010839] ACPI: Reserving SSDT table memory at [mem 0x33a28000-0x33a280f7]
[ 0.010840] ACPI: Reserving FPDT table memory at [mem 0x33a27000-0x33a27043]
[ 0.010842] ACPI: Reserving PHAT table memory at [mem 0x33a25000-0x33a255ec]
[ 0.010843] ACPI: Reserving BGRT table memory at [mem 0x33a26000-0x33a26037]
[ 0.011076] No NUMA configuration found
[ 0.011078] Faking a node at [mem 0x0000000000000000-0x00000018bf7fffff]
[ 0.011086] NODE_DATA(0) allocated [mem 0x18bf7d5000-0x18bf7fffff]
[ 0.011400] Zone ranges:
[ 0.011401] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.011403] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.011405] Normal [mem 0x0000000100000000-0x00000018bf7fffff]
[ 0.011407] Device empty
[ 0.011408] Movable zone start for each node
[ 0.011410] Early memory node ranges
[ 0.011411] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.011413] node 0: [mem 0x0000000000100000-0x000000002c228fff]
[ 0.011414] node 0: [mem 0x000000002cb29000-0x000000002e93efff]
[ 0.011415] node 0: [mem 0x0000000033aff000-0x0000000033afffff]
[ 0.011416] node 0: [mem 0x0000000100000000-0x00000018bf7fffff]
[ 0.011424] Initmem setup node 0 [mem 0x0000000000001000-0x00000018bf7fffff]
[ 0.011430] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.011454] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.012572] On node 0, zone DMA32: 2304 pages in unavailable ranges
[ 0.012751] On node 0, zone DMA32: 20928 pages in unavailable ranges
[ 0.142815] On node 0, zone Normal: 17664 pages in unavailable ranges
[ 0.142834] On node 0, zone Normal: 2048 pages in unavailable ranges
[ 0.142904] Reserving Intel graphics memory at [mem 0x3c800000-0x407fffff]
[ 0.143535] ACPI: PM-Timer IO Port: 0x1808
[ 0.143546] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.143549] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.143549] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.143550] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.143551] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.143552] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.143553] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.143553] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.143554] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[ 0.143555] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[ 0.143556] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[ 0.143556] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[ 0.143557] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[ 0.143558] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[ 0.143559] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[ 0.143560] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[ 0.143560] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[ 0.143561] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[ 0.143562] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[ 0.143563] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[ 0.143564] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[ 0.143564] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[ 0.143565] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[ 0.143566] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.143605] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.143608] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.143610] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.143615] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.143616] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.143625] e820: update [mem 0x26c18000-0x26cd2fff] usable ==> reserved
[ 0.143637] TSC deadline timer available
[ 0.143637] smpboot: Allowing 32 CPUs, 0 hotplug CPUs
[ 0.143652] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.143654] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[ 0.143656] PM: hibernation: Registered nosave memory: [mem 0x26c18000-0x26cd2fff]
[ 0.143657] PM: hibernation: Registered nosave memory: [mem 0x28a1f000-0x28a1ffff]
[ 0.143659] PM: hibernation: Registered nosave memory: [mem 0x2c229000-0x2cb28fff]
[ 0.143660] PM: hibernation: Registered nosave memory: [mem 0x2e93f000-0x309defff]
[ 0.143661] PM: hibernation: Registered nosave memory: [mem 0x309df000-0x3398efff]
[ 0.143661] PM: hibernation: Registered nosave memory: [mem 0x3398f000-0x33afefff]
[ 0.143663] PM: hibernation: Registered nosave memory: [mem 0x33b00000-0x383fffff]
[ 0.143664] PM: hibernation: Registered nosave memory: [mem 0x38400000-0x38dfffff]
[ 0.143664] PM: hibernation: Registered nosave memory: [mem 0x38e00000-0x407fffff]
[ 0.143665] PM: hibernation: Registered nosave memory: [mem 0x40800000-0xfed1ffff]
[ 0.143666] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
[ 0.143667] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xffffffff]
[ 0.143668] [mem 0x40800000-0xfed1ffff] available for PCI devices
[ 0.143670] Booting paravirtualized kernel on bare hardware
[ 0.143673] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.143684] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1
[ 0.145501] percpu: Embedded 86 pages/cpu s229376 r8192 d114688 u524288
[ 0.145506] pcpu-alloc: s229376 r8192 d114688 u524288 alloc=1*2097152
[ 0.145509] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07
[ 0.145515] pcpu-alloc: [0] 08 09 10 11 [0] 12 13 14 15
[ 0.145520] pcpu-alloc: [0] 16 17 18 19 [0] 20 21 22 23
[ 0.145525] pcpu-alloc: [0] 24 25 26 27 [0] 28 29 30 31
[ 0.145548] Kernel command line: BOOT_IMAGE=/@boot/vmlinuz-6.8.0-45-kfocus root=UUID=d4f6fb42-b08b-4b54-a060-a4e3fc1f51fd ro rootflags=subvol=@ quiet cryptdevice=UUID=9992e62a-e20e-4d65-8cd4-d1988f6f3ab3:luks-9992e62a-e20e-4d65-8cd4-d1988f6f3ab3 root=/dev/mapper/luks-9992e62a-e20e-4d65-8cd4-d1988f6f3ab3 splash modprobe.blacklist=nouveau modprobe.blacklist=ucsi_acpi tpm_tis.interrupts=0 intel_pstate=passive snd_hda_core.gpu_bind=0 pci=noaer loglevel=3 vt.handoff=7 thunderbolt.dyndbg=+p
[ 0.145763] Unknown kernel command line parameters "splash BOOT_IMAGE=/@boot/vmlinuz-6.8.0-45-kfocus cryptdevice=UUID=9992e62a-e20e-4d65-8cd4-d1988f6f3ab3:luks-9992e62a-e20e-4d65-8cd4-d1988f6f3ab3", will be passed to user space.
[ 0.151112] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear)
[ 0.153793] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[ 0.154176] Fallback order for Node 0: 0
[ 0.154181] Built 1 zonelists, mobility grouping on. Total pages: 24697823
[ 0.154183] Policy zone: Normal
[ 0.154190] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.154198] software IO TLB: area num 32.
[ 0.335669] Memory: 98306000K/100360056K available (22528K kernel code, 4442K rwdata, 13908K rodata, 4976K init, 4732K bss, 2053796K reserved, 0K cma-reserved)
[ 0.337063] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[ 0.337096] ftrace: allocating 57873 entries in 227 pages
[ 0.346311] ftrace: allocated 227 pages with 5 groups
[ 0.347076] Dynamic Preempt: voluntary
[ 0.347226] rcu: Preemptible hierarchical RCU implementation.
[ 0.347227] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=32.
[ 0.347229] Trampoline variant of Tasks RCU enabled.
[ 0.347230] Rude variant of Tasks RCU enabled.
[ 0.347230] Tracing variant of Tasks RCU enabled.
[ 0.347231] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[ 0.347232] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[ 0.349844] NR_IRQS: 524544, nr_irqs: 2312, preallocated irqs: 16
[ 0.350174] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.350413] Console: colour dummy device 80x25
[ 0.350415] printk: legacy console [tty0] enabled
[ 0.350470] ACPI: Core revision 20230628
[ 0.350925] hpet: HPET dysfunctional in PC10. Force disabled.
[ 0.350926] APIC: Switch to symmetric I/O mode setup
[ 0.350928] DMAR: Host address width 39
[ 0.350929] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[ 0.350938] DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
[ 0.350941] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.350946] DMAR: dmar1: reg_base_addr fed91000 ver 5:0 cap d2008c40660462 ecap f050da
[ 0.350949] DMAR: RMRR base: 0x0000003c000000 end: 0x000000407fffff
[ 0.350951] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
[ 0.350953] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.350954] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.352933] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.352935] x2apic enabled
[ 0.353003] APIC: Switched APIC routing to: cluster x2apic
[ 0.357937] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
[ 0.357945] Calibrating delay loop (skipped), value calculated using timer frequency.. 4838.40 BogoMIPS (lpj=2419200)
[ 0.358012] CPU0: Thermal monitoring enabled (TM1)
[ 0.358014] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[ 0.358172] process: using mwait in idle threads
[ 0.358175] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[ 0.358176] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[ 0.358180] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.358184] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[ 0.358185] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.358186] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[ 0.358188] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.358191] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.358192] Register File Data Sampling: Mitigation: Clear Register File
[ 0.358203] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.358205] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.358206] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.358207] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[ 0.358208] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[ 0.358209] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.358210] x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8
[ 0.358212] x86/fpu: xstate_offset[11]: 840, xstate_sizes[11]: 16
[ 0.358213] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[ 0.358942] Freeing SMP alternatives memory: 48K
[ 0.358942] pid_max: default: 32768 minimum: 301
[ 0.358942] LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,integrity
[ 0.358942] landlock: Up and running.
[ 0.358942] Yama: becoming mindful.
[ 0.358942] AppArmor: AppArmor initialized
[ 0.358942] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.358942] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.358942] smpboot: CPU0: Intel(R) Core(TM) i9-14900HX (family: 0x6, model: 0xb7, stepping: 0x1)
[ 0.358942] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
[ 0.358942] RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
[ 0.358942] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
[ 0.358942] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline, AnyThread deprecated, Alderlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.358942] core: cpu_core PMU driver:
[ 0.358942] ... version: 5
[ 0.358942] ... bit width: 48
[ 0.358942] ... generic registers: 8
[ 0.358942] ... value mask: 0000ffffffffffff
[ 0.358942] ... max period: 00007fffffffffff
[ 0.358942] ... fixed-purpose events: 4
[ 0.358942] ... event mask: 0001000f000000ff
[ 0.358942] signal: max sigframe size: 3632
[ 0.358942] Estimated ratio of average max frequency by base frequency (times 1024): 2218
[ 0.358942] rcu: Hierarchical SRCU implementation.
[ 0.358942] rcu: Max phase no-delay instances is 400.
[ 0.360372] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.360648] smp: Bringing up secondary CPUs ...
[ 0.360752] smpboot: x86: Booting SMP configuration:
[ 0.360753] .... node #0, CPUs: #2 #4 #6 #8 #10 #12 #14 #16 #17 #18 #19 #20 #21 #22 #23 #24 #25 #26 #27 #28 #29 #30 #31
[ 0.008610] core: cpu_atom PMU driver: PEBS-via-PT
[ 0.008610] ... version: 5
[ 0.008610] ... bit width: 48
[ 0.008610] ... generic registers: 6
[ 0.008610] ... value mask: 0000ffffffffffff
[ 0.008610] ... max period: 00007fffffffffff
[ 0.008610] ... fixed-purpose events: 3
[ 0.008610] ... event mask: 000000070000003f
[ 0.375014] #1 #3 #5 #7 #9 #11 #13 #15
[ 0.384015] smp: Brought up 1 node, 32 CPUs
[ 0.384015] smpboot: Max logical packages: 1
[ 0.384015] smpboot: Total of 32 processors activated (154828.80 BogoMIPS)
[ 0.388076] devtmpfs: initialized
[ 0.388076] x86/mm: Memory block size: 2048MB
[ 0.389692] ACPI: PM: Registering ACPI NVS region [mem 0x309df000-0x3398efff] (50003968 bytes)
[ 0.390299] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.390351] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[ 0.390472] pinctrl core: initialized pinctrl subsystem
[ 0.390727] PM: RTC time: 03:44:22, date: 2024-10-11
[ 0.391294] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.391867] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[ 0.392292] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.392670] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.392681] audit: initializing netlink subsys (disabled)
[ 0.392688] audit: type=2000 audit(1728618261.034:1): state=initialized audit_enabled=0 res=1
[ 0.392688] thermal_sys: Registered thermal governor 'fair_share'
[ 0.392688] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.392688] thermal_sys: Registered thermal governor 'step_wise'
[ 0.392688] thermal_sys: Registered thermal governor 'user_space'
[ 0.392688] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.392688] EISA bus registered
[ 0.392688] cpuidle: using governor ladder
[ 0.392688] cpuidle: using governor menu
[ 0.392973] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.393129] PCI: ECAM [mem 0xc0000000-0xce0fffff] (base 0xc0000000) for domain 0000 [bus 00-e0]
[ 0.393148] PCI: Using configuration type 1 for base access
[ 0.393332] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.393332] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.393332] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.393332] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.393332] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.394107] ACPI: Added _OSI(Module Device)
[ 0.394109] ACPI: Added _OSI(Processor Device)
[ 0.394111] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.394112] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.530743] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.MHBR], AE_NOT_FOUND (20230628/psargs-330)
[ 0.530754] ACPI: Ignoring error and continuing table load
[ 0.530777] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PTID.PBAR], AE_NOT_FOUND (20230628/dsfield-500)
[ 0.538514] ACPI: 18 ACPI AML tables successfully acquired and loaded
[ 0.557460] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
[ 0.557463] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
[ 0.559282] ACPI: Dynamic OEM Table Load:
[ 0.559295] ACPI: SSDT 0xFFFF8C0802224400 000394 (v02 PmRef Cpu0Cst 00003001 INTL 20200717)
[ 0.561125] ACPI: Dynamic OEM Table Load:
[ 0.561132] ACPI: SSDT 0xFFFF8C080222F800 00053F (v02 PmRef Cpu0Ist 00003000 INTL 20200717)
[ 0.562988] ACPI: Dynamic OEM Table Load:
[ 0.562994] ACPI: SSDT 0xFFFF8C0803EB3C00 0001AB (v02 PmRef Cpu0Psd 00003000 INTL 20200717)
[ 0.564754] ACPI: Dynamic OEM Table Load:
[ 0.564761] ACPI: SSDT 0xFFFF8C080222A800 0004B5 (v02 PmRef Cpu0Hwp 00003000 INTL 20200717)
[ 0.567114] ACPI: Dynamic OEM Table Load:
[ 0.567130] ACPI: SSDT 0xFFFF8C0802232000 001BAF (v02 PmRef ApIst 00003000 INTL 20200717)
[ 0.569870] ACPI: Dynamic OEM Table Load:
[ 0.569878] ACPI: SSDT 0xFFFF8C0802234000 001038 (v02 PmRef ApHwp 00003000 INTL 20200717)
[ 0.572332] ACPI: Dynamic OEM Table Load:
[ 0.572340] ACPI: SSDT 0xFFFF8C0802236000 001349 (v02 PmRef ApPsd 00003000 INTL 20200717)
[ 0.574849] ACPI: Dynamic OEM Table Load:
[ 0.574857] ACPI: SSDT 0xFFFF8C0803EF1000 000FBB (v02 PmRef ApCst 00003000 INTL 20200717)
[ 0.593613] ACPI: _OSC evaluated successfully for all CPUs
[ 0.593737] ACPI: EC: EC started
[ 0.593738] ACPI: EC: interrupt blocked
[ 0.612579] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.612582] ACPI: \_SB_.PC00.LPCB.EC__: Boot DSDT EC used to handle transactions
[ 0.612584] ACPI: Interpreter enabled
[ 0.612672] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.612673] ACPI: Using IOAPIC for interrupt routing
[ 0.615099] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.615101] PCI: Ignoring E820 reservations for host bridge windows
[ 0.616883] ACPI: Enabled 11 GPEs in block 00 to 7F
[ 0.619222] ACPI: \_SB_.PC00.PEG2.PG00: New power resource
[ 0.647381] ACPI: \_SB_.PC00.XHCI.RHUB.HS14.BTRT: New power resource
[ 0.647405] ACPI: \_SB_.PC00.XHCI.RHUB.HS14.DBTR: New power resource
[ 0.657277] ACPI: \_SB_.PC00.CNVW.WRST: New power resource
[ 0.662794] ACPI: \_SB_.PC00.RP09.PXP_: New power resource
[ 0.688530] ACPI: \PIN_: New power resource
[ 0.688958] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
[ 0.688965] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.692905] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR DPC]
[ 0.698743] PCI host bridge to bus 0000:00
[ 0.698745] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.698747] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.698749] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.698751] pci_bus 0000:00: root bus resource [mem 0x40800000-0xbfffffff window]
[ 0.698752] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[ 0.698755] pci_bus 0000:00: root bus resource [bus 00-e0]
[ 0.698796] pci 0000:00:00.0: [8086:a702] type 00 class 0x060000 conventional PCI endpoint
[ 0.698925] pci 0000:00:01.0: [8086:a70d] type 01 class 0x060400 PCIe Root Port
[ 0.698942] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.699001] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.699026] pci 0000:00:01.0: PTM enabled (root), 4ns granularity
[ 0.699797] pci 0000:00:01.1: [8086:a72d] type 01 class 0x060400 PCIe Root Port
[ 0.699814] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 0.699817] pci 0000:00:01.1: bridge window [io 0x3000-0x3fff]
[ 0.699819] pci 0000:00:01.1: bridge window [mem 0x4e000000-0x4f0fffff]
[ 0.699825] pci 0000:00:01.1: bridge window [mem 0x6000000000-0x6401ffffff 64bit pref]
[ 0.699876] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[ 0.699900] pci 0000:00:01.1: PTM enabled (root), 4ns granularity
[ 0.700640] pci 0000:00:02.0: [8086:a788] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
[ 0.700651] pci 0000:00:02.0: BAR 0 [mem 0x6404000000-0x6404ffffff 64bit]
[ 0.700657] pci 0000:00:02.0: BAR 2 [mem 0x4000000000-0x400fffffff 64bit pref]
[ 0.700661] pci 0000:00:02.0: BAR 4 [io 0x4000-0x403f]
[ 0.700679] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
[ 0.700682] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.700712] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x00ffffff 64bit]
[ 0.700714] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x06ffffff 64bit]: contains BAR 0 for 7 VFs
[ 0.700719] pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0x1fffffff 64bit pref]
[ 0.700721] pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0xdfffffff 64bit pref]: contains BAR 2 for 7 VFs
[ 0.700902] pci 0000:00:04.0: [8086:a71d] type 00 class 0x118000 conventional PCI endpoint
[ 0.700918] pci 0000:00:04.0: BAR 0 [mem 0x6405200000-0x640521ffff 64bit]
[ 0.701257] pci 0000:00:06.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 0.702027] pci 0000:00:08.0: [8086:a74f] type 00 class 0x088000 conventional PCI endpoint
[ 0.702038] pci 0000:00:08.0: BAR 0 [mem 0x6405241000-0x6405241fff 64bit]
[ 0.702145] pci 0000:00:0a.0: [8086:a77d] type 00 class 0x118000 PCIe Root Complex Integrated Endpoint
[ 0.702154] pci 0000:00:0a.0: BAR 0 [mem 0x6405220000-0x6405227fff 64bit]
[ 0.702173] pci 0000:00:0a.0: enabling Extended Tags
[ 0.702281] pci 0000:00:0e.0: [8086:a77f] type 00 class 0x010400 PCIe Root Complex Integrated Endpoint
[ 0.702296] pci 0000:00:0e.0: BAR 0 [mem 0x6402000000-0x6403ffffff 64bit]
[ 0.702303] pci 0000:00:0e.0: BAR 2 [mem 0x4c000000-0x4dffffff]
[ 0.702319] pci 0000:00:0e.0: BAR 4 [mem 0x6405100000-0x64051fffff 64bit]
[ 0.702639] pci 0000:00:14.0: [8086:7a60] type 00 class 0x0c0330 conventional PCI endpoint
[ 0.702660] pci 0000:00:14.0: BAR 0 [mem 0x4f380000-0x4f38ffff 64bit]
[ 0.702741] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.703321] pci 0000:00:14.2: [8086:7a27] type 00 class 0x050000 conventional PCI endpoint
[ 0.703345] pci 0000:00:14.2: BAR 0 [mem 0x6405238000-0x640523bfff 64bit]
[ 0.703361] pci 0000:00:14.2: BAR 2 [mem 0x6405240000-0x6405240fff 64bit]
[ 0.703516] pci 0000:00:14.3: [8086:7a70] type 00 class 0x028000 PCIe Root Complex Integrated Endpoint
[ 0.703563] pci 0000:00:14.3: BAR 0 [mem 0x6405234000-0x6405237fff 64bit]
[ 0.703729] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
[ 0.704143] pci 0000:00:15.0: [8086:7a4c] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.704214] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.704772] pci 0000:00:15.1: [8086:7a4d] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.704843] pci 0000:00:15.1: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.705349] pci 0000:00:16.0: [8086:7a68] type 00 class 0x078000 conventional PCI endpoint
[ 0.705372] pci 0000:00:16.0: BAR 0 [mem 0x640523d000-0x640523dfff 64bit]
[ 0.705455] pci 0000:00:16.0: PME# supported from D3hot
[ 0.706016] pci 0000:00:1c.0: [8086:7a3e] type 01 class 0x060400 PCIe Root Port
[ 0.706048] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.706055] pci 0000:00:1c.0: bridge window [mem 0x4f100000-0x4f2fffff]
[ 0.706149] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.706190] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
[ 0.707035] pci 0000:00:1d.0: [8086:7a30] type 01 class 0x060400 PCIe Root Port
[ 0.707065] pci 0000:00:1d.0: PCI bridge to [bus 04-54]
[ 0.707072] pci 0000:00:1d.0: bridge window [mem 0x44000000-0x4bffffff]
[ 0.707082] pci 0000:00:1d.0: bridge window [mem 0x6410000000-0x74100fffff 64bit pref]
[ 0.707222] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.708095] pci 0000:00:1f.0: [8086:7a0c] type 00 class 0x060100 conventional PCI endpoint
[ 0.708512] pci 0000:00:1f.3: [8086:7a50] type 00 class 0x040300 conventional PCI endpoint
[ 0.708556] pci 0000:00:1f.3: BAR 0 [mem 0x6405230000-0x6405233fff 64bit]
[ 0.708610] pci 0000:00:1f.3: BAR 4 [mem 0x6405000000-0x64050fffff 64bit]
[ 0.708717] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.708823] pci 0000:00:1f.4: [8086:7a23] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.708849] pci 0000:00:1f.4: BAR 0 [mem 0x640523c000-0x640523c0ff 64bit]
[ 0.708879] pci 0000:00:1f.4: BAR 4 [io 0xefa0-0xefbf]
[ 0.709187] pci 0000:00:1f.5: [8086:7a24] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.709207] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[ 0.709361] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.709406] acpiphp: Slot [1] registered
[ 0.709423] pci 0000:02:00.0: [10de:2757] type 00 class 0x030000 PCIe Legacy Endpoint
[ 0.709432] pci 0000:02:00.0: BAR 0 [mem 0x4e000000-0x4effffff]
[ 0.709440] pci 0000:02:00.0: BAR 1 [mem 0x6000000000-0x63ffffffff 64bit pref]
[ 0.709447] pci 0000:02:00.0: BAR 3 [mem 0x6400000000-0x6401ffffff 64bit pref]
[ 0.709451] pci 0000:02:00.0: BAR 5 [io 0x3000-0x307f]
[ 0.709456] pci 0000:02:00.0: ROM [mem 0xfff80000-0xffffffff pref]
[ 0.709509] pci 0000:02:00.0: PME# supported from D0 D3hot
[ 0.709575] pci 0000:02:00.0: 126.024 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x8 link at 0000:00:01.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.709836] pci 0000:02:00.1: [10de:22bb] type 00 class 0x040300 PCIe Endpoint
[ 0.709846] pci 0000:02:00.1: BAR 0 [mem 0x4f000000-0x4f003fff]
[ 0.709962] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 0.710099] pci 0000:03:00.0: [8086:3102] type 00 class 0x020000 PCIe Endpoint
[ 0.710124] pci 0000:03:00.0: BAR 0 [mem 0x4f100000-0x4f1fffff]
[ 0.710162] pci 0000:03:00.0: BAR 3 [mem 0x4f200000-0x4f203fff]
[ 0.710320] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[ 0.710602] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.710712] pci 0000:04:00.0: [8086:5780] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.710753] pci 0000:04:00.0: PCI bridge to [bus 05-54]
[ 0.710764] pci 0000:04:00.0: bridge window [mem 0x44000000-0x4befffff]
[ 0.710778] pci 0000:04:00.0: bridge window [mem 0x6410000000-0x74100fffff 64bit pref]
[ 0.710794] pci 0000:04:00.0: enabling Extended Tags
[ 0.710931] pci 0000:04:00.0: supports D1 D2
[ 0.710932] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.711310] pci 0000:00:1d.0: PCI bridge to [bus 04-54]
[ 0.711433] pci 0000:05:00.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.711473] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.711497] pci 0000:05:00.0: bridge window [mem 0x7410000000-0x74100fffff 64bit pref]
[ 0.711515] pci 0000:05:00.0: enabling Extended Tags
[ 0.711643] pci 0000:05:00.0: supports D1 D2
[ 0.711644] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.711917] pci 0000:05:01.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.711957] pci 0000:05:01.0: PCI bridge to [bus 07-2c]
[ 0.711969] pci 0000:05:01.0: bridge window [mem 0x48000000-0x4befffff]
[ 0.711999] pci 0000:05:01.0: enabling Extended Tags
[ 0.712136] pci 0000:05:01.0: supports D1 D2
[ 0.712137] pci 0000:05:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.712412] pci 0000:05:02.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.712453] pci 0000:05:02.0: PCI bridge to [bus 2d]
[ 0.712464] pci 0000:05:02.0: bridge window [mem 0x47f00000-0x47ffffff]
[ 0.712494] pci 0000:05:02.0: enabling Extended Tags
[ 0.712621] pci 0000:05:02.0: supports D1 D2
[ 0.712622] pci 0000:05:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.712894] pci 0000:05:03.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.712935] pci 0000:05:03.0: PCI bridge to [bus 2e-54]
[ 0.712946] pci 0000:05:03.0: bridge window [mem 0x44000000-0x47efffff]
[ 0.712977] pci 0000:05:03.0: enabling Extended Tags
[ 0.713113] pci 0000:05:03.0: supports D1 D2
[ 0.713114] pci 0000:05:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.713399] pci 0000:04:00.0: PCI bridge to [bus 05-54]
[ 0.713505] pci 0000:06:00.0: [8086:5781] type 00 class 0x0c0340 PCIe Endpoint
[ 0.713533] pci 0000:06:00.0: BAR 0 [mem 0x7410000000-0x741003ffff 64bit pref]
[ 0.713550] pci 0000:06:00.0: BAR 2 [mem 0x7410040000-0x7410040fff 64bit pref]
[ 0.713592] pci 0000:06:00.0: enabling Extended Tags
[ 0.713706] pci 0000:06:00.0: supports D1 D2
[ 0.713707] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.713942] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.714014] pci 0000:05:01.0: PCI bridge to [bus 07-2c]
[ 0.714120] pci 0000:2d:00.0: [8086:5782] type 00 class 0x0c0330 PCIe Endpoint
[ 0.714143] pci 0000:2d:00.0: BAR 0 [mem 0x47f00000-0x47f0ffff 64bit]
[ 0.714191] pci 0000:2d:00.0: enabling Extended Tags
[ 0.714274] pci 0000:2d:00.0: PME# supported from D3hot D3cold
[ 0.714312] pci 0000:2d:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x4 link at 0000:05:02.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[ 0.714432] pci 0000:05:02.0: PCI bridge to [bus 2d]
[ 0.714504] pci 0000:05:03.0: PCI bridge to [bus 2e-54]
[ 0.739521] ACPI: EC: interrupt unblocked
[ 0.739523] ACPI: EC: event unblocked
[ 0.739538] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.739539] ACPI: EC: GPE=0x6e
[ 0.739541] ACPI: \_SB_.PC00.LPCB.EC__: Boot DSDT EC initialization complete
[ 0.739543] ACPI: \_SB_.PC00.LPCB.EC__: EC: Used to handle transactions and events
[ 0.739953] iommu: Default domain type: Translated
[ 0.739953] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.740136] SCSI subsystem initialized
[ 0.740149] libata version 3.00 loaded.
[ 0.740149] ACPI: bus type USB registered
[ 0.740149] usbcore: registered new interface driver usbfs
[ 0.740149] usbcore: registered new interface driver hub
[ 0.740149] usbcore: registered new device driver usb
[ 0.740149] pps_core: LinuxPPS API ver. 1 registered
[ 0.740149] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.740149] PTP clock support registered
[ 0.740149] EDAC MC: Ver: 3.0.0
[ 0.740948] efivars: Registered efivars operations
[ 0.741244] NetLabel: Initializing
[ 0.741245] NetLabel: domain hash size = 128
[ 0.741246] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.741275] NetLabel: unlabeled traffic allowed by default
[ 0.741298] mctp: management component transport protocol core
[ 0.741298] NET: Registered PF_MCTP protocol family
[ 0.741298] PCI: Using ACPI for IRQ routing
[ 0.756283] PCI: pci_cache_line_size set to 64 bytes
[ 0.756432] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
[ 0.756576] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 0.756578] e820: reserve RAM buffer [mem 0x26c18000-0x27ffffff]
[ 0.756580] e820: reserve RAM buffer [mem 0x28a1f000-0x2bffffff]
[ 0.756581] e820: reserve RAM buffer [mem 0x2c229000-0x2fffffff]
[ 0.756582] e820: reserve RAM buffer [mem 0x2e93f000-0x2fffffff]
[ 0.756583] e820: reserve RAM buffer [mem 0x33b00000-0x33ffffff]
[ 0.756584] e820: reserve RAM buffer [mem 0x18bf800000-0x18bfffffff]
[ 0.756949] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.756950] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.756951] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.756956] pci 0000:02:00.0: vgaarb: bridge control possible
[ 0.756957] pci 0000:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.756960] vgaarb: loaded
[ 0.757121] clocksource: Switched to clocksource tsc-early
[ 0.757472] VFS: Disk quotas dquot_6.6.0
[ 0.757489] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.757646] AppArmor: AppArmor Filesystem Enabled
[ 0.757680] pnp: PnP ACPI init
[ 0.757944] pnp 00:00: disabling [io 0x3322-0x3323] because it overlaps 0000:00:01.1 BAR 13 [io 0x3000-0x3fff]
[ 0.758158] system 00:02: [io 0x1854-0x1857] has been reserved
[ 0.774719] pnp 00:05: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
[ 0.774758] system 00:05: [mem 0xfedc0000-0xfedc7fff] has been reserved
[ 0.774761] system 00:05: [mem 0xfeda0000-0xfeda0fff] has been reserved
[ 0.774763] system 00:05: [mem 0xfeda1000-0xfeda1fff] has been reserved
[ 0.774765] system 00:05: [mem 0xfed20000-0xfed7ffff] could not be reserved
[ 0.774767] system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 0.774769] system 00:05: [mem 0xfed45000-0xfed8ffff] could not be reserved
[ 0.774771] system 00:05: [mem 0xfee00000-0xfeefffff] has been reserved
[ 0.775227] system 00:06: [io 0x2000-0x20fe] has been reserved
[ 0.776689] pnp: PnP ACPI: found 8 devices
[ 0.782856] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.782931] NET: Registered PF_INET protocol family
[ 0.783281] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.802406] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[ 0.802512] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.803031] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.803807] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.803929] TCP: Hash tables configured (established 524288 bind 65536)
[ 0.804341] MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, linear)
[ 0.804752] UDP hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.805221] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.805456] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.805464] NET: Registered PF_XDP protocol family
[ 0.805469] pci 0000:02:00.0: ROM [mem 0xfff80000-0xffffffff pref]: can't claim; no compatible bridge window
[ 0.805477] pci_bus 0000:00: max bus depth: 3 pci_try_num: 4
[ 0.805493] pci 0000:00:02.0: VF BAR 2 [mem 0x4020000000-0x40ffffffff 64bit pref]: assigned
[ 0.805497] pci 0000:00:02.0: VF BAR 0 [mem 0x4010000000-0x4016ffffff 64bit]: assigned
[ 0.805501] pci 0000:00:15.0: BAR 0 [mem 0x4017000000-0x4017000fff 64bit]: assigned
[ 0.805557] pci 0000:00:15.1: BAR 0 [mem 0x4017001000-0x4017001fff 64bit]: assigned
[ 0.805663] pci 0000:00:1d.0: bridge window [io 0x5000-0x7fff]: assigned
[ 0.805666] pci 0000:00:1f.5: BAR 0 [mem 0x40800000-0x40800fff]: assigned
[ 0.805678] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.805702] pci 0000:02:00.0: ROM [mem 0x4f080000-0x4f0fffff pref]: assigned
[ 0.805705] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 0.805707] pci 0000:00:01.1: bridge window [io 0x3000-0x3fff]
[ 0.805710] pci 0000:00:01.1: bridge window [mem 0x4e000000-0x4f0fffff]
[ 0.805713] pci 0000:00:01.1: bridge window [mem 0x6000000000-0x6401ffffff 64bit pref]
[ 0.805718] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.805729] pci 0000:00:1c.0: bridge window [mem 0x4f100000-0x4f2fffff]
[ 0.805737] pci 0000:04:00.0: bridge window [io 0x5000-0x6fff]: assigned
[ 0.805740] pci 0000:05:01.0: bridge window [mem 0x6410000000-0x64101fffff 64bit pref]: assigned
[ 0.805742] pci 0000:05:03.0: bridge window [mem 0x6410200000-0x64103fffff 64bit pref]: assigned
[ 0.805743] pci 0000:05:01.0: bridge window [io 0x5000-0x5fff]: assigned
[ 0.805745] pci 0000:05:03.0: bridge window [io 0x6000-0x6fff]: assigned
[ 0.805747] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.805768] pci 0000:05:00.0: bridge window [mem 0x7410000000-0x74100fffff 64bit pref]
[ 0.805775] pci 0000:05:01.0: PCI bridge to [bus 07-2c]
[ 0.805778] pci 0000:05:01.0: bridge window [io 0x5000-0x5fff]
[ 0.805784] pci 0000:05:01.0: bridge window [mem 0x48000000-0x4befffff]
[ 0.805788] pci 0000:05:01.0: bridge window [mem 0x6410000000-0x64101fffff 64bit pref]
[ 0.805795] pci 0000:05:02.0: PCI bridge to [bus 2d]
[ 0.805801] pci 0000:05:02.0: bridge window [mem 0x47f00000-0x47ffffff]
[ 0.805811] pci 0000:05:03.0: PCI bridge to [bus 2e-54]
[ 0.805814] pci 0000:05:03.0: bridge window [io 0x6000-0x6fff]
[ 0.805819] pci 0000:05:03.0: bridge window [mem 0x44000000-0x47efffff]
[ 0.805824] pci 0000:05:03.0: bridge window [mem 0x6410200000-0x64103fffff 64bit pref]
[ 0.805831] pci 0000:04:00.0: PCI bridge to [bus 05-54]
[ 0.805833] pci 0000:04:00.0: bridge window [io 0x5000-0x6fff]
[ 0.805839] pci 0000:04:00.0: bridge window [mem 0x44000000-0x4befffff]
[ 0.805843] pci 0000:04:00.0: bridge window [mem 0x6410000000-0x74100fffff 64bit pref]
[ 0.805850] pci 0000:00:1d.0: PCI bridge to [bus 04-54]
[ 0.805852] pci 0000:00:1d.0: bridge window [io 0x5000-0x7fff]
[ 0.805857] pci 0000:00:1d.0: bridge window [mem 0x44000000-0x4bffffff]
[ 0.805860] pci 0000:00:1d.0: bridge window [mem 0x6410000000-0x74100fffff 64bit pref]
[ 0.805866] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.805868] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.805870] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.805871] pci_bus 0000:00: resource 7 [mem 0x40800000-0xbfffffff window]
[ 0.805873] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
[ 0.805875] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
[ 0.805876] pci_bus 0000:02: resource 1 [mem 0x4e000000-0x4f0fffff]
[ 0.805878] pci_bus 0000:02: resource 2 [mem 0x6000000000-0x6401ffffff 64bit pref]
[ 0.805879] pci_bus 0000:03: resource 1 [mem 0x4f100000-0x4f2fffff]
[ 0.805881] pci_bus 0000:04: resource 0 [io 0x5000-0x7fff]
[ 0.805882] pci_bus 0000:04: resource 1 [mem 0x44000000-0x4bffffff]
[ 0.805883] pci_bus 0000:04: resource 2 [mem 0x6410000000-0x74100fffff 64bit pref]
[ 0.805885] pci_bus 0000:05: resource 0 [io 0x5000-0x6fff]
[ 0.805886] pci_bus 0000:05: resource 1 [mem 0x44000000-0x4befffff]
[ 0.805888] pci_bus 0000:05: resource 2 [mem 0x6410000000-0x74100fffff 64bit pref]
[ 0.805889] pci_bus 0000:06: resource 2 [mem 0x7410000000-0x74100fffff 64bit pref]
[ 0.805891] pci_bus 0000:07: resource 0 [io 0x5000-0x5fff]
[ 0.805892] pci_bus 0000:07: resource 1 [mem 0x48000000-0x4befffff]
[ 0.805893] pci_bus 0000:07: resource 2 [mem 0x6410000000-0x64101fffff 64bit pref]
[ 0.805895] pci_bus 0000:2d: resource 1 [mem 0x47f00000-0x47ffffff]
[ 0.805896] pci_bus 0000:2e: resource 0 [io 0x6000-0x6fff]
[ 0.805898] pci_bus 0000:2e: resource 1 [mem 0x44000000-0x47efffff]
[ 0.805899] pci_bus 0000:2e: resource 2 [mem 0x6410200000-0x64103fffff 64bit pref]
[ 0.808271] pci 0000:02:00.1: extending delay after power-on from D3hot to 20 msec
[ 0.808307] pci 0000:02:00.1: D0 power state depends on 0000:02:00.0
[ 0.808766] pci 0000:2d:00.0: enabling device (0000 -> 0002)
[ 0.808803] PCI: CLS 64 bytes, default 64
[ 0.808846] DMAR: No ATSR found
[ 0.808847] DMAR: No SATC found
[ 0.808848] DMAR: IOMMU feature fl1gp_support inconsistent
[ 0.808849] DMAR: IOMMU feature pgsel_inv inconsistent
[ 0.808850] DMAR: IOMMU feature nwfs inconsistent
[ 0.808851] DMAR: IOMMU feature dit inconsistent
[ 0.808852] DMAR: IOMMU feature sc_support inconsistent
[ 0.808853] DMAR: IOMMU feature dev_iotlb_support inconsistent
[ 0.808854] DMAR: dmar0: Using Queued invalidation
[ 0.808858] DMAR: dmar1: Using Queued invalidation
[ 0.808907] Trying to unpack rootfs image as initramfs...
[ 0.809242] pci 0000:00:02.0: Adding to iommu group 0
[ 0.810145] pci 0000:00:00.0: Adding to iommu group 1
[ 0.810160] pci 0000:00:01.0: Adding to iommu group 2
[ 0.810172] pci 0000:00:01.1: Adding to iommu group 3
[ 0.810184] pci 0000:00:04.0: Adding to iommu group 4
[ 0.810200] pci 0000:00:06.0: Adding to iommu group 5
[ 0.810211] pci 0000:00:08.0: Adding to iommu group 6
[ 0.810223] pci 0000:00:0a.0: Adding to iommu group 7
[ 0.810234] pci 0000:00:0e.0: Adding to iommu group 8
[ 0.810255] pci 0000:00:14.0: Adding to iommu group 9
[ 0.810267] pci 0000:00:14.2: Adding to iommu group 9
[ 0.810279] pci 0000:00:14.3: Adding to iommu group 10
[ 0.810300] pci 0000:00:15.0: Adding to iommu group 11
[ 0.810311] pci 0000:00:15.1: Adding to iommu group 11
[ 0.810327] pci 0000:00:16.0: Adding to iommu group 12
[ 0.810347] pci 0000:00:1c.0: Adding to iommu group 13
[ 0.810372] pci 0000:00:1d.0: Adding to iommu group 14
[ 0.810406] pci 0000:00:1f.0: Adding to iommu group 15
[ 0.810419] pci 0000:00:1f.3: Adding to iommu group 15
[ 0.810431] pci 0000:00:1f.4: Adding to iommu group 15
[ 0.810444] pci 0000:00:1f.5: Adding to iommu group 15
[ 0.810465] pci 0000:02:00.0: Adding to iommu group 16
[ 0.810479] pci 0000:02:00.1: Adding to iommu group 16
[ 0.810497] pci 0000:03:00.0: Adding to iommu group 17
[ 0.810526] pci 0000:04:00.0: Adding to iommu group 18
[ 0.810547] pci 0000:05:00.0: Adding to iommu group 19
[ 0.810572] pci 0000:05:01.0: Adding to iommu group 20
[ 0.810590] pci 0000:05:02.0: Adding to iommu group 21
[ 0.810604] pci 0000:05:03.0: Adding to iommu group 22
[ 0.810634] pci 0000:06:00.0: Adding to iommu group 23
[ 0.810663] pci 0000:2d:00.0: Adding to iommu group 24
[ 0.816490] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 0.816494] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.816495] software IO TLB: mapped [mem 0x0000000022c18000-0x0000000026c18000] (64MB)
[ 0.821102] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
[ 0.821160] clocksource: Switched to clocksource tsc
[ 0.825982] Initialise system trusted keyrings
[ 0.825993] Key type blacklist registered
[ 0.826043] workingset: timestamp_bits=36 max_order=25 bucket_order=0
[ 0.826054] zbud: loaded
[ 0.826397] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.826516] fuse: init (API version 7.39)
[ 0.826716] integrity: Platform Keyring initialized
[ 0.826723] integrity: Machine keyring initialized
[ 0.841163] Key type asymmetric registered
[ 0.841165] Asymmetric key parser 'x509' registered
[ 0.841187] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[ 0.841270] io scheduler mq-deadline registered
[ 0.842088] pcieport 0000:00:01.0: PME: Signaling with IRQ 122
[ 0.842395] pcieport 0000:00:01.1: PME: Signaling with IRQ 123
[ 0.842729] pcieport 0000:00:1c.0: PME: Signaling with IRQ 124
[ 0.842937] pcieport 0000:00:1d.0: PME: Signaling with IRQ 125
[ 0.842981] pcieport 0000:00:1d.0: pciehp: Slot #8 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.843939] pcieport 0000:05:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.844588] pcieport 0000:05:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.844837] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.845193] Monitor-Mwait will be used to enter C-1 state
[ 0.845215] Monitor-Mwait will be used to enter C-2 state
[ 0.845230] Monitor-Mwait will be used to enter C-3 state
[ 0.845237] ACPI: \_SB_.PR00: Found 3 idle states
[ 0.848562] ACPI: AC: AC Adapter [AC] (on-line)
[ 0.848649] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 0.848701] ACPI: button: Power Button [PWRB]
[ 0.848736] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[ 0.848778] ACPI: button: Sleep Button [SLPB]
[ 0.848814] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
[ 0.848846] ACPI: button: Lid Switch [LID0]
[ 0.848882] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[ 0.848925] ACPI: button: Power Button [PWRF]
[ 0.926264] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.926268] ACPI: thermal: Thermal Zone [TZ0] (25 C)
[ 0.926642] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.927652] ACPI: battery: Slot [BAT0] (battery present)
[ 0.929369] hpet_acpi_add: no address or irqs in _CRS
[ 0.929413] Linux agpgart interface v0.103
[ 0.931412] tpm_tis IFX1523:00: 2.0 TPM (device-id 0x1D, rev-id 54)
[ 0.947939] loop: module loaded
[ 0.948471] ACPI: bus type drm_connector registered
[ 0.948771] tun: Universal TUN/TAP device driver, 1.6
[ 0.948817] PPP generic driver version 2.4.2
[ 0.948955] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 0.952387] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.952391] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.952528] mousedev: PS/2 mouse device common for all mice
[ 0.952699] rtc_cmos 00:01: RTC can wake from S4
[ 0.953525] rtc_cmos 00:01: registered as rtc0
[ 0.953685] rtc_cmos 00:01: setting system clock to 2024-10-11T03:44:22 UTC (1728618262)
[ 0.953730] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
[ 0.953741] i2c_dev: i2c /dev entries driver
[ 0.955866] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 0.955886] device-mapper: uevent: version 1.0.3
[ 0.955947] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
[ 0.955968] platform eisa.0: Probing EISA bus 0
[ 0.955977] platform eisa.0: EISA: Cannot allocate resource for mainboard
[ 0.955979] platform eisa.0: Cannot allocate resource for EISA slot 1
[ 0.955981] platform eisa.0: Cannot allocate resource for EISA slot 2
[ 0.955982] platform eisa.0: Cannot allocate resource for EISA slot 3
[ 0.955983] platform eisa.0: Cannot allocate resource for EISA slot 4
[ 0.955985] platform eisa.0: Cannot allocate resource for EISA slot 5
[ 0.955986] platform eisa.0: Cannot allocate resource for EISA slot 6
[ 0.955987] platform eisa.0: Cannot allocate resource for EISA slot 7
[ 0.955988] platform eisa.0: Cannot allocate resource for EISA slot 8
[ 0.955990] platform eisa.0: EISA: Detected 0 cards
[ 0.955993] intel_pstate: Intel P-state driver initializing
[ 0.960219] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input5
[ 0.962194] intel_pstate: HWP enabled
[ 0.963295] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.963528] [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
[ 0.965013] fbcon: Deferring console take-over
[ 0.965015] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[ 0.965204] drop_monitor: Initializing network drop monitor service
[ 0.965330] NET: Registered PF_INET6 protocol family
[ 1.039344] Freeing initrd memory: 159980K
[ 1.047932] Segment Routing with IPv6
[ 1.047947] In-situ OAM (IOAM) with IPv6
[ 1.047980] NET: Registered PF_PACKET protocol family
[ 1.048265] Key type dns_resolver registered
[ 1.053883] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 1.055817] microcode: Current revision: 0x00000129
[ 1.057986] IPI shorthand broadcast: enabled
[ 1.059999] sched_clock: Marking stable (1052000925, 7610457)->(1129524456, -69913074)
[ 1.060755] registered taskstats version 1
[ 1.065023] Loading compiled-in X.509 certificates
[ 1.065814] Loaded X.509 cert 'Build time autogenerated kernel key: 9be8e5b2569132a22d1fff4e72c8e5b54f0dca0d'
[ 1.066439] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
[ 1.067089] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
[ 1.067091] blacklist: Loading compiled-in revocation X.509 certificates
[ 1.067118] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'
[ 1.067139] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03'
[ 1.067157] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b'
[ 1.067175] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8'
[ 1.067193] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d'
[ 1.067211] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c'
[ 1.067230] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af'
[ 1.067248] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9'
[ 1.071166] Key type .fscrypt registered
[ 1.071168] Key type fscrypt-provisioning registered
[ 1.071227] Key type trusted registered
[ 1.081466] cryptd: max_cpu_qlen set to 1000
[ 1.085862] AVX2 version of gcm_enc/dec engaged.
[ 1.085916] AES CTR mode by8 optimization enabled
[ 1.097966] Key type encrypted registered
[ 1.097982] AppArmor: AppArmor sha256 policy hashing enabled
[ 1.101843] integrity: Loading X.509 certificate: UEFI:db
[ 1.101929] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 1.101931] integrity: Loading X.509 certificate: UEFI:db
[ 1.101952] integrity: Loaded X.509 cert 'Microsoft Corporation: Windows UEFI CA 2023: aefc5fbbbe055d8f8daa585473499417ab5a5272'
[ 1.101953] integrity: Loading X.509 certificate: UEFI:db
[ 1.101970] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 1.101971] integrity: Loading X.509 certificate: UEFI:db
[ 1.101987] integrity: Loaded X.509 cert 'Microsoft UEFI CA 2023: 81aa6b3244c935bce0d6628af39827421e32497d'
[ 1.101988] integrity: Loading X.509 certificate: UEFI:db
[ 1.102427] integrity: Loaded X.509 cert 'Secure Certificate: 01dcc89619884ca147983429f8a4a1a0'
[ 1.102431] integrity: Loading X.509 certificate: UEFI:db
[ 1.102598] integrity: Loaded X.509 cert 'Cus CA: d6136d376b87ef934511c12ce2c3880c'
[ 1.109958] Loading compiled-in module X.509 certificates
[ 1.110417] Loaded X.509 cert 'Build time autogenerated kernel key: 9be8e5b2569132a22d1fff4e72c8e5b54f0dca0d'
[ 1.110420] ima: Allocated hash algorithm: sha256
[ 1.134814] ima: No architecture policies found
[ 1.134843] evm: Initialising EVM extended attributes:
[ 1.134845] evm: security.selinux
[ 1.134848] evm: security.SMACK64
[ 1.134849] evm: security.SMACK64EXEC
[ 1.134850] evm: security.SMACK64TRANSMUTE
[ 1.134852] evm: security.SMACK64MMAP
[ 1.134853] evm: security.apparmor
[ 1.134854] evm: security.ima
[ 1.134855] evm: security.capability
[ 1.134857] evm: HMAC attrs: 0x1
[ 1.135420] PM: Magic number: 12:849:714
[ 1.141468] RAS: Correctable Errors collector initialized.
[ 1.141590] clk: Disabling unused clocks
[ 1.156365] Freeing unused decrypted memory: 2028K
[ 1.157310] Freeing unused kernel image (initmem) memory: 4976K
[ 1.157312] Write protecting the kernel read-only data: 36864k
[ 1.158197] Freeing unused kernel image (rodata/data gap) memory: 428K
[ 1.167108] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.167113] Run /init as init process
[ 1.167114] with arguments:
[ 1.167115] /init
[ 1.167115] splash
[ 1.167116] with environment:
[ 1.167117] HOME=/
[ 1.167117] TERM=linux
[ 1.167118] BOOT_IMAGE=/@boot/vmlinuz-6.8.0-45-kfocus
[ 1.167118] cryptdevice=UUID=9992e62a-e20e-4d65-8cd4-d1988f6f3ab3:luks-9992e62a-e20e-4d65-8cd4-d1988f6f3ab3
[ 1.253726] wmi_bus wmi_bus-PNP0C14:01: WQ00 data block query control method not found
[ 1.254064] hid: raw HID events driver (C) Jiri Kosina
[ 1.259568] vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
[ 1.259572] pci_bus 10000:e0: root bus resource [bus e0-ff]
[ 1.259574] pci_bus 10000:e0: root bus resource [mem 0x4c000000-0x4dffffff]
[ 1.259575] pci_bus 10000:e0: root bus resource [mem 0x6405102000-0x64051fffff 64bit]
[ 1.259599] pci 10000:e0:06.0: [8086:a74d] type 01 class 0x060400 PCIe Root Port
[ 1.259617] pci 10000:e0:06.0: PCI bridge to [bus e1]
[ 1.259621] pci 10000:e0:06.0: bridge window [io 0x0000-0x0fff]
[ 1.259623] pci 10000:e0:06.0: bridge window [mem 0x4c000000-0x4c0fffff]
[ 1.259666] pci 10000:e0:06.0: PME# supported from D0 D3hot D3cold
[ 1.259688] pci 10000:e0:06.0: PTM enabled (root), 4ns granularity
[ 1.259784] pci 10000:e0:06.0: Adding to iommu group 8
[ 1.259803] pci 10000:e0:06.0: Primary bus is hard wired to 0
[ 1.259840] pci 10000:e1:00.0: [144d:a808] type 00 class 0x010802 PCIe Endpoint
[ 1.259859] pci 10000:e1:00.0: BAR 0 [mem 0x4c000000-0x4c003fff 64bit]
[ 1.260063] pci 10000:e1:00.0: Adding to iommu group 8
[ 1.260073] pci 10000:e0:06.0: PCI bridge to [bus e1]
[ 1.260078] pci 10000:e0:06.0: Primary bus is hard wired to 0
[ 1.260622] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.260630] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 1.261802] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[ 1.262353] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.262356] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 1.262358] xhci_hcd 0000:00:14.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 1.262409] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.08
[ 1.262412] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.262414] usb usb1: Product: xHCI Host Controller
[ 1.262415] usb usb1: Manufacturer: Linux 6.8.0-45-kfocus xhci-hcd
[ 1.262416] usb usb1: SerialNumber: 0000:00:14.0
[ 1.262716] hub 1-0:1.0: USB hub found
[ 1.262765] hub 1-0:1.0: 16 ports detected
[ 1.263475] Intel(R) 2.5G Ethernet Linux Driver
[ 1.263478] Copyright(c) 2018 Intel Corporation.
[ 1.263764] igc 0000:03:00.0: PTM enabled, 4ns granularity
[ 1.265691] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.08
[ 1.265694] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.265695] usb usb2: Product: xHCI Host Controller
[ 1.265696] usb usb2: Manufacturer: Linux 6.8.0-45-kfocus xhci-hcd
[ 1.265697] usb usb2: SerialNumber: 0000:00:14.0
[ 1.265788] hub 2-0:1.0: USB hub found
[ 1.265809] hub 2-0:1.0: 10 ports detected
[ 1.267339] xhci_hcd 0000:2d:00.0: xHCI Host Controller
[ 1.267344] xhci_hcd 0000:2d:00.0: new USB bus registered, assigned bus number 3
[ 1.268532] xhci_hcd 0000:2d:00.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[ 1.268942] xhci_hcd 0000:2d:00.0: xHCI Host Controller
[ 1.268944] xhci_hcd 0000:2d:00.0: new USB bus registered, assigned bus number 4
[ 1.268946] xhci_hcd 0000:2d:00.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 1.269185] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.08
[ 1.269189] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.269190] usb usb3: Product: xHCI Host Controller
[ 1.269191] usb usb3: Manufacturer: Linux 6.8.0-45-kfocus xhci-hcd
[ 1.269192] usb usb3: SerialNumber: 0000:2d:00.0
[ 1.269339] hub 3-0:1.0: USB hub found
[ 1.269361] hub 3-0:1.0: 2 ports detected
[ 1.270327] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.08
[ 1.270330] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.270331] usb usb4: Product: xHCI Host Controller
[ 1.270332] usb usb4: Manufacturer: Linux 6.8.0-45-kfocus xhci-hcd
[ 1.270333] usb usb4: SerialNumber: 0000:2d:00.0
[ 1.270448] hub 4-0:1.0: USB hub found
[ 1.270456] hub 4-0:1.0: 2 ports detected
[ 1.271632] intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
[ 1.272057] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 1.275849] ACPI: bus type thunderbolt registered
[ 1.276032] thunderbolt 0000:06:00.0: total paths: 12
[ 1.276038] thunderbolt 0000:06:00.0: IOMMU DMA protection is enabled
[ 1.313325] pps pps0: new PPS source ptp0
[ 1.313379] igc 0000:03:00.0 (unnamed net_device) (uninitialized): PHC added
[ 1.339070] igc 0000:03:00.0: 4.000 Gb/s available PCIe bandwidth (5.0 GT/s PCIe x1 link)
[ 1.339073] igc 0000:03:00.0 eth0: MAC: d4:93:90:48:c5:ea
[ 1.339981] igc 0000:03:00.0 enp3s0: renamed from eth0
[ 1.381768] thunderbolt 0000:06:00.0: host router reset successful
[ 1.382174] thunderbolt 0000:06:00.0: allocating TX ring 0 of size 10
[ 1.382212] thunderbolt 0000:06:00.0: allocating RX ring 0 of size 10
[ 1.382245] thunderbolt 0000:06:00.0: control channel created
[ 1.382247] thunderbolt 0000:06:00.0: using software connection manager
[ 1.382718] thunderbolt 0000:06:00.0: device links to tunneled native ports are missing!
[ 1.382720] thunderbolt 0000:06:00.0: NHI initialized, starting thunderbolt
[ 1.382721] thunderbolt 0000:06:00.0: control channel starting...
[ 1.382722] thunderbolt 0000:06:00.0: starting TX ring 0
[ 1.382736] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 1.382739] thunderbolt 0000:06:00.0: starting RX ring 0
[ 1.382747] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 1.382751] thunderbolt 0000:06:00.0: security level set to user
[ 1.382936] thunderbolt 0000:06:00.0: current switch config:
[ 1.382939] thunderbolt 0000:06:00.0: USB4 Switch: 8087:5781 (Revision: 131, TB Version: 64)
[ 1.382942] thunderbolt 0000:06:00.0: Max Port Number: 23
[ 1.382946] thunderbolt 0000:06:00.0: Config:
[ 1.382947] thunderbolt 0000:06:00.0: Upstream Port Number: 15 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[ 1.382949] thunderbolt 0000:06:00.0: unknown1: 0x0 unknown4: 0x0
[ 1.386008] thunderbolt 0000:06:00.0: initializing Switch at 0x0 (depth: 0, up port: 15)
[ 1.387169] thunderbolt 0000:06:00.0: 0: credit allocation parameters:
[ 1.387177] thunderbolt 0000:06:00.0: 0: USB3: 20
[ 1.387182] thunderbolt 0000:06:00.0: 0: DP AUX: 1
[ 1.387186] thunderbolt 0000:06:00.0: 0: DP main: 6
[ 1.387190] thunderbolt 0000:06:00.0: 0: PCIe: 80
[ 1.387194] thunderbolt 0000:06:00.0: 0: DMA: 40
[ 1.389588] thunderbolt 0000:06:00.0: 0: DROM version: 3
[ 1.389590] thunderbolt 0000:06:00.0: 0: DROM data CRC32 mismatch (expected: 0x56000000, got: 0x56473b0f), continuing
[ 1.390230] thunderbolt 0000:06:00.0: 0: uid: 0xb9cde50000006ecd
[ 1.391508] thunderbolt 0000:06:00.0: Port 1: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.391511] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.391512] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.391514] thunderbolt 0000:06:00.0: NFC Credits: 0x8a000000
[ 1.391515] thunderbolt 0000:06:00.0: Credits (total/control): 160/2
[ 1.392660] thunderbolt 0000:06:00.0: Port 2: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.392662] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.392663] thunderbolt 0000:06:00.0: Max counters: 0
[ 1.392664] thunderbolt 0000:06:00.0: NFC Credits: 0xa000000
[ 1.392665] thunderbolt 0000:06:00.0: Credits (total/control): 160/2
[ 1.393939] thunderbolt 0000:06:00.0: Port 3: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.393941] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.393942] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.393943] thunderbolt 0000:06:00.0: NFC Credits: 0x8a000000
[ 1.393944] thunderbolt 0000:06:00.0: Credits (total/control): 160/2
[ 1.395092] thunderbolt 0000:06:00.0: Port 4: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.395094] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.395095] thunderbolt 0000:06:00.0: Max counters: 0
[ 1.395096] thunderbolt 0000:06:00.0: NFC Credits: 0xa000000
[ 1.395097] thunderbolt 0000:06:00.0: Credits (total/control): 160/2
[ 1.396372] thunderbolt 0000:06:00.0: acking hot plug event on 0:13
[ 1.396378] thunderbolt 0000:06:00.0: Port 5: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.396380] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.396381] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.396382] thunderbolt 0000:06:00.0: NFC Credits: 0x8a000000
[ 1.396383] thunderbolt 0000:06:00.0: Credits (total/control): 160/0
[ 1.396499] thunderbolt 0000:06:00.0: acking hot plug event on 0:14
[ 1.396626] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
[ 1.397140] thunderbolt 0000:06:00.0: Port 6: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.397142] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.397143] thunderbolt 0000:06:00.0: Max counters: 0
[ 1.397143] thunderbolt 0000:06:00.0: NFC Credits: 0xa000000
[ 1.397144] thunderbolt 0000:06:00.0: Credits (total/control): 160/0
[ 1.398420] thunderbolt 0000:06:00.0: Port 7: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.398421] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.398422] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.398423] thunderbolt 0000:06:00.0: NFC Credits: 0x8a000000
[ 1.398424] thunderbolt 0000:06:00.0: Credits (total/control): 160/0
[ 1.399188] thunderbolt 0000:06:00.0: Port 8: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.399189] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.399190] thunderbolt 0000:06:00.0: Max counters: 0
[ 1.399191] thunderbolt 0000:06:00.0: NFC Credits: 0xa000000
[ 1.399192] thunderbolt 0000:06:00.0: Credits (total/control): 160/0
[ 1.399444] thunderbolt 0000:06:00.0: Port 9: 0:5780 (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[ 1.399446] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.399447] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.399448] thunderbolt 0000:06:00.0: NFC Credits: 0x40800000
[ 1.399448] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.399704] thunderbolt 0000:06:00.0: Port 10: 0:5780 (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[ 1.399705] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.399706] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.399707] thunderbolt 0000:06:00.0: NFC Credits: 0x40800000
[ 1.399708] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.400212] thunderbolt 0000:06:00.0: Port 11: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 1.400214] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.400215] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.400215] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.400216] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.400725] thunderbolt 0000:06:00.0: Port 12: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 1.400727] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.400728] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.400729] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.400730] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.400980] thunderbolt 0000:06:00.0: Port 13: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[ 1.400981] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.400982] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.400983] thunderbolt 0000:06:00.0: NFC Credits: 0x100000d
[ 1.400984] thunderbolt 0000:06:00.0: Credits (total/control): 16/0
[ 1.401235] thunderbolt 0000:06:00.0: Port 14: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[ 1.401236] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.401237] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.401238] thunderbolt 0000:06:00.0: NFC Credits: 0x100000d
[ 1.401239] thunderbolt 0000:06:00.0: Credits (total/control): 16/0
[ 1.402004] thunderbolt 0000:06:00.0: Port 15: 0:5780 (Revision: 0, TB Version: 1, Type: NHI (0x2))
[ 1.402006] thunderbolt 0000:06:00.0: Max hop id (in/out): 11/11
[ 1.402007] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.402008] thunderbolt 0000:06:00.0: NFC Credits: 0x41c00000
[ 1.402009] thunderbolt 0000:06:00.0: Credits (total/control): 28/0
[ 1.402010] thunderbolt 0000:06:00.0: 0:16: disabled by eeprom
[ 1.402260] thunderbolt 0000:06:00.0: Port 17: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.402261] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.402262] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.402263] thunderbolt 0000:06:00.0: NFC Credits: 0x40800000
[ 1.402264] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.402516] thunderbolt 0000:06:00.0: Port 18: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.402518] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.402519] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.402520] thunderbolt 0000:06:00.0: NFC Credits: 0x40800000
[ 1.402521] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.403037] thunderbolt 0000:06:00.0: Port 19: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 1.403043] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.403047] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.403050] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.403054] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.403284] thunderbolt 0000:06:00.0: Port 20: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.403285] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.403286] thunderbolt 0000:06:00.0: Max counters: 1
[ 1.403287] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.403288] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.403540] thunderbolt 0000:06:00.0: Port 21: 0:5780 (Revision: 0, TB Version: 1, Type: USB (0x200101))
[ 1.403541] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.403542] thunderbolt 0000:06:00.0: Max counters: 1
[ 1.403543] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.403544] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.403796] thunderbolt 0000:06:00.0: Port 22: 0:5780 (Revision: 0, TB Version: 1, Type: USB (0x200101))
[ 1.403798] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.403798] thunderbolt 0000:06:00.0: Max counters: 1
[ 1.403799] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.403800] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.404051] thunderbolt 0000:06:00.0: Port 23: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.404053] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.404054] thunderbolt 0000:06:00.0: Max counters: 1
[ 1.404055] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.404056] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.404057] thunderbolt 0000:06:00.0: 0: running quirk_usb3_maximum_bandwidth [thunderbolt]
[ 1.404096] thunderbolt 0000:06:00.0: 0:21: USB3 maximum bandwidth limited to 16376 Mb/s
[ 1.404098] thunderbolt 0000:06:00.0: 0:22: USB3 maximum bandwidth limited to 16376 Mb/s
[ 1.404099] thunderbolt 0000:06:00.0: 0: running quirk_block_rpm_in_redrive [thunderbolt]
[ 1.404122] thunderbolt 0000:06:00.0: 0: preventing runtime PM in DP redrive mode
[ 1.404123] thunderbolt 0000:06:00.0: 0: linked ports 1 <-> 2
[ 1.404125] thunderbolt 0000:06:00.0: 0: linked ports 3 <-> 4
[ 1.409747] intel-lpss 0000:00:15.1: enabling device (0004 -> 0006)
[ 1.410025] idma64 idma64.1: Found Intel integrated DMA 64-bit
[ 1.412371] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
[ 1.412373] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
[ 1.412499] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
[ 1.416488] thunderbolt 0000:06:00.0: 0: NVM version 14.86
[ 1.416559] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> uni-directional, LowRes requested
[ 1.416979] thunderbolt 0000:06:00.0: 0: TMU: mode set to: uni-directional, LowRes
[ 1.417364] thunderbolt 0000:06:00.0: 0:1: is unplugged (state: 7)
[ 1.417502] thunderbolt 0000:06:00.0: 0:3: is unplugged (state: 7)
[ 1.419284] thunderbolt 0000:06:00.0: 0:13: DP IN resource available
[ 1.419923] thunderbolt 0000:06:00.0: 0:14: DP IN resource available
[ 1.422809] pci 10000:e0:06.0: bridge window [mem 0x4c000000-0x4c0fffff]: assigned
[ 1.422812] pci 10000:e0:06.0: bridge window [io size 0x1000]: can't assign; no space
[ 1.422813] pci 10000:e0:06.0: bridge window [io size 0x1000]: failed to assign
[ 1.422815] pci 10000:e1:00.0: BAR 0 [mem 0x4c000000-0x4c003fff 64bit]: assigned
[ 1.422824] pci 10000:e0:06.0: PCI bridge to [bus e1]
[ 1.422826] pci 10000:e0:06.0: bridge window [mem 0x4c000000-0x4c0fffff]
[ 1.422857] pcieport 10000:e0:06.0: can't derive routing for PCI INT D
[ 1.422858] pcieport 10000:e0:06.0: PCI INT D: no GSI
[ 1.422913] pcieport 10000:e0:06.0: PME: Signaling with IRQ 186
[ 1.422971] vmd 0000:00:0e.0: Bound to PCI domain 10000
[ 1.504753] usb 1-2: new full-speed USB device number 2 using xhci_hcd
[ 1.534773] nvidia: loading out-of-tree module taints kernel.
[ 1.534781] nvidia: module license 'NVIDIA' taints kernel.
[ 1.534782] Disabling lock debugging due to kernel taint
[ 1.534783] nvidia: module verification failed: signature and/or required key missing - tainting kernel
[ 1.534784] nvidia: module license taints kernel.
[ 1.594557] nvidia-nvlink: Nvlink Core is being initialized, major device number 239
[ 1.595188] nvidia 0000:02:00.0: enabling device (0100 -> 0103)
[ 1.595308] nvidia 0000:02:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=none
[ 1.637834] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 535.183.01 Sun May 12 19:39:15 UTC 2024
[ 1.660235] usb 1-2: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.11
[ 1.660249] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.660254] usb 1-2: Product: USB Receiver
[ 1.660258] usb 1-2: Manufacturer: Logitech
[ 1.759113] input: FTCS1000:01 2808:0102 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0001/input/input8
[ 1.759283] input: FTCS1000:01 2808:0102 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0001/input/input9
[ 1.759412] hid-generic 0018:2808:0102.0001: input,hidraw0: I2C HID v1.00 Mouse [FTCS1000:01 2808:0102] on i2c-FTCS1000:01
[ 1.762409] nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms 535.183.01 Sun May 12 19:31:08 UTC 2024
[ 1.763673] nvme nvme0: pci function 10000:e1:00.0
[ 1.763694] pcieport 10000:e0:06.0: can't derive routing for PCI INT A
[ 1.763697] nvme 10000:e1:00.0: PCI INT A: not connected
[ 1.764173] [drm] [nvidia-drm] [GPU ID 0x00000200] Loading driver
[ 1.766038] nvme nvme0: missing or invalid SUBNQN field.
[ 1.766179] nvme nvme0: Shutdown timeout set to 8 seconds
[ 1.776627] usb 1-6: new high-speed USB device number 3 using xhci_hcd
[ 1.784892] nvme nvme0: 18/0/0 default/read/poll queues
[ 1.790804] nvme0n1: p1 p2 p3
[ 1.804181] ACPI Warning: \_SB.NPCF._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20230628/nsarguments-61)
[ 1.804248] ACPI Warning: \_SB.PC00.PEG2.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20230628/nsarguments-61)
[ 1.825927] input: FTCS1000:01 2808:0102 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0001/input/input11
[ 1.826160] input: FTCS1000:01 2808:0102 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0001/input/input12
[ 1.826236] hid-multitouch 0018:2808:0102.0001: input,hidraw0: I2C HID v1.00 Mouse [FTCS1000:01 2808:0102] on i2c-FTCS1000:01
[ 1.935417] usb 1-6: New USB device found, idVendor=04f2, idProduct=b7e7, bcdDevice= 0.04
[ 1.935429] usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.935434] usb 1-6: Product: Chicony USB2.0 Camera
[ 1.935437] usb 1-6: Manufacturer: SunplusIT Inc
[ 1.935439] usb 1-6: SerialNumber: 01.00.00
[ 2.065707] usb 1-7: new full-speed USB device number 4 using xhci_hcd
[ 2.196226] usb 1-7: New USB device found, idVendor=048d, idProduct=8910, bcdDevice= 0.01
[ 2.196239] usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.196244] usb 1-7: Product: ITE Device(829x)
[ 2.196247] usb 1-7: Manufacturer: ITE Tech. Inc.
[ 2.311713] usb 1-14: new full-speed USB device number 5 using xhci_hcd
[ 2.439823] usb 1-14: New USB device found, idVendor=8087, idProduct=0033, bcdDevice= 0.00
[ 2.439827] usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.445937] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.0/0003:046D:C52B.0002/input/input14
[ 2.498162] hid-generic 0003:046D:C52B.0002: input,hidraw1: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-2/input0
[ 2.500280] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.1/0003:046D:C52B.0003/input/input15
[ 2.500544] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.1/0003:046D:C52B.0003/input/input16
[ 2.552200] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.1/0003:046D:C52B.0003/input/input17
[ 2.552628] hid-generic 0003:046D:C52B.0003: input,hiddev0,hidraw2: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-2/input1
[ 2.554477] hid-generic 0003:046D:C52B.0004: hiddev1,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-2/input2
[ 2.556111] hid-generic 0003:048D:8910.0005: hiddev2,hidraw4: USB HID v1.10 Device [ITE Tech. Inc. ITE Device(829x)] on usb-0000:00:14.0-7/input0
[ 2.556147] usbcore: registered new interface driver usbhid
[ 2.556150] usbhid: USB HID core driver
[ 2.586274] nvidia-modeset: WARNING: GPU:0: Unable to read EDID for display device DP-2
[ 2.595704] nvidia-modeset: WARNING: GPU:0: Unable to read EDID for display device DP-2
[ 2.597338] [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:02:00.0 on minor 1
[ 2.648013] logitech-djreceiver 0003:046D:C52B.0004: hiddev0,hidraw1: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-2/input2
[ 2.755057] input: Logitech Wireless Device PID:4082 Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.2/0003:046D:C52B.0004/0003:046D:4082.0006/input/input19
[ 2.755833] input: Logitech Wireless Device PID:4082 Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.2/0003:046D:C52B.0004/0003:046D:4082.0006/input/input20
[ 2.756868] hid-generic 0003:046D:4082.0006: input,hidraw2: USB HID v1.11 Keyboard [Logitech Wireless Device PID:4082] on usb-0000:00:14.0-2/input2:1
[ 2.757764] input: Logitech Wireless Device PID:408a Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.2/0003:046D:C52B.0004/0003:046D:408A.0007/input/input24
[ 2.758047] input: Logitech Wireless Device PID:408a Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.2/0003:046D:C52B.0004/0003:046D:408A.0007/input/input25
[ 2.758397] hid-generic 0003:046D:408A.0007: input,hidraw3: USB HID v1.11 Keyboard [Logitech Wireless Device PID:408a] on usb-0000:00:14.0-2/input2:2
[ 2.809821] input: Logitech MX Master 3 as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.2/0003:046D:C52B.0004/0003:046D:4082.0006/input/input29
[ 2.810274] logitech-hidpp-device 0003:046D:4082.0006: input,hidraw2: USB HID v1.11 Keyboard [Logitech MX Master 3] on usb-0000:00:14.0-2/input2:1
[ 2.865931] input: Logitech MX Keys as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.2/0003:046D:C52B.0004/0003:046D:408A.0007/input/input30
[ 2.866266] logitech-hidpp-device 0003:046D:408A.0007: input,hidraw3: USB HID v1.11 Keyboard [Logitech MX Keys] on usb-0000:00:14.0-2/input2:2
[ 2.899100] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input7
[ 20.166709] thunderbolt 0000:06:00.0: 0: suspending switch
[ 20.166725] thunderbolt 0000:06:00.0: 0: enabling wakeup: 0x3f
[ 20.167899] thunderbolt 0000:06:00.0: stopping RX ring 0
[ 20.167922] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[ 20.167956] thunderbolt 0000:06:00.0: stopping TX ring 0
[ 20.167972] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[ 20.167995] thunderbolt 0000:06:00.0: control channel stopped
[ 130.160621] raid6: avx2x4 gen() 33395 MB/s
[ 130.177621] raid6: avx2x2 gen() 36541 MB/s
[ 130.194621] raid6: avx2x1 gen() 33840 MB/s
[ 130.194621] raid6: using algorithm avx2x2 gen() 36541 MB/s
[ 130.211621] raid6: .... xor() 28781 MB/s, rmw enabled
[ 130.211622] raid6: using avx2x2 recovery algorithm
[ 130.213900] xor: automatically using best checksumming function avx
[ 130.280876] Btrfs loaded, zoned=yes, fsverity=yes
[ 130.315767] BTRFS: device label kfocus_2404 devid 1 transid 262 /dev/mapper/luks-9992e62a-e20e-4d65-8cd4-d1988f6f3ab3 scanned by mount (673)
[ 130.316523] BTRFS info (device dm-0): first mount of filesystem d4f6fb42-b08b-4b54-a060-a4e3fc1f51fd
[ 130.316537] BTRFS info (device dm-0): using crc32c (crc32c-intel) checksum algorithm
[ 130.316541] BTRFS info (device dm-0): using free-space-tree
[ 130.462629] systemd[1]: Inserted module 'autofs4'
[ 130.709082] systemd[1]: systemd 255.4-1ubuntu8.4 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[ 130.709091] systemd[1]: Detected architecture x86-64.
[ 130.709954] systemd[1]: Hostname set to <oem>.
[ 130.784313] systemd[1]: Configuration file /run/systemd/system/netplan-ovs-cleanup.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
[ 130.816824] systemd[1]: Queued start job for default target graphical.target.
[ 130.832571] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[ 130.832785] systemd[1]: Created slice system-systemd\x2dcryptsetup.slice - Encrypted Volume Units Service Slice.
[ 130.832947] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[ 130.833067] systemd[1]: Created slice user.slice - User and Session Slice.
[ 130.833100] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[ 130.833208] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[ 130.833218] systemd[1]: Expecting device dev-disk-by\x2duuid-46d5c175\x2dd275\x2d43d0\x2db7a3\x2d4d93351da834.device - /dev/disk/by-uuid/46d5c175-d275-43d0-b7a3-4d93351da834...
[ 130.833223] systemd[1]: Expecting device dev-disk-by\x2duuid-9992e62a\x2de20e\x2d4d65\x2d8cd4\x2dd1988f6f3ab3.device - /dev/disk/by-uuid/9992e62a-e20e-4d65-8cd4-d1988f6f3ab3...
[ 130.833227] systemd[1]: Expecting device dev-disk-by\x2duuid-CCB5\x2dDF12.device - /dev/disk/by-uuid/CCB5-DF12...
[ 130.833232] systemd[1]: Expecting device dev-disk-by\x2duuid-d4f6fb42\x2db08b\x2d4b54\x2da060\x2da4e3fc1f51fd.device - /dev/disk/by-uuid/d4f6fb42-b08b-4b54-a060-a4e3fc1f51fd...
[ 130.833235] systemd[1]: Expecting device dev-mapper-luks\x2d9992e62a\x2de20e\x2d4d65\x2d8cd4\x2dd1988f6f3ab3.device - /dev/mapper/luks-9992e62a-e20e-4d65-8cd4-d1988f6f3ab3...
[ 130.833249] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[ 130.833261] systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups.
[ 130.833267] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[ 130.833274] systemd[1]: Reached target slices.target - Slice Units.
[ 130.833282] systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
[ 130.833298] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[ 130.833336] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[ 130.833668] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[ 130.833984] systemd[1]: Listening on syslog.socket - Syslog Socket.
[ 130.834029] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[ 130.834051] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[ 130.834094] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[ 130.834138] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[ 130.834164] systemd[1]: systemd-pcrextend.socket - TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 130.835386] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ 130.835455] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 130.837682] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[ 130.838486] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[ 130.839139] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[ 130.839790] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[ 130.841995] systemd[1]: Starting systemd-journald.service - Journal Service...
[ 130.842075] systemd[1]: Finished blk-availability.service - Availability of block devices.
[ 130.843677] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[ 130.844599] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[ 130.845368] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[ 130.846192] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 130.847034] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[ 130.847734] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[ 130.848382] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[ 130.849313] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[ 130.850055] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[ 130.851274] systemd[1]: Starting modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics...
[ 130.852313] systemd-journald[745]: Collecting audit messages is disabled.
[ 130.852459] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[ 130.852476] systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 130.853064] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[ 130.853090] systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 130.853648] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ 130.854243] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[ 130.854299] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ 130.854332] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ 130.854362] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ 130.854424] pstore: Using crash dump compression: deflate
[ 130.854453] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ 130.854554] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 130.854615] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[ 130.854717] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 130.854774] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[ 130.854865] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 130.854917] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[ 130.855004] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 130.855056] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[ 130.855547] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[ 130.855924] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[ 130.856386] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[ 130.856507] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 130.856574] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[ 130.856643] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[ 130.858792] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[ 130.859697] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[ 130.860889] BTRFS info (device dm-0: state M): turning on sync discard
[ 130.860892] BTRFS info (device dm-0: state M): enabling auto defrag
[ 130.860893] BTRFS info (device dm-0: state M): use lzo compression, level 0
[ 130.861578] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[ 130.862215] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[ 130.862783] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[ 130.862793] systemd[1]: systemd-tpm2-setup.service - TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 130.862909] systemd[1]: modprobe@nvme_fabrics.service: Deactivated successfully.
[ 130.862979] systemd[1]: Finished modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics.
[ 130.865660] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[ 130.865745] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
[ 130.866148] lp: driver loaded but no devices found
[ 130.866207] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[ 130.875929] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[ 130.886127] ppdev: user-space parallel port driver
[ 130.889187] systemd[1]: Started systemd-journald.service - Journal Service.
[ 130.894029] systemd-journald[745]: Received client request to flush runtime journal.
[ 130.902807] systemd-journald[745]: /var/log/journal/727848098c2c4158adab42128cd9626b/system.journal: Journal file uses a different sequence number ID, rotating.
[ 130.902811] systemd-journald[745]: Rotating system journal.
[ 130.911679] tuxedo_keyboard: module init
[ 130.919912] pstore: Registered efi_pstore as persistent store backend
[ 130.944649] loop0: detected capacity change from 0 to 21952
[ 130.944745] loop1: detected capacity change from 0 to 152040
[ 130.944840] loop2: detected capacity change from 0 to 8
[ 130.946508] loop3: detected capacity change from 0 to 1034424
[ 130.947545] loop4: detected capacity change from 0 to 79520
[ 130.947805] loop5: detected capacity change from 0 to 187776
[ 130.947892] loop6: detected capacity change from 0 to 79328
[ 130.956720] BTRFS info: devid 1 device path /dev/mapper/luks-9992e62a-e20e-4d65-8cd4-d1988f6f3ab3 changed to /dev/dm-0 scanned by (udev-worker) (844)
[ 130.957106] BTRFS info: devid 1 device path /dev/dm-0 changed to /dev/mapper/luks-9992e62a-e20e-4d65-8cd4-d1988f6f3ab3 scanned by (udev-worker) (844)
[ 130.971763] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 130.975012] input: Intel HID events as /devices/platform/INTC1051:00/input/input31
[ 130.986346] nvidia_uvm: module uses symbols nvUvmInterfaceDisableAccessCntr from proprietary module nvidia, inheriting taint.
[ 131.018193] nvidia-uvm: Loaded the UVM driver, major device number 511.
[ 131.020783] Consider using thermal netlink events interface
[ 131.046319] mc: Linux media interface: v0.10
[ 131.046866] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 131.046921] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 131.046944] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 131.046972] intel_pmc_core INT33A1:00: initialized
[ 131.047064] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 131.047130] tuxedo_keyboard: set_mode on CUSTOM
[ 131.047166] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 131.049128] ite_829x 0003:048D:8910.0005: hiddev1,hidraw4: USB HID v1.10 Device [ITE Tech. Inc. ITE Device(829x)] on usb-0000:00:14.0-7/input0
[ 131.049261] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[ 131.049264] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 131.049265] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 131.049266] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[ 131.049266] RAPL PMU: hw unit of domain psys 2^-14 Joules
[ 131.085850] tuxedo_keyboard: Set brightness on 75
[ 131.092374] tuxedo_keyboard: Set keyboard enabled to: 1
[ 131.097774] input: TUXEDO Keyboard as /devices/platform/tuxedo_keyboard/input/input32
[ 131.097956] clevo_acpi: interface initialized
[ 131.098024] clevo_wmi: interface initialized
[ 131.098097] i2c i2c-8: 2/2 memory slots populated (from DMI)
[ 131.098101] i2c i2c-8: Memory type 0x22 not supported yet, not instantiating SPD
[ 131.104137] intel_rapl_msr: PL4 support detected.
[ 131.104183] intel_rapl_common: Found RAPL domain package
[ 131.104185] intel_rapl_common: Found RAPL domain core
[ 131.104187] intel_rapl_common: Found RAPL domain uncore
[ 131.104188] intel_rapl_common: Found RAPL domain psys
[ 131.111950] Intel(R) Wireless WiFi driver for Linux
[ 131.113965] videodev: Linux video capture interface: v2.00
[ 131.114590] iwlwifi 0000:00:14.3: Detected crf-id 0x400410, cnv-id 0x80401 wfpm id 0x80000020
[ 131.114661] iwlwifi 0000:00:14.3: PCI dev 7a70/0094, rev=0x430, rfid=0x2010d000
[ 131.116174] Creating 1 MTD partitions on "0000:00:1f.5":
[ 131.116197] 0x000000000000-0x000002000000 : "BIOS"
[ 131.121465] iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.0.2.41
[ 131.121675] iwlwifi 0000:00:14.3: loaded firmware version 86.fb5c9aeb.0 so-a0-gf-a0-86.ucode op_mode iwlmvm
[ 131.151024] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_1 due to name collision
[ 131.151035] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_2 due to name collision
[ 131.151045] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_3 due to name collision
[ 131.151054] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_4 due to name collision
[ 131.151064] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_5 due to name collision
[ 131.151075] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_6 due to name collision
[ 131.151086] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_7 due to name collision
[ 131.151100] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_8 due to name collision
[ 131.151113] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_9 due to name collision
[ 131.151127] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_10 due to name collision
[ 131.151142] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_11 due to name collision
[ 131.151158] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_12 due to name collision
[ 131.151176] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_13 due to name collision
[ 131.151193] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_14 due to name collision
[ 131.151212] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_15 due to name collision
[ 131.151231] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_16 due to name collision
[ 131.151253] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_17 due to name collision
[ 131.151275] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_18 due to name collision
[ 131.151298] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_19 due to name collision
[ 131.151322] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_20 due to name collision
[ 131.151348] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_21 due to name collision
[ 131.151375] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_22 due to name collision
[ 131.151405] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_23 due to name collision
[ 131.151441] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_24 due to name collision
[ 131.151472] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_25 due to name collision
[ 131.151503] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_26 due to name collision
[ 131.151537] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_27 due to name collision
[ 131.151573] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_28 due to name collision
[ 131.151608] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_29 due to name collision
[ 131.151649] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_30 due to name collision
[ 131.151688] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_31 due to name collision
[ 131.151728] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_32 due to name collision
[ 131.151770] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_33 due to name collision
[ 131.151813] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_34 due to name collision
[ 131.151858] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_35 due to name collision
[ 131.151904] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_36 due to name collision
[ 131.151951] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_37 due to name collision
[ 131.152001] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_38 due to name collision
[ 131.152053] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_39 due to name collision
[ 131.152105] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_40 due to name collision
[ 131.152159] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_41 due to name collision
[ 131.152215] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_42 due to name collision
[ 131.152274] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_43 due to name collision
[ 131.152333] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_44 due to name collision
[ 131.152395] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_45 due to name collision
[ 131.152458] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_46 due to name collision
[ 131.152523] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_47 due to name collision
[ 131.152591] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_48 due to name collision
[ 131.152663] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_49 due to name collision
[ 131.152734] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_50 due to name collision
[ 131.152807] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_51 due to name collision
[ 131.152883] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_52 due to name collision
[ 131.152960] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_53 due to name collision
[ 131.153040] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_54 due to name collision
[ 131.153123] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_55 due to name collision
[ 131.153212] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_56 due to name collision
[ 131.153298] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_57 due to name collision
[ 131.153387] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_58 due to name collision
[ 131.153478] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_59 due to name collision
[ 131.153572] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_60 due to name collision
[ 131.153668] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_61 due to name collision
[ 131.153765] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_62 due to name collision
[ 131.153864] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_63 due to name collision
[ 131.153966] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_64 due to name collision
[ 131.154070] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_65 due to name collision
[ 131.154176] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_66 due to name collision
[ 131.154286] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_67 due to name collision
[ 131.154396] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_68 due to name collision
[ 131.154510] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_69 due to name collision
[ 131.154629] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_70 due to name collision
[ 131.154749] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_71 due to name collision
[ 131.154870] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_72 due to name collision
[ 131.154995] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_73 due to name collision
[ 131.155121] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_74 due to name collision
[ 131.155250] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_75 due to name collision
[ 131.155382] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_76 due to name collision
[ 131.155517] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_77 due to name collision
[ 131.155657] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_78 due to name collision
[ 131.155797] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_79 due to name collision
[ 131.155940] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_80 due to name collision
[ 131.156086] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_81 due to name collision
[ 131.156234] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_82 due to name collision
[ 131.156386] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_83 due to name collision
[ 131.156541] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_84 due to name collision
[ 131.156702] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_85 due to name collision
[ 131.156862] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_86 due to name collision
[ 131.157027] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_87 due to name collision
[ 131.157196] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_88 due to name collision
[ 131.157366] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_89 due to name collision
[ 131.157539] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_90 due to name collision
[ 131.157717] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_91 due to name collision
[ 131.157896] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_92 due to name collision
[ 131.158082] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_93 due to name collision
[ 131.158271] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_94 due to name collision
[ 131.158469] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_95 due to name collision
[ 131.158669] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_96 due to name collision
[ 131.158876] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_97 due to name collision
[ 131.159165] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_98 due to name collision
[ 131.159474] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_99 due to name collision
[ 131.159481] Bluetooth: Core ver 2.22
[ 131.159511] NET: Registered PF_BLUETOOTH protocol family
[ 131.159513] Bluetooth: HCI device and connection manager initialized
[ 131.159517] Bluetooth: HCI socket layer initialized
[ 131.159520] Bluetooth: L2CAP socket layer initialized
[ 131.159525] Bluetooth: SCO socket layer initialized
[ 131.159786] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_100 due to name collision
[ 131.160066] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_101 due to name collision
[ 131.160354] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_102 due to name collision
[ 131.160642] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_103 due to name collision
[ 131.160958] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_104 due to name collision
[ 131.161294] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_105 due to name collision
[ 131.161600] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_106 due to name collision
[ 131.161861] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_107 due to name collision
[ 131.162149] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_108 due to name collision
[ 131.162468] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_109 due to name collision
[ 131.162814] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_110 due to name collision
[ 131.163170] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_111 due to name collision
[ 131.163493] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_112 due to name collision
[ 131.163860] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_113 due to name collision
[ 131.164194] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_114 due to name collision
[ 131.164531] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_115 due to name collision
[ 131.164923] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_116 due to name collision
[ 131.165331] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_117 due to name collision
[ 131.165743] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_118 due to name collision
[ 131.166161] ite_829x 0003:048D:8910.0005: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_119 due to name collision
[ 131.168685] intel_rapl_common: Found RAPL domain package
[ 131.183624] usb 1-6: Found UVC 1.50 device Chicony USB2.0 Camera (04f2:b7e7)
[ 131.185120] usbcore: registered new interface driver btusb
[ 131.186538] Bluetooth: hci0: Device revision is 0
[ 131.186542] Bluetooth: hci0: Secure boot is enabled
[ 131.186544] Bluetooth: hci0: OTP lock is enabled
[ 131.186545] Bluetooth: hci0: API lock is enabled
[ 131.186545] Bluetooth: hci0: Debug lock is disabled
[ 131.186547] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[ 131.186548] Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38
[ 131.186699] ACPI Warning: \_SB.PC00.XHCI.RHUB.HS14._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20230628/nsarguments-61)
[ 131.186800] Bluetooth: hci0: DSM reset method type: 0x00
[ 131.190884] Bluetooth: hci0: Found device firmware: intel/ibt-1040-0041.sfi
[ 131.190897] Bluetooth: hci0: Boot Address: 0x100800
[ 131.190898] Bluetooth: hci0: Firmware Version: 60-48.23
[ 131.220140] usb 1-6: Found UVC 1.50 device Chicony USB2.0 Camera (04f2:b7e7)
[ 131.230860] usbcore: registered new interface driver uvcvideo
[ 131.475330] i915 0000:00:02.0: [drm] VT-d active for gfx access
[ 131.491773] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[ 131.496428] intel_tcc_cooling: Programmable TCC Offset detected
[ 131.497938] i915 0000:00:02.0: vgaarb: deactivate vga console
[ 131.498000] i915 0000:00:02.0: [drm] Using Transparent Hugepages
[ 131.498762] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=io+mem
[ 131.500320] snd_hda_intel 0000:02:00.1: enabling device (0000 -> 0002)
[ 131.500450] snd_hda_intel 0000:02:00.1: Disabling MSI
[ 131.500459] snd_hda_intel 0000:02:00.1: Handle vga_switcheroo audio client
[ 131.500725] iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6E AX211 160MHz, REV=0x430
[ 131.500861] thermal thermal_zone9: failed to read out thermal zone (-61)
[ 131.501257] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
[ 131.503257] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/adls_dmc_ver2_01.bin (v2.1)
[ 131.513109] iwlwifi 0000:00:14.3: WRT: Invalid buffer destination
[ 131.521035] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/tgl_guc_70.bin version 70.20.0
[ 131.521038] i915 0000:00:02.0: [drm] GT0: HuC firmware i915/tgl_huc.bin version 7.9.3
[ 131.521444] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC1220: line_outs=1 (0x1b/0x0/0x0/0x0/0x0) type:speaker
[ 131.521450] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 131.521453] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x14/0x0/0x0/0x0/0x0)
[ 131.521455] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 131.521456] snd_hda_codec_realtek hdaudioC0D0: dig-out=0x1e/0x0
[ 131.521457] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 131.521459] snd_hda_codec_realtek hdaudioC0D0: Mic=0x18
[ 131.521461] snd_hda_codec_realtek hdaudioC0D0: Internal Mic=0x12
[ 131.524256] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card1/input33
[ 131.524351] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card1/input34
[ 131.524392] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card1/input35
[ 131.524430] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card1/input36
[ 131.529547] i915 0000:00:02.0: [drm] GT0: HuC: authenticated for all workloads
[ 131.530260] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
[ 131.530263] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
[ 131.530844] i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
[ 131.531809] mei_pxp 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1: bound 0000:00:02.0 (ops i915_pxp_tee_component_ops [i915])
[ 131.532017] i915 0000:00:02.0: [drm] Protected Xe Path (PXP) protected content support initialized
[ 131.532216] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input37
[ 131.532295] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input38
[ 131.674524] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[ 131.674539] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[ 131.674548] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[ 131.674558] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[ 131.675452] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
[ 131.675969] iwlwifi 0000:00:14.3: loaded PNVM version e28bb9d7
[ 131.693901] iwlwifi 0000:00:14.3: Detected RF GF, rfid=0x2010d000
[ 131.762890] iwlwifi 0000:00:14.3: base HW address: 98:5f:41:dd:bb:cf
[ 131.782406] iwlwifi 0000:00:14.3 wlp0s20f3: renamed from wlan0
[ 131.873853] BTRFS: device label kfocus_boot devid 1 transid 39 /dev/nvme0n1p2 scanned by mount (1294)
[ 131.874404] BTRFS info (device nvme0n1p2): first mount of filesystem 46d5c175-d275-43d0-b7a3-4d93351da834
[ 131.874416] BTRFS info (device nvme0n1p2): using crc32c (crc32c-intel) checksum algorithm
[ 131.874422] BTRFS info (device nvme0n1p2): using free-space-tree
[ 131.895437] Adding 524284k swap on /swap/swapfile. Priority:-2 extents:2 across:6891796k
[ 131.923601] audit: type=1400 audit(1728618393.467:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="QtWebEngineProcess" pid=1342 comm="apparmor_parser"
[ 131.923607] audit: type=1400 audit(1728618393.467:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=1344 comm="apparmor_parser"
[ 131.923685] audit: type=1400 audit(1728618393.468:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="busybox" pid=1347 comm="apparmor_parser"
[ 131.923696] audit: type=1400 audit(1728618393.468:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="buildah" pid=1346 comm="apparmor_parser"
[ 131.923787] audit: type=1400 audit(1728618393.468:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=1341 comm="apparmor_parser"
[ 131.923888] audit: type=1400 audit(1728618393.468:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="cam" pid=1348 comm="apparmor_parser"
[ 131.923892] audit: type=1400 audit(1728618393.468:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-checkns" pid=1349 comm="apparmor_parser"
[ 131.923894] audit: type=1400 audit(1728618393.468:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=1345 comm="apparmor_parser"
[ 131.924174] audit: type=1400 audit(1728618393.468:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="github-desktop" pid=1363 comm="apparmor_parser"
[ 131.924197] audit: type=1400 audit(1728618393.468:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ipa_verify" pid=1365 comm="apparmor_parser"
[ 132.605022] Bluetooth: hci0: Waiting for firmware download to complete
[ 132.605036] Bluetooth: hci0: Firmware loaded in 1381004 usecs
[ 132.605193] Bluetooth: hci0: Waiting for device to boot
[ 132.620927] Bluetooth: hci0: Device booted in 15481 usecs
[ 132.620944] Bluetooth: hci0: Malformed MSFT vendor event: 0x02
[ 132.621190] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-1040-0041.ddc
[ 132.623690] Bluetooth: hci0: Applying Intel DDC parameters completed
[ 132.626717] Bluetooth: hci0: Firmware timestamp 2023.48 buildtype 1 build 75324
[ 132.626723] Bluetooth: hci0: Firmware SHA1: 0x23bac558
[ 133.205885] i915 0000:00:02.0: [drm] Skipping intel_backlight registration
[ 133.206352] [drm] Initialized i915 1.6.0 20230929 for 0000:00:02.0 on minor 2
[ 133.206857] ACPI: video: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[ 133.206905] ACPI: video: Video Device [PEGP] (multi-head: yes rom: no post: no)
[ 133.206973] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:05/LNXVIDEO:00/input/input39
[ 133.208806] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 133.209237] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input40
[ 133.209687] i915 display info: display version: 12
[ 133.209690] i915 display info: cursor_needs_physical: no
[ 133.209692] i915 display info: has_cdclk_crawl: no
[ 133.209694] i915 display info: has_cdclk_squash: no
[ 133.209696] i915 display info: has_ddi: yes
[ 133.209697] i915 display info: has_dp_mst: yes
[ 133.209699] i915 display info: has_dsb: yes
[ 133.209700] i915 display info: has_fpga_dbg: yes
[ 133.209702] i915 display info: has_gmch: no
[ 133.209703] i915 display info: has_hotplug: yes
[ 133.209704] i915 display info: has_hti: yes
[ 133.209706] i915 display info: has_ipc: yes
[ 133.209707] i915 display info: has_overlay: no
[ 133.209709] i915 display info: has_psr: yes
[ 133.209710] i915 display info: has_psr_hw_tracking: no
[ 133.209712] i915 display info: overlay_needs_physical: no
[ 133.209714] i915 display info: supports_tv: no
[ 133.209715] i915 display info: has_hdcp: yes
[ 133.209716] i915 display info: has_dmc: yes
[ 133.209718] i915 display info: has_dsc: yes
[ 133.212720] fbcon: i915drmfb (fb0) is primary device
[ 133.212725] fbcon: Deferring console take-over
[ 133.212729] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[ 133.496550] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 133.496553] Bluetooth: BNEP filters: protocol multicast
[ 133.496558] Bluetooth: BNEP socket layer initialized
[ 133.497897] Bluetooth: MGMT ver 1.22
[ 133.500167] NET: Registered PF_ALG protocol family
[ 133.559382] loop7: detected capacity change from 0 to 8
[ 133.561173] NET: Registered PF_QIPCRTR protocol family
[ 134.221366] iwlwifi 0000:00:14.3: WRT: Invalid buffer destination
[ 134.378152] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[ 134.378190] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[ 134.378222] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[ 134.378234] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[ 134.378860] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
[ 134.471691] iwlwifi 0000:00:14.3: Registered PHC clock: iwlwifi-PTP, with index: 1
[ 137.118726] igc 0000:03:00.0 enp3s0: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[ 140.026565] systemd-journald[745]: /var/log/journal/727848098c2c4158adab42128cd9626b/user-60999.journal: Journal file uses a different sequence number ID, rotating.
[ 140.509790] Bluetooth: RFCOMM TTY layer initialized
[ 140.509796] Bluetooth: RFCOMM socket layer initialized
[ 140.509799] Bluetooth: RFCOMM ver 1.11
[ 141.054758] warning: `kded5' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[ 141.974222] xhci_hcd 0000:2d:00.0: xHC error in resume, USBSTS 0x401, Reinit
[ 141.974226] usb usb3: root hub lost power or was reset
[ 141.974228] usb usb4: root hub lost power or was reset
[ 141.974338] thunderbolt 0000:06:00.0: control channel starting...
[ 141.974342] thunderbolt 0000:06:00.0: starting TX ring 0
[ 141.974348] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 141.974351] thunderbolt 0000:06:00.0: starting RX ring 0
[ 141.974356] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 141.974360] thunderbolt 0000:06:00.0: 0: resuming switch
[ 141.974362] thunderbolt 0000:06:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[ 141.974469] thunderbolt 0000:06:00.0: 0: disabling wakeup
[ 141.977493] thunderbolt 0000:06:00.0: acking hot plug event on 0:13
[ 141.977622] thunderbolt 0000:06:00.0: acking hot plug event on 0:14
[ 141.977747] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
[ 141.983254] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
[ 141.983258] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
[ 141.983382] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
[ 141.983386] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[ 141.983894] thunderbolt 0000:06:00.0: 0: TMU: mode set to: bi-directional, HiFi
[ 144.199474] wlp0s20f3: authenticate with a0:55:1f:2f:2c:92 (local address=98:5f:41:dd:bb:cf)
[ 144.200586] wlp0s20f3: send auth to a0:55:1f:2f:2c:92 (try 1/3)
[ 144.232738] wlp0s20f3: authenticated
[ 144.233659] wlp0s20f3: associate with a0:55:1f:2f:2c:92 (try 1/3)
[ 144.236773] wlp0s20f3: RX AssocResp from a0:55:1f:2f:2c:92 (capab=0x1011 status=0 aid=26)
[ 144.243415] wlp0s20f3: associated
[ 144.247699] wlp0s20f3: Limiting TX power to 30 (30 - 0) dBm as advertised by a0:55:1f:2f:2c:92
[ 149.936087] thunderbolt 0000:06:00.0: acking hot unplug event on 0:13
[ 149.936218] thunderbolt 0000:06:00.0: 0:13: DP IN resource unavailable
[ 149.936912] thunderbolt 0000:06:00.0: 0:13: enter redrive mode, keeping powered
[ 149.936921] thunderbolt 0000:06:00.0: bandwidth consumption changed, re-calculating estimated bandwidth
[ 149.936924] thunderbolt 0000:06:00.0: bandwidth re-calculation done
[ 149.936926] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 149.937119] thunderbolt 0000:06:00.0: 0:14: DP IN available
[ 149.937134] thunderbolt 0000:06:00.0: no suitable DP OUT adapter available, not tunneling
[ 151.708652] usb 1-9: new high-speed USB device number 6 using xhci_hcd
[ 152.183069] usb 1-9: New USB device found, idVendor=2109, idProduct=0100, bcdDevice= 3.00
[ 152.183086] usb 1-9: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 152.183092] usb 1-9: Product: USB-C dongle
[ 152.183097] usb 1-9: Manufacturer: VIA Technologies Inc.
[ 152.183101] usb 1-9: SerialNumber: 0000000000000001
[ 155.225784] usb 1-10: new high-speed USB device number 7 using xhci_hcd
[ 155.232971] thunderbolt 0000:06:00.0: acking hot unplug event on 0:14
[ 155.233076] thunderbolt 0000:06:00.0: 0:14: DP IN resource unavailable
[ 155.233845] thunderbolt 0000:06:00.0: 0:14: enter redrive mode, keeping powered
[ 155.233853] thunderbolt 0000:06:00.0: bandwidth consumption changed, re-calculating estimated bandwidth
[ 155.233856] thunderbolt 0000:06:00.0: bandwidth re-calculation done
[ 155.233858] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 155.233859] thunderbolt 0000:06:00.0: no suitable DP IN adapter available, not tunneling
[ 155.371973] usb 1-10: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.49
[ 155.371983] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 155.371985] usb 1-10: Product: 4-Port USB 2.0 Hub
[ 155.371988] usb 1-10: Manufacturer: Generic
[ 155.375342] hub 1-10:1.0: USB hub found
[ 155.376561] hub 1-10:1.0: 4 ports detected
[ 156.602750] usb 1-10.3: new full-speed USB device number 8 using xhci_hcd
[ 156.694015] usb 1-10.3: New USB device found, idVendor=043e, idProduct=9a39, bcdDevice= 4.11
[ 156.694023] usb 1-10.3: New USB device strings: Mfr=1, Product=3, SerialNumber=4
[ 156.694026] usb 1-10.3: Product: LG Monitor Controls
[ 156.694028] usb 1-10.3: Manufacturer: LG Electronics Inc.
[ 156.694030] usb 1-10.3: SerialNumber: 005INTX1F153
[ 156.700635] hid-generic 0003:043E:9A39.0008: hiddev2,hidraw5: USB HID v1.11 Device [LG Electronics Inc. LG Monitor Controls] on usb-0000:00:14.0-10.3/input0
[ 219.413699] usb 1-10: USB disconnect, device number 7
[ 219.413713] usb 1-10.3: USB disconnect, device number 8
[ 219.469939] thunderbolt 0000:06:00.0: acking hot plug event on 0:14
[ 219.470254] thunderbolt 0000:06:00.0: 0:14: DP IN resource available after hotplug
[ 219.471098] thunderbolt 0000:06:00.0: 0:14: exit redrive mode
[ 219.471113] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 219.471366] thunderbolt 0000:06:00.0: 0:14: DP IN available
[ 219.471381] thunderbolt 0000:06:00.0: no suitable DP OUT adapter available, not tunneling
[ 222.509634] usb 1-9: USB disconnect, device number 6
[ 222.556869] thunderbolt 0000:06:00.0: acking hot plug event on 0:13
[ 222.557202] thunderbolt 0000:06:00.0: 0:13: DP IN resource available after hotplug
[ 222.557941] thunderbolt 0000:06:00.0: 0:13: exit redrive mode
[ 222.557951] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 222.558143] thunderbolt 0000:06:00.0: 0:14: DP IN available
[ 222.558248] thunderbolt 0000:06:00.0: 0:13: DP IN available
[ 222.558257] thunderbolt 0000:06:00.0: no suitable DP OUT adapter available, not tunneling
[ 222.835652] logitech-hidpp-device 0003:046D:4082.0006: HID++ 4.5 device connected.
[ 240.135744] thunderbolt 0000:06:00.0: 0: suspending switch
[ 240.135760] thunderbolt 0000:06:00.0: 0: enabling wakeup: 0x3f
[ 240.136913] thunderbolt 0000:06:00.0: stopping RX ring 0
[ 240.136934] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[ 240.136973] thunderbolt 0000:06:00.0: stopping TX ring 0
[ 240.136988] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[ 240.137005] thunderbolt 0000:06:00.0: control channel stopped
[ 247.326555] usb 1-9: new high-speed USB device number 9 using xhci_hcd
[ 247.803092] usb 1-9: New USB device found, idVendor=2109, idProduct=0100, bcdDevice= 3.00
[ 247.803109] usb 1-9: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 247.803114] usb 1-9: Product: USB-C dongle
[ 247.803119] usb 1-9: Manufacturer: VIA Technologies Inc.
[ 247.803122] usb 1-9: SerialNumber: 0000000000000001
[ 253.228170] usb 1-10: new high-speed USB device number 10 using xhci_hcd
[ 253.376422] usb 1-10: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.49
[ 253.376433] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 253.376437] usb 1-10: Product: 4-Port USB 2.0 Hub
[ 253.376440] usb 1-10: Manufacturer: Generic
[ 253.379673] hub 1-10:1.0: USB hub found
[ 253.382247] hub 1-10:1.0: 4 ports detected
[ 253.670094] usb 1-10.3: new full-speed USB device number 11 using xhci_hcd
[ 253.764308] usb 1-10.3: New USB device found, idVendor=043e, idProduct=9a39, bcdDevice= 4.11
[ 253.764328] usb 1-10.3: New USB device strings: Mfr=1, Product=3, SerialNumber=4
[ 253.764334] usb 1-10.3: Product: LG Monitor Controls
[ 253.764338] usb 1-10.3: Manufacturer: LG Electronics Inc.
[ 253.764341] usb 1-10.3: SerialNumber: 005INTX1F153
[ 253.773314] hid-generic 0003:043E:9A39.0009: hiddev2,hidraw5: USB HID v1.11 Device [LG Electronics Inc. LG Monitor Controls] on usb-0000:00:14.0-10.3/input0
[ 298.240145] thunderbolt 0000:06:00.0: control channel starting...
[ 298.240154] thunderbolt 0000:06:00.0: starting TX ring 0
[ 298.240163] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 298.240168] thunderbolt 0000:06:00.0: starting RX ring 0
[ 298.240175] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 298.240182] thunderbolt 0000:06:00.0: 0: resuming switch
[ 298.240185] thunderbolt 0000:06:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[ 298.240374] xhci_hcd 0000:2d:00.0: xHC error in resume, USBSTS 0x401, Reinit
[ 298.240380] usb usb3: root hub lost power or was reset
[ 298.240381] usb usb4: root hub lost power or was reset
[ 298.240425] thunderbolt 0000:06:00.0: 0: disabling wakeup
[ 298.249228] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
[ 298.249233] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
[ 298.249355] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
[ 298.249359] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[ 298.249738] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
[ 298.249868] thunderbolt 0000:06:00.0: 0: TMU: mode set to: bi-directional, HiFi
[ 316.130969] thunderbolt 0000:06:00.0: 0: suspending switch
[ 316.130988] thunderbolt 0000:06:00.0: 0: enabling wakeup: 0x3f
[ 316.132187] thunderbolt 0000:06:00.0: stopping RX ring 0
[ 316.132211] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[ 316.132252] thunderbolt 0000:06:00.0: stopping TX ring 0
[ 316.132266] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[ 316.132283] thunderbolt 0000:06:00.0: control channel stopped
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-10-11 4:26 ` Aaron Rainbolt
@ 2024-10-11 16:38 ` Mika Westerberg
2024-10-11 18:02 ` Aaron Rainbolt
2024-10-11 23:37 ` Aaron Rainbolt
0 siblings, 2 replies; 29+ messages in thread
From: Mika Westerberg @ 2024-10-11 16:38 UTC (permalink / raw)
To: Aaron Rainbolt
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
Hi,
On Thu, Oct 10, 2024 at 11:26:56PM -0500, Aaron Rainbolt wrote:
> > Can you share full dmesg with the repro and "thunderbolt.dyndbg=+p" in
> > the kernel command line?
>
> The full log is very long, so I've included it as an email attachment.
> The exact steps taken after booting with the requested kernel parameter
> were:
>
> 1. boot with thunderbolt.dyndbg=+p kernel param, no USB-C plugged in.
> 2. After login, hot-plug two USB-C cables. This time, the displays came
> up and stayed resident (this happens sometimes)
> 3. Unplugged both cables.
> 4. Replugged both. This time, the displays did not show anything.
> 5. lspci -k "jiggled" the displays and they came back on.
> 6. After ~15s, the displays blacked out again.
> 7. Save to the demsg file after about 30s.
>
> The laptop's firmware is fully up-to-date. One of the fixes we tried
> was installing Windows 11, updating the firmware, and then
> re-installing Kubuntu 24.04. This had no effect on the issue.
>
> Notes:
>
> * Kernel 6.1 does not exhibit this time out. 6.5 and later do.
> * Windows 11 had very similar behavior before installing Windows
> updates. After update, it was fixed.
> * All distros and W11 were tested on the same hardware with the latest
> firmware, so we know this is not a hardware failure.
Thanks for the logs and steps!
I now realize that
a75e0684efe5 ("thunderbolt: Keep the domain powered when USB4 port is in redrive mode")
was half-baked. Yes it deals with the situation where plugging in
monitor when the domain is powered. However, it completely misses these
cases:
* Plug in monitor to the Type-C port when the controller is runtime
suspended.
* Boot with monitor plugged in to the Type-C port.
At the end of this email there is a hack patch that tries to solve this.
Can you try it out? I will be on vacation next week but I'm copying my
colleague Gil who is familiar with this too. He should be able to help
you out during my absense.
Couple of notes about the dmesg you shared. They don't affect this issue
but may cause other issues:
> [ 1.382718] thunderbolt 0000:06:00.0: device links to tunneled native ports are missing!
This is means the BIOS does not implement the USB4 power contract which
means that USB 3.x and PCIe tunnels will not work as expected after
power transition.
> [ 1.416488] thunderbolt 0000:06:00.0: 0: NVM version 14.86
This is really old firmware version. My development system for example
has 56.x so yours might have a bunch of issues that are solved in the
later versions.
The hack patch below:
diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
index 07a66594e904..0e424b7661be 100644
--- a/drivers/thunderbolt/tb.c
+++ b/drivers/thunderbolt/tb.c
@@ -2113,6 +2113,37 @@ static void tb_exit_redrive(struct tb_port *port)
}
}
+static void tb_switch_enter_redrive(struct tb_switch *sw)
+{
+ struct tb_port *port;
+
+ tb_switch_for_each_port(sw, port)
+ tb_enter_redrive(port);
+}
+
+/*
+ * Called during system and runtime suspend to forcefully exit redrive
+ * mode without querying whether the resource is available.
+ */
+static void tb_switch_exit_redrive(struct tb_switch *sw)
+{
+ struct tb_port *port;
+
+ if (!(sw->quirks & QUIRK_KEEP_POWER_IN_DP_REDRIVE))
+ return;
+
+ tb_switch_for_each_port(sw, port) {
+ if (!tb_port_is_dpin(port))
+ continue;
+
+ if (port->redrive) {
+ port->redrive = false;
+ pm_runtime_put(&sw->dev);
+ tb_port_dbg(port, "exit redrive mode\n");
+ }
+ }
+}
+
static void tb_dp_resource_unavailable(struct tb *tb, struct tb_port *port,
const char *reason)
{
@@ -2987,6 +3018,7 @@ static int tb_start(struct tb *tb, bool reset)
tb_create_usb3_tunnels(tb->root_switch);
/* Add DP IN resources for the root switch */
tb_add_dp_resources(tb->root_switch);
+ tb_switch_enter_redrive(tb->root_switch);
/* Make the discovered switches available to the userspace */
device_for_each_child(&tb->root_switch->dev, NULL,
tb_scan_finalize_switch);
@@ -3002,6 +3034,7 @@ static int tb_suspend_noirq(struct tb *tb)
tb_dbg(tb, "suspending...\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; /* signal tb_handle_hotplug to quit */
tb_dbg(tb, "suspend finished\n");
@@ -3094,6 +3127,7 @@ static int tb_resume_noirq(struct tb *tb)
tb_dbg(tb, "tunnels restarted, sleeping for 100ms\n");
msleep(100);
}
+ tb_switch_enter_redrive(tb->root_switch);
/* Allow tb_handle_hotplug to progress events */
tcm->hotplug_active = true;
tb_dbg(tb, "resume finished\n");
@@ -3157,6 +3191,8 @@ static int tb_runtime_suspend(struct tb *tb)
struct tb_cm *tcm = tb_priv(tb);
mutex_lock(&tb->lock);
+ tb_disconnect_and_release_dp(tb);
+ tb_switch_exit_redrive(tb->root_switch);
tb_switch_suspend(tb->root_switch, true);
tcm->hotplug_active = false;
mutex_unlock(&tb->lock);
@@ -3188,6 +3224,7 @@ static int tb_runtime_resume(struct tb *tb)
tb_restore_children(tb->root_switch);
list_for_each_entry_safe(tunnel, n, &tcm->tunnel_list, list)
tb_tunnel_activate(tunnel);
+ tb_switch_enter_redrive(tb->root_switch);
tcm->hotplug_active = true;
mutex_unlock(&tb->lock);
^ permalink raw reply related [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-10-11 16:38 ` Mika Westerberg
@ 2024-10-11 18:02 ` Aaron Rainbolt
2024-10-11 23:37 ` Aaron Rainbolt
1 sibling, 0 replies; 29+ messages in thread
From: Aaron Rainbolt @ 2024-10-11 18:02 UTC (permalink / raw)
To: Mika Westerberg
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
On Fri, 11 Oct 2024 19:38:11 +0300
Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
> Hi,
>
> On Thu, Oct 10, 2024 at 11:26:56PM -0500, Aaron Rainbolt wrote:
> > > Can you share full dmesg with the repro and
> > > "thunderbolt.dyndbg=+p" in the kernel command line?
> >
> > The full log is very long, so I've included it as an email
> > attachment. The exact steps taken after booting with the requested
> > kernel parameter were:
> >
> > 1. boot with thunderbolt.dyndbg=+p kernel param, no USB-C plugged
> > in. 2. After login, hot-plug two USB-C cables. This time, the
> > displays came up and stayed resident (this happens sometimes)
> > 3. Unplugged both cables.
> > 4. Replugged both. This time, the displays did not show anything.
> > 5. lspci -k "jiggled" the displays and they came back on.
> > 6. After ~15s, the displays blacked out again.
> > 7. Save to the demsg file after about 30s.
> >
> > The laptop's firmware is fully up-to-date. One of the fixes we tried
> > was installing Windows 11, updating the firmware, and then
> > re-installing Kubuntu 24.04. This had no effect on the issue.
> >
> > Notes:
> >
> > * Kernel 6.1 does not exhibit this time out. 6.5 and later do.
> > * Windows 11 had very similar behavior before installing Windows
> > updates. After update, it was fixed.
> > * All distros and W11 were tested on the same hardware with the
> > latest firmware, so we know this is not a hardware failure.
>
> Thanks for the logs and steps!
>
> I now realize that
>
> a75e0684efe5 ("thunderbolt: Keep the domain powered when USB4 port
> is in redrive mode")
>
> was half-baked. Yes it deals with the situation where plugging in
> monitor when the domain is powered. However, it completely misses
> these cases:
>
> * Plug in monitor to the Type-C port when the controller is runtime
> suspended.
> * Boot with monitor plugged in to the Type-C port.
>
> At the end of this email there is a hack patch that tries to solve
> this. Can you try it out? I will be on vacation next week but I'm
> copying my colleague Gil who is familiar with this too. He should be
> able to help you out during my absense.
Thank you so much! We have applied the patch to our kernel and are
recompiling now. I'll report back the results when testing is complete.
> Couple of notes about the dmesg you shared. They don't affect this
> issue but may cause other issues:
>
> > [ 1.382718] thunderbolt 0000:06:00.0: device links to tunneled
> > native ports are missing!
>
> This is means the BIOS does not implement the USB4 power contract
> which means that USB 3.x and PCIe tunnels will not work as expected
> after power transition.
Good to know, thank you.
> > [ 1.416488] thunderbolt 0000:06:00.0: 0: NVM version 14.86
>
> This is really old firmware version. My development system for example
> has 56.x so yours might have a bunch of issues that are solved in the
> later versions.
Ah, ok. The machine used for reproducing the issue for generating the
dmesg log was *not* the same machine as the one we did our initial
testing on, though it was the exact same model. We used Windows to fully
update the firmware on the machine where we did the bulk of our
testing, and the exact same symptoms were observed with the latest
firmware. We'll try to update the firmware on any machines we use for
future log gathering.
Thanks again for your help with this!
> The hack patch below:
>
> diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
> index 07a66594e904..0e424b7661be 100644
> --- a/drivers/thunderbolt/tb.c
> +++ b/drivers/thunderbolt/tb.c
> @@ -2113,6 +2113,37 @@ static void tb_exit_redrive(struct tb_port
> *port) }
> }
>
> +static void tb_switch_enter_redrive(struct tb_switch *sw)
> +{
> + struct tb_port *port;
> +
> + tb_switch_for_each_port(sw, port)
> + tb_enter_redrive(port);
> +}
> +
> +/*
> + * Called during system and runtime suspend to forcefully exit
> redrive
> + * mode without querying whether the resource is available.
> + */
> +static void tb_switch_exit_redrive(struct tb_switch *sw)
> +{
> + struct tb_port *port;
> +
> + if (!(sw->quirks & QUIRK_KEEP_POWER_IN_DP_REDRIVE))
> + return;
> +
> + tb_switch_for_each_port(sw, port) {
> + if (!tb_port_is_dpin(port))
> + continue;
> +
> + if (port->redrive) {
> + port->redrive = false;
> + pm_runtime_put(&sw->dev);
> + tb_port_dbg(port, "exit redrive mode\n");
> + }
> + }
> +}
> +
> static void tb_dp_resource_unavailable(struct tb *tb, struct tb_port
> *port, const char *reason)
> {
> @@ -2987,6 +3018,7 @@ static int tb_start(struct tb *tb, bool reset)
> tb_create_usb3_tunnels(tb->root_switch);
> /* Add DP IN resources for the root switch */
> tb_add_dp_resources(tb->root_switch);
> + tb_switch_enter_redrive(tb->root_switch);
> /* Make the discovered switches available to the userspace */
> device_for_each_child(&tb->root_switch->dev, NULL,
> tb_scan_finalize_switch);
> @@ -3002,6 +3034,7 @@ static int tb_suspend_noirq(struct tb *tb)
>
> tb_dbg(tb, "suspending...\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; /* signal tb_handle_hotplug to
> quit */ tb_dbg(tb, "suspend finished\n");
> @@ -3094,6 +3127,7 @@ static int tb_resume_noirq(struct tb *tb)
> tb_dbg(tb, "tunnels restarted, sleeping for
> 100ms\n"); msleep(100);
> }
> + tb_switch_enter_redrive(tb->root_switch);
> /* Allow tb_handle_hotplug to progress events */
> tcm->hotplug_active = true;
> tb_dbg(tb, "resume finished\n");
> @@ -3157,6 +3191,8 @@ static int tb_runtime_suspend(struct tb *tb)
> struct tb_cm *tcm = tb_priv(tb);
>
> mutex_lock(&tb->lock);
> + tb_disconnect_and_release_dp(tb);
> + tb_switch_exit_redrive(tb->root_switch);
> tb_switch_suspend(tb->root_switch, true);
> tcm->hotplug_active = false;
> mutex_unlock(&tb->lock);
> @@ -3188,6 +3224,7 @@ static int tb_runtime_resume(struct tb *tb)
> tb_restore_children(tb->root_switch);
> list_for_each_entry_safe(tunnel, n, &tcm->tunnel_list, list)
> tb_tunnel_activate(tunnel);
> + tb_switch_enter_redrive(tb->root_switch);
> tcm->hotplug_active = true;
> mutex_unlock(&tb->lock);
>
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-10-11 16:38 ` Mika Westerberg
2024-10-11 18:02 ` Aaron Rainbolt
@ 2024-10-11 23:37 ` Aaron Rainbolt
2024-10-23 6:27 ` Mika Westerberg
1 sibling, 1 reply; 29+ messages in thread
From: Aaron Rainbolt @ 2024-10-11 23:37 UTC (permalink / raw)
To: Mika Westerberg
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
[-- Attachment #1: Type: text/plain, Size: 7974 bytes --]
On Fri, 11 Oct 2024 19:38:11 +0300
Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
> Hi,
>
> On Thu, Oct 10, 2024 at 11:26:56PM -0500, Aaron Rainbolt wrote:
> > > Can you share full dmesg with the repro and
> > > "thunderbolt.dyndbg=+p" in the kernel command line?
> >
> > The full log is very long, so I've included it as an email
> > attachment. The exact steps taken after booting with the requested
> > kernel parameter were:
> >
> > 1. boot with thunderbolt.dyndbg=+p kernel param, no USB-C plugged
> > in. 2. After login, hot-plug two USB-C cables. This time, the
> > displays came up and stayed resident (this happens sometimes)
> > 3. Unplugged both cables.
> > 4. Replugged both. This time, the displays did not show anything.
> > 5. lspci -k "jiggled" the displays and they came back on.
> > 6. After ~15s, the displays blacked out again.
> > 7. Save to the demsg file after about 30s.
> >
> > The laptop's firmware is fully up-to-date. One of the fixes we tried
> > was installing Windows 11, updating the firmware, and then
> > re-installing Kubuntu 24.04. This had no effect on the issue.
> >
> > Notes:
> >
> > * Kernel 6.1 does not exhibit this time out. 6.5 and later do.
> > * Windows 11 had very similar behavior before installing Windows
> > updates. After update, it was fixed.
> > * All distros and W11 were tested on the same hardware with the
> > latest firmware, so we know this is not a hardware failure.
>
> Thanks for the logs and steps!
>
> I now realize that
>
> a75e0684efe5 ("thunderbolt: Keep the domain powered when USB4 port
> is in redrive mode")
>
> was half-baked. Yes it deals with the situation where plugging in
> monitor when the domain is powered. However, it completely misses
> these cases:
>
> * Plug in monitor to the Type-C port when the controller is runtime
> suspended.
> * Boot with monitor plugged in to the Type-C port.
>
> At the end of this email there is a hack patch that tries to solve
> this. Can you try it out? I will be on vacation next week but I'm
> copying my colleague Gil who is familiar with this too. He should be
> able to help you out during my absense.
>
> Couple of notes about the dmesg you shared. They don't affect this
> issue but may cause other issues:
>
> > [ 1.382718] thunderbolt 0000:06:00.0: device links to tunneled
> > native ports are missing!
>
> This is means the BIOS does not implement the USB4 power contract
> which means that USB 3.x and PCIe tunnels will not work as expected
> after power transition.
>
> > [ 1.416488] thunderbolt 0000:06:00.0: 0: NVM version 14.86
>
> This is really old firmware version. My development system for example
> has 56.x so yours might have a bunch of issues that are solved in the
> later versions.
>
> The hack patch below:
>
> diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
> index 07a66594e904..0e424b7661be 100644
> --- a/drivers/thunderbolt/tb.c
> +++ b/drivers/thunderbolt/tb.c
> @@ -2113,6 +2113,37 @@ static void tb_exit_redrive(struct tb_port
> *port) }
> }
>
> +static void tb_switch_enter_redrive(struct tb_switch *sw)
> +{
> + struct tb_port *port;
> +
> + tb_switch_for_each_port(sw, port)
> + tb_enter_redrive(port);
> +}
> +
> +/*
> + * Called during system and runtime suspend to forcefully exit
> redrive
> + * mode without querying whether the resource is available.
> + */
> +static void tb_switch_exit_redrive(struct tb_switch *sw)
> +{
> + struct tb_port *port;
> +
> + if (!(sw->quirks & QUIRK_KEEP_POWER_IN_DP_REDRIVE))
> + return;
> +
> + tb_switch_for_each_port(sw, port) {
> + if (!tb_port_is_dpin(port))
> + continue;
> +
> + if (port->redrive) {
> + port->redrive = false;
> + pm_runtime_put(&sw->dev);
> + tb_port_dbg(port, "exit redrive mode\n");
> + }
> + }
> +}
> +
> static void tb_dp_resource_unavailable(struct tb *tb, struct tb_port
> *port, const char *reason)
> {
> @@ -2987,6 +3018,7 @@ static int tb_start(struct tb *tb, bool reset)
> tb_create_usb3_tunnels(tb->root_switch);
> /* Add DP IN resources for the root switch */
> tb_add_dp_resources(tb->root_switch);
> + tb_switch_enter_redrive(tb->root_switch);
> /* Make the discovered switches available to the userspace */
> device_for_each_child(&tb->root_switch->dev, NULL,
> tb_scan_finalize_switch);
> @@ -3002,6 +3034,7 @@ static int tb_suspend_noirq(struct tb *tb)
>
> tb_dbg(tb, "suspending...\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; /* signal tb_handle_hotplug to
> quit */ tb_dbg(tb, "suspend finished\n");
> @@ -3094,6 +3127,7 @@ static int tb_resume_noirq(struct tb *tb)
> tb_dbg(tb, "tunnels restarted, sleeping for
> 100ms\n"); msleep(100);
> }
> + tb_switch_enter_redrive(tb->root_switch);
> /* Allow tb_handle_hotplug to progress events */
> tcm->hotplug_active = true;
> tb_dbg(tb, "resume finished\n");
> @@ -3157,6 +3191,8 @@ static int tb_runtime_suspend(struct tb *tb)
> struct tb_cm *tcm = tb_priv(tb);
>
> mutex_lock(&tb->lock);
> + tb_disconnect_and_release_dp(tb);
> + tb_switch_exit_redrive(tb->root_switch);
> tb_switch_suspend(tb->root_switch, true);
> tcm->hotplug_active = false;
> mutex_unlock(&tb->lock);
> @@ -3188,6 +3224,7 @@ static int tb_runtime_resume(struct tb *tb)
> tb_restore_children(tb->root_switch);
> list_for_each_entry_safe(tunnel, n, &tcm->tunnel_list, list)
> tb_tunnel_activate(tunnel);
> + tb_switch_enter_redrive(tb->root_switch);
> tcm->hotplug_active = true;
> mutex_unlock(&tb->lock);
>
Attached are the test results (including dmesg log) after testing with
our version of the 6.8 kernel with this patch applied. Sadly we didn't
have time to test with 6.11.2 as the machines we were testing on had to
be shipped to customers and we found a working stop-gap solution in the
mean time. The test that we did, along with it's results, are as
follows:
1. Start with Laptop powered-off
2. Unplug all USB-C connectors.
3. Attempt to update firmware using Windows.
Version remains 'thunderbolt 0000:06:00.0: 0: NVM version 14.86'
4. Boot Kubuntu 24.04 with patched kernel, add cmdline parameter
thunderbolt.dyndbg=+p Note that a "thunderbolt.kf_force_redrive=1"
kernel parameter was also included by mistake, but it is ignored in
this kernel. (That was a leftover of a testing kernel we made.)
5. Log in to normal SDDM to KDE 5.27.11.
6. Open 'Display Settings KCM' to view display
detection.
7. Plug in 2 x UBC-C connectors attached to 4k displays.
- Note these work with Kernel 6.1 and non-Barlow Ridge systems (TB
4).
- Displays wake up, but never show graphics signal. They timeout
and resume powersave mode.
- Displays never appear in 'Display Settings KCM.'
- This is NOT desired behavior; displays should show.
8. Open a terminal and run 'lspci -k'
- Both displays are activated and remain active.
- There is no timeout.
- This is desired behavior.
9. Unplug USB-C connectors on at a time.
- System recognizes unplug, retains other display
- This is desired behavior.
10. Replug USB-C #1 attached to 4k display
- System does not show reattached display
- This is NOT desired behavior; display should show.
11. Replug USB-C #2
- System does not show reattached display
- This is NOT desired behavior; display should show.
12. Sleep and resume laptop (this powers-down and repowers USB-C)
- Displays are restored in 'Display Settings KCM'
- Displays show graphical output
- Display remain connected
- This is desired behavior.
13. Replug cables again
- Displays now are removed and shown as expected.
- This is desired behavior.
14. Write dmesg log attached here.
Thanks again for your assistance. We should have a dedicated testing
machine in a few days, which will let us repeat our tests on the latest
stable upstream kernel.
[-- Attachment #2: 2024-10-11_dmesg-thunderbolt.dynaorg+p_fw14.86.log --]
[-- Type: text/x-log, Size: 139632 bytes --]
[ 0.000000] Linux version 6.8.0-45-kfocus (root@kf-jane) (x86_64-linux-gnu-gcc-13 (Ubuntu 13.2.0-23ubuntu4) 13.2.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #45+kfocus2 SMP PREEMPT_DYNAMIC Fri Oct 11 10:55:49 PDT 2024 (Ubuntu 6.8.0-45.45+kfocus2-kfocus 6.8.12)
[ 0.000000] Command line: BOOT_IMAGE=/@boot/vmlinuz-6.8.0-45-kfocus root=UUID=9c2a749a-d478-4e57-b7a7-f4d8c5de2902 ro rootflags=subvol=@ quiet cryptdevice=UUID=10f3ea80-0841-49c9-8f38-b720275ff4e1:luks-10f3ea80-0841-49c9-8f38-b720275ff4e1 root=/dev/mapper/luks-10f3ea80-0841-49c9-8f38-b720275ff4e1 splash thunderbolt.kf_force_redrive=1 modprobe.blacklist=nouveau modprobe.blacklist=ucsi_acpi tpm_tis.interrupts=0 intel_pstate=passive snd_hda_core.gpu_bind=0 pci=noaer loglevel=3 vt.handoff=7 thunderbolt.dyndbg=+p
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Hygon HygonGenuine
[ 0.000000] Centaur CentaurHauls
[ 0.000000] zhaoxin Shanghai
[ 0.000000] x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000002c228fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000002c229000-0x000000002cb28fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000002cb29000-0x000000002e93efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000002e93f000-0x00000000309defff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000309df000-0x000000003398efff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000003398f000-0x0000000033afefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x0000000033aff000-0x0000000033afffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000033b00000-0x00000000383fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000038e00000-0x00000000407fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000018bf7fffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] efi: EFI v2.8 by INSYDE Corp.
[ 0.000000] efi: ACPI=0x33afe000 ACPI 2.0=0x33afe014 TPMFinalLog=0x33866000 SMBIOS=0x2efda000 MEMATTR=0x27a20118 ESRT=0x28a15018 MOKvar=0x2ef86000 INITRD=0x27b1cf98 RNG=0x33a24018 TPMEventLog=0x278b1018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem115: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0xc0000000-0xcfffffff] reserved
[ 0.000000] efi: Remove mem117: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] secureboot: Secure boot disabled
[ 0.000000] SMBIOS 3.4 present.
[ 0.000000] DMI: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 0.000000] tsc: Detected 2400.000 MHz processor
[ 0.000000] tsc: Detected 2419.200 MHz TSC
[ 0.000008] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000012] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000021] last_pfn = 0x18bf800 max_arch_pfn = 0x400000000
[ 0.000027] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
[ 0.000030] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000805] last_pfn = 0x33b00 max_arch_pfn = 0x400000000
[ 0.009586] esrt: Reserving ESRT space from 0x0000000028a15018 to 0x0000000028a150a0.
[ 0.009595] e820: update [mem 0x28a15000-0x28a15fff] usable ==> reserved
[ 0.009623] Using GB pages for direct mapping
[ 0.009948] secureboot: Secure boot disabled
[ 0.009949] RAMDISK: [mem 0x0c15a000-0x15db0fff]
[ 0.010496] ACPI: Early table checksum verification disabled
[ 0.010501] ACPI: RSDP 0x0000000033AFE014 000024 (v02 INSYDE)
[ 0.010506] ACPI: XSDT 0x0000000033A38188 00012C (v01 INSYDE ADL 00000002 01000013)
[ 0.010515] ACPI: FACP 0x0000000033ADB000 000114 (v06 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010522] ACPI: DSDT 0x0000000033A4E000 089652 (v02 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010527] ACPI: FACS 0x000000003383E000 000040
[ 0.010530] ACPI: UEFI 0x000000003398E000 0001CF (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
[ 0.010534] ACPI: SSDT 0x0000000033AF3000 00908F (v02 DptfTb DptfTabl 00001000 INTL 20200717)
[ 0.010538] ACPI: SSDT 0x0000000033AED000 005D34 (v02 CpuRef CpuSsdt 00003000 INTL 20200717)
[ 0.010542] ACPI: SSDT 0x0000000033AEA000 00276F (v02 SaSsdt SaSsdt 00003000 INTL 20200717)
[ 0.010546] ACPI: SSDT 0x0000000033AE6000 00328B (v02 INTEL IgfxSsdt 00003000 INTL 20200717)
[ 0.010549] ACPI: SSDT 0x0000000033AE5000 00077B (v02 INSYDE Tpm2Tabl 00001000 INTL 20200717)
[ 0.010553] ACPI: TPM2 0x0000000033AE4000 00004C (v04 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010557] ACPI: SSDT 0x0000000033ADF000 003249 (v02 INTEL DTbtSsdt 00001000 INTL 20200717)
[ 0.010560] ACPI: SSDT 0x0000000033ADD000 0016A6 (v02 INSYDE UsbCTabl 00001000 INTL 20200717)
[ 0.010564] ACPI: NHLT 0x0000000033ADC000 00002D (v00 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010567] ACPI: HPET 0x0000000033ADA000 000038 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010571] ACPI: APIC 0x0000000033AD9000 0001DC (v05 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010574] ACPI: MCFG 0x0000000033AD8000 00003C (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010578] ACPI: SSDT 0x0000000033A48000 0054E4 (v02 INSYDE ADL 00000002 01000013)
[ 0.010581] ACPI: WSMT 0x0000000033A47000 000028 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010585] ACPI: SSDT 0x0000000033A45000 0015FD (v02 INSYDE PtidDevc 00001000 INTL 20200717)
[ 0.010589] ACPI: SSDT 0x0000000033A3B000 009573 (v02 INSYDE TbtTypeC 00000000 INTL 20200717)
[ 0.010592] ACPI: DBGP 0x0000000033A3A000 000034 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010596] ACPI: DBG2 0x0000000033A39000 000054 (v00 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010599] ACPI: DMAR 0x0000000033AFD000 000088 (v01 INTEL ICL 00000002 ACPI 00040000)
[ 0.010603] ACPI: SSDT 0x0000000033A35000 002EE7 (v01 NvdRef NvdTabl 00001000 INTL 20200717)
[ 0.010606] ACPI: SSDT 0x0000000033A34000 000244 (v01 NvdRef NvdExt 00001000 INTL 20200717)
[ 0.010610] ACPI: SSDT 0x0000000033A33000 000640 (v01 NvdRef NvdDds 00001000 INTL 20200717)
[ 0.010614] ACPI: UEFI 0x000000003383B000 00063A (v01 INTEL RstVmdE 00000000 ACPI 00040000)
[ 0.010617] ACPI: UEFI 0x000000003383A000 00005C (v01 INTEL RstVmdV 00000000 ACPI 00040000)
[ 0.010621] ACPI: SSDT 0x0000000033A31000 001057 (v02 INTEL xh_rplsb 00000000 INTL 20200717)
[ 0.010624] ACPI: SSDT 0x0000000033A2D000 0039DA (v02 SocGpe SocGpe 00003000 INTL 20200717)
[ 0.010628] ACPI: SSDT 0x0000000033A29000 0039DA (v02 SocCmn SocCmn 00003000 INTL 20200717)
[ 0.010631] ACPI: SSDT 0x0000000033A28000 0000F8 (v02 INSYDE PcdTabl 00001000 INTL 20200717)
[ 0.010635] ACPI: FPDT 0x0000000033A27000 000044 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010639] ACPI: BGRT 0x0000000033A26000 000038 (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
[ 0.010642] ACPI: PHAT 0x0000000033A25000 00026D (v01 INSYDE ADL 00000005 ACPI 00040000)
[ 0.010645] ACPI: Reserving FACP table memory at [mem 0x33adb000-0x33adb113]
[ 0.010647] ACPI: Reserving DSDT table memory at [mem 0x33a4e000-0x33ad7651]
[ 0.010648] ACPI: Reserving FACS table memory at [mem 0x3383e000-0x3383e03f]
[ 0.010649] ACPI: Reserving UEFI table memory at [mem 0x3398e000-0x3398e1ce]
[ 0.010650] ACPI: Reserving SSDT table memory at [mem 0x33af3000-0x33afc08e]
[ 0.010651] ACPI: Reserving SSDT table memory at [mem 0x33aed000-0x33af2d33]
[ 0.010653] ACPI: Reserving SSDT table memory at [mem 0x33aea000-0x33aec76e]
[ 0.010654] ACPI: Reserving SSDT table memory at [mem 0x33ae6000-0x33ae928a]
[ 0.010655] ACPI: Reserving SSDT table memory at [mem 0x33ae5000-0x33ae577a]
[ 0.010656] ACPI: Reserving TPM2 table memory at [mem 0x33ae4000-0x33ae404b]
[ 0.010657] ACPI: Reserving SSDT table memory at [mem 0x33adf000-0x33ae2248]
[ 0.010658] ACPI: Reserving SSDT table memory at [mem 0x33add000-0x33ade6a5]
[ 0.010659] ACPI: Reserving NHLT table memory at [mem 0x33adc000-0x33adc02c]
[ 0.010660] ACPI: Reserving HPET table memory at [mem 0x33ada000-0x33ada037]
[ 0.010661] ACPI: Reserving APIC table memory at [mem 0x33ad9000-0x33ad91db]
[ 0.010662] ACPI: Reserving MCFG table memory at [mem 0x33ad8000-0x33ad803b]
[ 0.010663] ACPI: Reserving SSDT table memory at [mem 0x33a48000-0x33a4d4e3]
[ 0.010664] ACPI: Reserving WSMT table memory at [mem 0x33a47000-0x33a47027]
[ 0.010665] ACPI: Reserving SSDT table memory at [mem 0x33a45000-0x33a465fc]
[ 0.010666] ACPI: Reserving SSDT table memory at [mem 0x33a3b000-0x33a44572]
[ 0.010667] ACPI: Reserving DBGP table memory at [mem 0x33a3a000-0x33a3a033]
[ 0.010668] ACPI: Reserving DBG2 table memory at [mem 0x33a39000-0x33a39053]
[ 0.010669] ACPI: Reserving DMAR table memory at [mem 0x33afd000-0x33afd087]
[ 0.010670] ACPI: Reserving SSDT table memory at [mem 0x33a35000-0x33a37ee6]
[ 0.010671] ACPI: Reserving SSDT table memory at [mem 0x33a34000-0x33a34243]
[ 0.010672] ACPI: Reserving SSDT table memory at [mem 0x33a33000-0x33a3363f]
[ 0.010673] ACPI: Reserving UEFI table memory at [mem 0x3383b000-0x3383b639]
[ 0.010674] ACPI: Reserving UEFI table memory at [mem 0x3383a000-0x3383a05b]
[ 0.010676] ACPI: Reserving SSDT table memory at [mem 0x33a31000-0x33a32056]
[ 0.010677] ACPI: Reserving SSDT table memory at [mem 0x33a2d000-0x33a309d9]
[ 0.010678] ACPI: Reserving SSDT table memory at [mem 0x33a29000-0x33a2c9d9]
[ 0.010679] ACPI: Reserving SSDT table memory at [mem 0x33a28000-0x33a280f7]
[ 0.010680] ACPI: Reserving FPDT table memory at [mem 0x33a27000-0x33a27043]
[ 0.010681] ACPI: Reserving BGRT table memory at [mem 0x33a26000-0x33a26037]
[ 0.010682] ACPI: Reserving PHAT table memory at [mem 0x33a25000-0x33a2526c]
[ 0.010923] No NUMA configuration found
[ 0.010924] Faking a node at [mem 0x0000000000000000-0x00000018bf7fffff]
[ 0.010934] NODE_DATA(0) allocated [mem 0x18bf7d5000-0x18bf7fffff]
[ 0.011240] Zone ranges:
[ 0.011241] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.011243] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.011245] Normal [mem 0x0000000100000000-0x00000018bf7fffff]
[ 0.011247] Device empty
[ 0.011249] Movable zone start for each node
[ 0.011251] Early memory node ranges
[ 0.011251] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.011253] node 0: [mem 0x0000000000100000-0x000000002c228fff]
[ 0.011255] node 0: [mem 0x000000002cb29000-0x000000002e93efff]
[ 0.011256] node 0: [mem 0x0000000033aff000-0x0000000033afffff]
[ 0.011257] node 0: [mem 0x0000000100000000-0x00000018bf7fffff]
[ 0.011265] Initmem setup node 0 [mem 0x0000000000001000-0x00000018bf7fffff]
[ 0.011272] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.011297] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.012404] On node 0, zone DMA32: 2304 pages in unavailable ranges
[ 0.012586] On node 0, zone DMA32: 20928 pages in unavailable ranges
[ 0.142624] On node 0, zone Normal: 17664 pages in unavailable ranges
[ 0.142640] On node 0, zone Normal: 2048 pages in unavailable ranges
[ 0.142710] Reserving Intel graphics memory at [mem 0x3c800000-0x407fffff]
[ 0.143344] ACPI: PM-Timer IO Port: 0x1808
[ 0.143355] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.143357] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.143358] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.143358] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.143359] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.143360] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.143361] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.143362] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.143362] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[ 0.143363] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[ 0.143364] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[ 0.143365] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[ 0.143365] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[ 0.143366] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[ 0.143367] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[ 0.143368] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[ 0.143369] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[ 0.143369] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[ 0.143370] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[ 0.143371] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[ 0.143372] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[ 0.143372] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[ 0.143373] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[ 0.143374] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.143414] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.143417] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.143419] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.143423] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.143424] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.143432] e820: update [mem 0x265a8000-0x26662fff] usable ==> reserved
[ 0.143443] TSC deadline timer available
[ 0.143444] smpboot: Allowing 32 CPUs, 0 hotplug CPUs
[ 0.143458] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.143460] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[ 0.143461] PM: hibernation: Registered nosave memory: [mem 0x265a8000-0x26662fff]
[ 0.143463] PM: hibernation: Registered nosave memory: [mem 0x28a15000-0x28a15fff]
[ 0.143464] PM: hibernation: Registered nosave memory: [mem 0x2c229000-0x2cb28fff]
[ 0.143466] PM: hibernation: Registered nosave memory: [mem 0x2e93f000-0x309defff]
[ 0.143466] PM: hibernation: Registered nosave memory: [mem 0x309df000-0x3398efff]
[ 0.143467] PM: hibernation: Registered nosave memory: [mem 0x3398f000-0x33afefff]
[ 0.143468] PM: hibernation: Registered nosave memory: [mem 0x33b00000-0x383fffff]
[ 0.143469] PM: hibernation: Registered nosave memory: [mem 0x38400000-0x38dfffff]
[ 0.143470] PM: hibernation: Registered nosave memory: [mem 0x38e00000-0x407fffff]
[ 0.143471] PM: hibernation: Registered nosave memory: [mem 0x40800000-0xfed1ffff]
[ 0.143471] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
[ 0.143472] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xffffffff]
[ 0.143474] [mem 0x40800000-0xfed1ffff] available for PCI devices
[ 0.143475] Booting paravirtualized kernel on bare hardware
[ 0.143478] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.143488] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1
[ 0.145368] percpu: Embedded 86 pages/cpu s229376 r8192 d114688 u524288
[ 0.145374] pcpu-alloc: s229376 r8192 d114688 u524288 alloc=1*2097152
[ 0.145376] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07
[ 0.145382] pcpu-alloc: [0] 08 09 10 11 [0] 12 13 14 15
[ 0.145388] pcpu-alloc: [0] 16 17 18 19 [0] 20 21 22 23
[ 0.145393] pcpu-alloc: [0] 24 25 26 27 [0] 28 29 30 31
[ 0.145416] Kernel command line: BOOT_IMAGE=/@boot/vmlinuz-6.8.0-45-kfocus root=UUID=9c2a749a-d478-4e57-b7a7-f4d8c5de2902 ro rootflags=subvol=@ quiet cryptdevice=UUID=10f3ea80-0841-49c9-8f38-b720275ff4e1:luks-10f3ea80-0841-49c9-8f38-b720275ff4e1 root=/dev/mapper/luks-10f3ea80-0841-49c9-8f38-b720275ff4e1 splash thunderbolt.kf_force_redrive=1 modprobe.blacklist=nouveau modprobe.blacklist=ucsi_acpi tpm_tis.interrupts=0 intel_pstate=passive snd_hda_core.gpu_bind=0 pci=noaer loglevel=3 vt.handoff=7 thunderbolt.dyndbg=+p
[ 0.145644] Unknown kernel command line parameters "splash BOOT_IMAGE=/@boot/vmlinuz-6.8.0-45-kfocus cryptdevice=UUID=10f3ea80-0841-49c9-8f38-b720275ff4e1:luks-10f3ea80-0841-49c9-8f38-b720275ff4e1", will be passed to user space.
[ 0.150989] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear)
[ 0.153673] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[ 0.154061] Fallback order for Node 0: 0
[ 0.154066] Built 1 zonelists, mobility grouping on. Total pages: 24697823
[ 0.154068] Policy zone: Normal
[ 0.154073] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.154083] software IO TLB: area num 32.
[ 0.335466] Memory: 98288380K/100360056K available (22528K kernel code, 4442K rwdata, 13892K rodata, 4976K init, 4732K bss, 2071416K reserved, 0K cma-reserved)
[ 0.336882] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[ 0.336918] ftrace: allocating 57873 entries in 227 pages
[ 0.346163] ftrace: allocated 227 pages with 5 groups
[ 0.346934] Dynamic Preempt: voluntary
[ 0.347082] rcu: Preemptible hierarchical RCU implementation.
[ 0.347084] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=32.
[ 0.347085] Trampoline variant of Tasks RCU enabled.
[ 0.347086] Rude variant of Tasks RCU enabled.
[ 0.347086] Tracing variant of Tasks RCU enabled.
[ 0.347087] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[ 0.347088] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[ 0.349670] NR_IRQS: 524544, nr_irqs: 2312, preallocated irqs: 16
[ 0.350012] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.350279] Console: colour dummy device 80x25
[ 0.350282] printk: legacy console [tty0] enabled
[ 0.350338] ACPI: Core revision 20230628
[ 0.350785] hpet: HPET dysfunctional in PC10. Force disabled.
[ 0.350786] APIC: Switch to symmetric I/O mode setup
[ 0.350789] DMAR: Host address width 39
[ 0.350790] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[ 0.350799] DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
[ 0.350802] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.350807] DMAR: dmar1: reg_base_addr fed91000 ver 5:0 cap d2008c40660462 ecap f050da
[ 0.350809] DMAR: RMRR base: 0x0000003c000000 end: 0x000000407fffff
[ 0.350812] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
[ 0.350814] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.350815] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.352783] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.352785] x2apic enabled
[ 0.352855] APIC: Switched APIC routing to: cluster x2apic
[ 0.357883] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
[ 0.357890] Calibrating delay loop (skipped), value calculated using timer frequency.. 4838.40 BogoMIPS (lpj=2419200)
[ 0.357956] CPU0: Thermal monitoring enabled (TM1)
[ 0.357959] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[ 0.358109] process: using mwait in idle threads
[ 0.358113] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[ 0.358114] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[ 0.358117] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.358122] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[ 0.358123] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.358124] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[ 0.358126] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.358129] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.358130] Register File Data Sampling: Mitigation: Clear Register File
[ 0.358141] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.358142] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.358143] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.358144] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[ 0.358145] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[ 0.358146] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.358148] x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8
[ 0.358149] x86/fpu: xstate_offset[11]: 840, xstate_sizes[11]: 16
[ 0.358150] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[ 0.358888] Freeing SMP alternatives memory: 48K
[ 0.358888] pid_max: default: 32768 minimum: 301
[ 0.358888] LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,integrity
[ 0.358888] landlock: Up and running.
[ 0.358888] Yama: becoming mindful.
[ 0.358888] AppArmor: AppArmor initialized
[ 0.358888] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.358888] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.358888] smpboot: CPU0: Intel(R) Core(TM) i9-14900HX (family: 0x6, model: 0xb7, stepping: 0x1)
[ 0.358888] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
[ 0.358888] RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
[ 0.358888] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
[ 0.358888] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline, AnyThread deprecated, Alderlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.358888] core: cpu_core PMU driver:
[ 0.358888] ... version: 5
[ 0.358888] ... bit width: 48
[ 0.358888] ... generic registers: 8
[ 0.358888] ... value mask: 0000ffffffffffff
[ 0.358888] ... max period: 00007fffffffffff
[ 0.358888] ... fixed-purpose events: 4
[ 0.358888] ... event mask: 0001000f000000ff
[ 0.358888] signal: max sigframe size: 3632
[ 0.358888] Estimated ratio of average max frequency by base frequency (times 1024): 2218
[ 0.358888] rcu: Hierarchical SRCU implementation.
[ 0.358888] rcu: Max phase no-delay instances is 400.
[ 0.360315] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.360599] smp: Bringing up secondary CPUs ...
[ 0.360705] smpboot: x86: Booting SMP configuration:
[ 0.360706] .... node #0, CPUs: #2 #4 #6 #8 #10 #12 #14 #16 #17 #18 #19 #20 #21 #22 #23 #24 #25 #26 #27 #28 #29 #30 #31
[ 0.008697] core: cpu_atom PMU driver: PEBS-via-PT
[ 0.008697] ... version: 5
[ 0.008697] ... bit width: 48
[ 0.008697] ... generic registers: 6
[ 0.008697] ... value mask: 0000ffffffffffff
[ 0.008697] ... max period: 00007fffffffffff
[ 0.008697] ... fixed-purpose events: 3
[ 0.008697] ... event mask: 000000070000003f
[ 0.374963] #1 #3 #5 #7 #9 #11 #13 #15
[ 0.383962] smp: Brought up 1 node, 32 CPUs
[ 0.383962] smpboot: Max logical packages: 1
[ 0.383962] smpboot: Total of 32 processors activated (154828.80 BogoMIPS)
[ 0.388010] devtmpfs: initialized
[ 0.388010] x86/mm: Memory block size: 2048MB
[ 0.389633] ACPI: PM: Registering ACPI NVS region [mem 0x309df000-0x3398efff] (50003968 bytes)
[ 0.390248] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.390303] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[ 0.390427] pinctrl core: initialized pinctrl subsystem
[ 0.390678] PM: RTC time: 19:50:08, date: 2024-10-11
[ 0.391253] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.391832] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[ 0.392258] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.392631] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.392642] audit: initializing netlink subsys (disabled)
[ 0.392653] audit: type=2000 audit(1728676208.034:1): state=initialized audit_enabled=0 res=1
[ 0.392653] thermal_sys: Registered thermal governor 'fair_share'
[ 0.392653] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.392653] thermal_sys: Registered thermal governor 'step_wise'
[ 0.392653] thermal_sys: Registered thermal governor 'user_space'
[ 0.392653] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.392653] EISA bus registered
[ 0.392653] cpuidle: using governor ladder
[ 0.392897] cpuidle: using governor menu
[ 0.392922] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.393085] PCI: ECAM [mem 0xc0000000-0xce0fffff] (base 0xc0000000) for domain 0000 [bus 00-e0]
[ 0.393102] PCI: Using configuration type 1 for base access
[ 0.393304] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.393894] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.393894] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.393894] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.393894] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.394057] ACPI: Added _OSI(Module Device)
[ 0.394059] ACPI: Added _OSI(Processor Device)
[ 0.394060] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.394062] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.530820] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.MHBR], AE_NOT_FOUND (20230628/psargs-330)
[ 0.530840] ACPI: Ignoring error and continuing table load
[ 0.530863] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PTID.PBAR], AE_NOT_FOUND (20230628/dsfield-500)
[ 0.538580] ACPI: 18 ACPI AML tables successfully acquired and loaded
[ 0.557546] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
[ 0.557549] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
[ 0.559359] ACPI: Dynamic OEM Table Load:
[ 0.559373] ACPI: SSDT 0xFFFF8BCC0261B800 000394 (v02 PmRef Cpu0Cst 00003001 INTL 20200717)
[ 0.561203] ACPI: Dynamic OEM Table Load:
[ 0.561211] ACPI: SSDT 0xFFFF8BCC02620000 00053F (v02 PmRef Cpu0Ist 00003000 INTL 20200717)
[ 0.563060] ACPI: Dynamic OEM Table Load:
[ 0.563067] ACPI: SSDT 0xFFFF8BCC03F38C00 0001AB (v02 PmRef Cpu0Psd 00003000 INTL 20200717)
[ 0.564799] ACPI: Dynamic OEM Table Load:
[ 0.564805] ACPI: SSDT 0xFFFF8BCC02622800 0004B5 (v02 PmRef Cpu0Hwp 00003000 INTL 20200717)
[ 0.567127] ACPI: Dynamic OEM Table Load:
[ 0.567137] ACPI: SSDT 0xFFFF8BCC0262A000 001BAF (v02 PmRef ApIst 00003000 INTL 20200717)
[ 0.569876] ACPI: Dynamic OEM Table Load:
[ 0.569884] ACPI: SSDT 0xFFFF8BCC0262E000 001038 (v02 PmRef ApHwp 00003000 INTL 20200717)
[ 0.572336] ACPI: Dynamic OEM Table Load:
[ 0.572345] ACPI: SSDT 0xFFFF8BCC02628000 001349 (v02 PmRef ApPsd 00003000 INTL 20200717)
[ 0.574824] ACPI: Dynamic OEM Table Load:
[ 0.574832] ACPI: SSDT 0xFFFF8BCC02631000 000FBB (v02 PmRef ApCst 00003000 INTL 20200717)
[ 0.593388] ACPI: _OSC evaluated successfully for all CPUs
[ 0.593466] ACPI: EC: EC started
[ 0.593467] ACPI: EC: interrupt blocked
[ 0.617683] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.617686] ACPI: \_SB_.PC00.LPCB.EC__: Boot DSDT EC used to handle transactions
[ 0.617688] ACPI: Interpreter enabled
[ 0.617772] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.617773] ACPI: Using IOAPIC for interrupt routing
[ 0.620186] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.620188] PCI: Ignoring E820 reservations for host bridge windows
[ 0.621956] ACPI: Enabled 11 GPEs in block 00 to 7F
[ 0.624272] ACPI: \_SB_.PC00.PEG2.PG00: New power resource
[ 0.651942] ACPI: \_SB_.PC00.XHCI.RHUB.HS14.BTRT: New power resource
[ 0.651967] ACPI: \_SB_.PC00.XHCI.RHUB.HS14.DBTR: New power resource
[ 0.661854] ACPI: \_SB_.PC00.CNVW.WRST: New power resource
[ 0.667319] ACPI: \_SB_.PC00.RP09.PXP_: New power resource
[ 0.692956] ACPI: \PIN_: New power resource
[ 0.693385] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
[ 0.693392] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.697231] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR DPC]
[ 0.703086] PCI host bridge to bus 0000:00
[ 0.703089] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.703091] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.703093] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.703095] pci_bus 0000:00: root bus resource [mem 0x40800000-0xbfffffff window]
[ 0.703096] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[ 0.703099] pci_bus 0000:00: root bus resource [bus 00-e0]
[ 0.703136] pci 0000:00:00.0: [8086:a702] type 00 class 0x060000 conventional PCI endpoint
[ 0.703275] pci 0000:00:01.0: [8086:a70d] type 01 class 0x060400 PCIe Root Port
[ 0.703292] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.703352] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.703377] pci 0000:00:01.0: PTM enabled (root), 4ns granularity
[ 0.704153] pci 0000:00:01.1: [8086:a72d] type 01 class 0x060400 PCIe Root Port
[ 0.704170] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 0.704173] pci 0000:00:01.1: bridge window [io 0x3000-0x3fff]
[ 0.704176] pci 0000:00:01.1: bridge window [mem 0x4e000000-0x4f0fffff]
[ 0.704182] pci 0000:00:01.1: bridge window [mem 0x6000000000-0x6401ffffff 64bit pref]
[ 0.704233] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[ 0.704258] pci 0000:00:01.1: PTM enabled (root), 4ns granularity
[ 0.704997] pci 0000:00:02.0: [8086:a788] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
[ 0.705007] pci 0000:00:02.0: BAR 0 [mem 0x6404000000-0x6404ffffff 64bit]
[ 0.705014] pci 0000:00:02.0: BAR 2 [mem 0x4000000000-0x400fffffff 64bit pref]
[ 0.705018] pci 0000:00:02.0: BAR 4 [io 0x4000-0x403f]
[ 0.705036] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
[ 0.705039] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.705068] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x00ffffff 64bit]
[ 0.705070] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x06ffffff 64bit]: contains BAR 0 for 7 VFs
[ 0.705076] pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0x1fffffff 64bit pref]
[ 0.705077] pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0xdfffffff 64bit pref]: contains BAR 2 for 7 VFs
[ 0.705262] pci 0000:00:04.0: [8086:a71d] type 00 class 0x118000 conventional PCI endpoint
[ 0.705279] pci 0000:00:04.0: BAR 0 [mem 0x6405200000-0x640521ffff 64bit]
[ 0.705619] pci 0000:00:06.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 0.706391] pci 0000:00:08.0: [8086:a74f] type 00 class 0x088000 conventional PCI endpoint
[ 0.706402] pci 0000:00:08.0: BAR 0 [mem 0x6405241000-0x6405241fff 64bit]
[ 0.706518] pci 0000:00:0a.0: [8086:a77d] type 00 class 0x118000 PCIe Root Complex Integrated Endpoint
[ 0.706527] pci 0000:00:0a.0: BAR 0 [mem 0x6405220000-0x6405227fff 64bit]
[ 0.706546] pci 0000:00:0a.0: enabling Extended Tags
[ 0.706655] pci 0000:00:0e.0: [8086:a77f] type 00 class 0x010400 PCIe Root Complex Integrated Endpoint
[ 0.706670] pci 0000:00:0e.0: BAR 0 [mem 0x6402000000-0x6403ffffff 64bit]
[ 0.706678] pci 0000:00:0e.0: BAR 2 [mem 0x4c000000-0x4dffffff]
[ 0.706693] pci 0000:00:0e.0: BAR 4 [mem 0x6405100000-0x64051fffff 64bit]
[ 0.707011] pci 0000:00:14.0: [8086:7a60] type 00 class 0x0c0330 conventional PCI endpoint
[ 0.707032] pci 0000:00:14.0: BAR 0 [mem 0x4f380000-0x4f38ffff 64bit]
[ 0.707116] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.707697] pci 0000:00:14.2: [8086:7a27] type 00 class 0x050000 conventional PCI endpoint
[ 0.707722] pci 0000:00:14.2: BAR 0 [mem 0x6405238000-0x640523bfff 64bit]
[ 0.707738] pci 0000:00:14.2: BAR 2 [mem 0x6405240000-0x6405240fff 64bit]
[ 0.707896] pci 0000:00:14.3: [8086:7a70] type 00 class 0x028000 PCIe Root Complex Integrated Endpoint
[ 0.707941] pci 0000:00:14.3: BAR 0 [mem 0x6405234000-0x6405237fff 64bit]
[ 0.708110] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
[ 0.708536] pci 0000:00:15.0: [8086:7a4c] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.708606] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.709171] pci 0000:00:15.1: [8086:7a4d] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.709242] pci 0000:00:15.1: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.709703] pci 0000:00:16.0: [8086:7a68] type 00 class 0x078000 conventional PCI endpoint
[ 0.709726] pci 0000:00:16.0: BAR 0 [mem 0x640523d000-0x640523dfff 64bit]
[ 0.709811] pci 0000:00:16.0: PME# supported from D3hot
[ 0.710379] pci 0000:00:1c.0: [8086:7a3e] type 01 class 0x060400 PCIe Root Port
[ 0.710411] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.710418] pci 0000:00:1c.0: bridge window [mem 0x4f100000-0x4f2fffff]
[ 0.710513] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.710554] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
[ 0.711395] pci 0000:00:1d.0: [8086:7a30] type 01 class 0x060400 PCIe Root Port
[ 0.711426] pci 0000:00:1d.0: PCI bridge to [bus 04-54]
[ 0.711433] pci 0000:00:1d.0: bridge window [mem 0x44000000-0x4bffffff]
[ 0.711443] pci 0000:00:1d.0: bridge window [mem 0x6410000000-0x74100fffff 64bit pref]
[ 0.711584] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.712465] pci 0000:00:1f.0: [8086:7a0c] type 00 class 0x060100 conventional PCI endpoint
[ 0.712893] pci 0000:00:1f.3: [8086:7a50] type 00 class 0x040300 conventional PCI endpoint
[ 0.712937] pci 0000:00:1f.3: BAR 0 [mem 0x6405230000-0x6405233fff 64bit]
[ 0.712992] pci 0000:00:1f.3: BAR 4 [mem 0x6405000000-0x64050fffff 64bit]
[ 0.713100] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.713206] pci 0000:00:1f.4: [8086:7a23] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.713232] pci 0000:00:1f.4: BAR 0 [mem 0x640523c000-0x640523c0ff 64bit]
[ 0.713263] pci 0000:00:1f.4: BAR 4 [io 0xefa0-0xefbf]
[ 0.713571] pci 0000:00:1f.5: [8086:7a24] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.713592] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[ 0.713742] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.713790] acpiphp: Slot [1] registered
[ 0.713807] pci 0000:02:00.0: [10de:2757] type 00 class 0x030000 PCIe Legacy Endpoint
[ 0.713816] pci 0000:02:00.0: BAR 0 [mem 0x4e000000-0x4effffff]
[ 0.713823] pci 0000:02:00.0: BAR 1 [mem 0x6000000000-0x63ffffffff 64bit pref]
[ 0.713831] pci 0000:02:00.0: BAR 3 [mem 0x6400000000-0x6401ffffff 64bit pref]
[ 0.713835] pci 0000:02:00.0: BAR 5 [io 0x3000-0x307f]
[ 0.713840] pci 0000:02:00.0: ROM [mem 0xfff80000-0xffffffff pref]
[ 0.713893] pci 0000:02:00.0: PME# supported from D0 D3hot
[ 0.713960] pci 0000:02:00.0: 126.024 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x8 link at 0000:00:01.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.714224] pci 0000:02:00.1: [10de:22bb] type 00 class 0x040300 PCIe Endpoint
[ 0.714234] pci 0000:02:00.1: BAR 0 [mem 0x4f000000-0x4f003fff]
[ 0.714350] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 0.714492] pci 0000:03:00.0: [8086:3102] type 00 class 0x020000 PCIe Endpoint
[ 0.714517] pci 0000:03:00.0: BAR 0 [mem 0x4f100000-0x4f1fffff]
[ 0.714555] pci 0000:03:00.0: BAR 3 [mem 0x4f200000-0x4f203fff]
[ 0.714714] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[ 0.714976] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.715081] pci 0000:04:00.0: [8086:5780] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.715122] pci 0000:04:00.0: PCI bridge to [bus 05-54]
[ 0.715133] pci 0000:04:00.0: bridge window [mem 0x44000000-0x4befffff]
[ 0.715147] pci 0000:04:00.0: bridge window [mem 0x6410000000-0x74100fffff 64bit pref]
[ 0.715164] pci 0000:04:00.0: enabling Extended Tags
[ 0.715301] pci 0000:04:00.0: supports D1 D2
[ 0.715302] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.715687] pci 0000:00:1d.0: PCI bridge to [bus 04-54]
[ 0.715810] pci 0000:05:00.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.715851] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.715875] pci 0000:05:00.0: bridge window [mem 0x7410000000-0x74100fffff 64bit pref]
[ 0.715892] pci 0000:05:00.0: enabling Extended Tags
[ 0.716021] pci 0000:05:00.0: supports D1 D2
[ 0.716022] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.716301] pci 0000:05:01.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.716342] pci 0000:05:01.0: PCI bridge to [bus 07-2c]
[ 0.716353] pci 0000:05:01.0: bridge window [mem 0x48000000-0x4befffff]
[ 0.716384] pci 0000:05:01.0: enabling Extended Tags
[ 0.716521] pci 0000:05:01.0: supports D1 D2
[ 0.716522] pci 0000:05:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.716797] pci 0000:05:02.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.716838] pci 0000:05:02.0: PCI bridge to [bus 2d]
[ 0.716849] pci 0000:05:02.0: bridge window [mem 0x47f00000-0x47ffffff]
[ 0.716879] pci 0000:05:02.0: enabling Extended Tags
[ 0.717007] pci 0000:05:02.0: supports D1 D2
[ 0.717008] pci 0000:05:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.717283] pci 0000:05:03.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.717324] pci 0000:05:03.0: PCI bridge to [bus 2e-54]
[ 0.717335] pci 0000:05:03.0: bridge window [mem 0x44000000-0x47efffff]
[ 0.717366] pci 0000:05:03.0: enabling Extended Tags
[ 0.717502] pci 0000:05:03.0: supports D1 D2
[ 0.717504] pci 0000:05:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.717787] pci 0000:04:00.0: PCI bridge to [bus 05-54]
[ 0.717894] pci 0000:06:00.0: [8086:5781] type 00 class 0x0c0340 PCIe Endpoint
[ 0.717921] pci 0000:06:00.0: BAR 0 [mem 0x7410000000-0x741003ffff 64bit pref]
[ 0.717939] pci 0000:06:00.0: BAR 2 [mem 0x7410040000-0x7410040fff 64bit pref]
[ 0.717981] pci 0000:06:00.0: enabling Extended Tags
[ 0.718096] pci 0000:06:00.0: supports D1 D2
[ 0.718098] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.718332] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.718404] pci 0000:05:01.0: PCI bridge to [bus 07-2c]
[ 0.718512] pci 0000:2d:00.0: [8086:5782] type 00 class 0x0c0330 PCIe Endpoint
[ 0.718535] pci 0000:2d:00.0: BAR 0 [mem 0x47f00000-0x47f0ffff 64bit]
[ 0.718584] pci 0000:2d:00.0: enabling Extended Tags
[ 0.718668] pci 0000:2d:00.0: PME# supported from D3hot D3cold
[ 0.718707] pci 0000:2d:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x4 link at 0000:05:02.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[ 0.718819] pci 0000:05:02.0: PCI bridge to [bus 2d]
[ 0.718890] pci 0000:05:03.0: PCI bridge to [bus 2e-54]
[ 0.743346] ACPI: EC: interrupt unblocked
[ 0.743348] ACPI: EC: event unblocked
[ 0.743888] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.743888] ACPI: EC: GPE=0x6e
[ 0.743888] ACPI: \_SB_.PC00.LPCB.EC__: Boot DSDT EC initialization complete
[ 0.743888] ACPI: \_SB_.PC00.LPCB.EC__: EC: Used to handle transactions and events
[ 0.743919] iommu: Default domain type: Translated
[ 0.743919] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.744086] SCSI subsystem initialized
[ 0.744105] libata version 3.00 loaded.
[ 0.744105] ACPI: bus type USB registered
[ 0.744105] usbcore: registered new interface driver usbfs
[ 0.744105] usbcore: registered new interface driver hub
[ 0.744105] usbcore: registered new device driver usb
[ 0.744105] pps_core: LinuxPPS API ver. 1 registered
[ 0.744105] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.744105] PTP clock support registered
[ 0.744105] EDAC MC: Ver: 3.0.0
[ 0.744891] efivars: Registered efivars operations
[ 0.745200] NetLabel: Initializing
[ 0.745201] NetLabel: domain hash size = 128
[ 0.745203] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.745234] NetLabel: unlabeled traffic allowed by default
[ 0.745254] mctp: management component transport protocol core
[ 0.745254] NET: Registered PF_MCTP protocol family
[ 0.745254] PCI: Using ACPI for IRQ routing
[ 0.761546] PCI: pci_cache_line_size set to 64 bytes
[ 0.761704] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
[ 0.761854] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 0.761858] e820: reserve RAM buffer [mem 0x265a8000-0x27ffffff]
[ 0.761859] e820: reserve RAM buffer [mem 0x28a15000-0x2bffffff]
[ 0.761861] e820: reserve RAM buffer [mem 0x2c229000-0x2fffffff]
[ 0.761863] e820: reserve RAM buffer [mem 0x2e93f000-0x2fffffff]
[ 0.761864] e820: reserve RAM buffer [mem 0x33b00000-0x33ffffff]
[ 0.761865] e820: reserve RAM buffer [mem 0x18bf800000-0x18bfffffff]
[ 0.761917] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.761917] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.761917] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.761917] pci 0000:02:00.0: vgaarb: bridge control possible
[ 0.761917] pci 0000:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.761917] vgaarb: loaded
[ 0.762091] clocksource: Switched to clocksource tsc-early
[ 0.762417] VFS: Disk quotas dquot_6.6.0
[ 0.762437] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.762576] AppArmor: AppArmor Filesystem Enabled
[ 0.762614] pnp: PnP ACPI init
[ 0.762894] pnp 00:00: disabling [io 0x3322-0x3323] because it overlaps 0000:00:01.1 BAR 13 [io 0x3000-0x3fff]
[ 0.763096] system 00:02: [io 0x1854-0x1857] has been reserved
[ 0.780484] pnp 00:05: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
[ 0.780514] system 00:05: [mem 0xfedc0000-0xfedc7fff] has been reserved
[ 0.780516] system 00:05: [mem 0xfeda0000-0xfeda0fff] has been reserved
[ 0.780518] system 00:05: [mem 0xfeda1000-0xfeda1fff] has been reserved
[ 0.780520] system 00:05: [mem 0xfed20000-0xfed7ffff] could not be reserved
[ 0.780521] system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 0.780523] system 00:05: [mem 0xfed45000-0xfed8ffff] could not be reserved
[ 0.780524] system 00:05: [mem 0xfee00000-0xfeefffff] has been reserved
[ 0.780925] system 00:06: [io 0x2000-0x20fe] has been reserved
[ 0.782169] pnp: PnP ACPI: found 8 devices
[ 0.788194] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.788286] NET: Registered PF_INET protocol family
[ 0.788519] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.804667] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[ 0.804746] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.805093] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.805591] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.805738] TCP: Hash tables configured (established 524288 bind 65536)
[ 0.805973] MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, linear)
[ 0.806218] UDP hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.806507] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.806677] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.806684] NET: Registered PF_XDP protocol family
[ 0.806688] pci 0000:02:00.0: ROM [mem 0xfff80000-0xffffffff pref]: can't claim; no compatible bridge window
[ 0.806695] pci_bus 0000:00: max bus depth: 3 pci_try_num: 4
[ 0.806709] pci 0000:00:02.0: VF BAR 2 [mem 0x4020000000-0x40ffffffff 64bit pref]: assigned
[ 0.806712] pci 0000:00:02.0: VF BAR 0 [mem 0x4010000000-0x4016ffffff 64bit]: assigned
[ 0.806715] pci 0000:00:15.0: BAR 0 [mem 0x4017000000-0x4017000fff 64bit]: assigned
[ 0.806773] pci 0000:00:15.1: BAR 0 [mem 0x4017001000-0x4017001fff 64bit]: assigned
[ 0.806791] pci 0000:00:1d.0: bridge window [io 0x5000-0x7fff]: assigned
[ 0.806793] pci 0000:00:1f.5: BAR 0 [mem 0x40800000-0x40800fff]: assigned
[ 0.806805] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.806813] pci 0000:02:00.0: ROM [mem 0x4f080000-0x4f0fffff pref]: assigned
[ 0.806814] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 0.806816] pci 0000:00:01.1: bridge window [io 0x3000-0x3fff]
[ 0.806819] pci 0000:00:01.1: bridge window [mem 0x4e000000-0x4f0fffff]
[ 0.806821] pci 0000:00:01.1: bridge window [mem 0x6000000000-0x6401ffffff 64bit pref]
[ 0.806826] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.806837] pci 0000:00:1c.0: bridge window [mem 0x4f100000-0x4f2fffff]
[ 0.806845] pci 0000:04:00.0: bridge window [io 0x5000-0x6fff]: assigned
[ 0.806847] pci 0000:05:01.0: bridge window [mem 0x6410000000-0x64101fffff 64bit pref]: assigned
[ 0.806849] pci 0000:05:03.0: bridge window [mem 0x6410200000-0x64103fffff 64bit pref]: assigned
[ 0.806850] pci 0000:05:01.0: bridge window [io 0x5000-0x5fff]: assigned
[ 0.806852] pci 0000:05:03.0: bridge window [io 0x6000-0x6fff]: assigned
[ 0.806853] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.806877] pci 0000:05:00.0: bridge window [mem 0x7410000000-0x74100fffff 64bit pref]
[ 0.806884] pci 0000:05:01.0: PCI bridge to [bus 07-2c]
[ 0.806887] pci 0000:05:01.0: bridge window [io 0x5000-0x5fff]
[ 0.806893] pci 0000:05:01.0: bridge window [mem 0x48000000-0x4befffff]
[ 0.806897] pci 0000:05:01.0: bridge window [mem 0x6410000000-0x64101fffff 64bit pref]
[ 0.806904] pci 0000:05:02.0: PCI bridge to [bus 2d]
[ 0.806910] pci 0000:05:02.0: bridge window [mem 0x47f00000-0x47ffffff]
[ 0.806920] pci 0000:05:03.0: PCI bridge to [bus 2e-54]
[ 0.806922] pci 0000:05:03.0: bridge window [io 0x6000-0x6fff]
[ 0.806928] pci 0000:05:03.0: bridge window [mem 0x44000000-0x47efffff]
[ 0.806932] pci 0000:05:03.0: bridge window [mem 0x6410200000-0x64103fffff 64bit pref]
[ 0.806939] pci 0000:04:00.0: PCI bridge to [bus 05-54]
[ 0.806941] pci 0000:04:00.0: bridge window [io 0x5000-0x6fff]
[ 0.806947] pci 0000:04:00.0: bridge window [mem 0x44000000-0x4befffff]
[ 0.806951] pci 0000:04:00.0: bridge window [mem 0x6410000000-0x74100fffff 64bit pref]
[ 0.806958] pci 0000:00:1d.0: PCI bridge to [bus 04-54]
[ 0.806960] pci 0000:00:1d.0: bridge window [io 0x5000-0x7fff]
[ 0.806964] pci 0000:00:1d.0: bridge window [mem 0x44000000-0x4bffffff]
[ 0.806967] pci 0000:00:1d.0: bridge window [mem 0x6410000000-0x74100fffff 64bit pref]
[ 0.806973] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.806975] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.806976] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.806977] pci_bus 0000:00: resource 7 [mem 0x40800000-0xbfffffff window]
[ 0.806979] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
[ 0.806980] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
[ 0.806981] pci_bus 0000:02: resource 1 [mem 0x4e000000-0x4f0fffff]
[ 0.806982] pci_bus 0000:02: resource 2 [mem 0x6000000000-0x6401ffffff 64bit pref]
[ 0.806984] pci_bus 0000:03: resource 1 [mem 0x4f100000-0x4f2fffff]
[ 0.806985] pci_bus 0000:04: resource 0 [io 0x5000-0x7fff]
[ 0.806986] pci_bus 0000:04: resource 1 [mem 0x44000000-0x4bffffff]
[ 0.806987] pci_bus 0000:04: resource 2 [mem 0x6410000000-0x74100fffff 64bit pref]
[ 0.806988] pci_bus 0000:05: resource 0 [io 0x5000-0x6fff]
[ 0.806989] pci_bus 0000:05: resource 1 [mem 0x44000000-0x4befffff]
[ 0.806990] pci_bus 0000:05: resource 2 [mem 0x6410000000-0x74100fffff 64bit pref]
[ 0.806992] pci_bus 0000:06: resource 2 [mem 0x7410000000-0x74100fffff 64bit pref]
[ 0.806993] pci_bus 0000:07: resource 0 [io 0x5000-0x5fff]
[ 0.806994] pci_bus 0000:07: resource 1 [mem 0x48000000-0x4befffff]
[ 0.806995] pci_bus 0000:07: resource 2 [mem 0x6410000000-0x64101fffff 64bit pref]
[ 0.806996] pci_bus 0000:2d: resource 1 [mem 0x47f00000-0x47ffffff]
[ 0.806997] pci_bus 0000:2e: resource 0 [io 0x6000-0x6fff]
[ 0.806998] pci_bus 0000:2e: resource 1 [mem 0x44000000-0x47efffff]
[ 0.806999] pci_bus 0000:2e: resource 2 [mem 0x6410200000-0x64103fffff 64bit pref]
[ 0.809214] pci 0000:02:00.1: extending delay after power-on from D3hot to 20 msec
[ 0.809240] pci 0000:02:00.1: D0 power state depends on 0000:02:00.0
[ 0.809619] pci 0000:2d:00.0: enabling device (0000 -> 0002)
[ 0.809653] PCI: CLS 64 bytes, default 64
[ 0.809694] DMAR: No ATSR found
[ 0.809695] DMAR: No SATC found
[ 0.809696] DMAR: IOMMU feature fl1gp_support inconsistent
[ 0.809701] DMAR: IOMMU feature pgsel_inv inconsistent
[ 0.809702] DMAR: IOMMU feature nwfs inconsistent
[ 0.809703] DMAR: IOMMU feature dit inconsistent
[ 0.809703] DMAR: IOMMU feature sc_support inconsistent
[ 0.809704] DMAR: IOMMU feature dev_iotlb_support inconsistent
[ 0.809705] DMAR: dmar0: Using Queued invalidation
[ 0.809708] DMAR: dmar1: Using Queued invalidation
[ 0.809753] Trying to unpack rootfs image as initramfs...
[ 0.810064] pci 0000:00:02.0: Adding to iommu group 0
[ 0.810503] pci 0000:00:00.0: Adding to iommu group 1
[ 0.810516] pci 0000:00:01.0: Adding to iommu group 2
[ 0.810526] pci 0000:00:01.1: Adding to iommu group 3
[ 0.810535] pci 0000:00:04.0: Adding to iommu group 4
[ 0.810549] pci 0000:00:06.0: Adding to iommu group 5
[ 0.810558] pci 0000:00:08.0: Adding to iommu group 6
[ 0.810567] pci 0000:00:0a.0: Adding to iommu group 7
[ 0.810576] pci 0000:00:0e.0: Adding to iommu group 8
[ 0.810595] pci 0000:00:14.0: Adding to iommu group 9
[ 0.810604] pci 0000:00:14.2: Adding to iommu group 9
[ 0.810613] pci 0000:00:14.3: Adding to iommu group 10
[ 0.810631] pci 0000:00:15.0: Adding to iommu group 11
[ 0.810641] pci 0000:00:15.1: Adding to iommu group 11
[ 0.810656] pci 0000:00:16.0: Adding to iommu group 12
[ 0.810674] pci 0000:00:1c.0: Adding to iommu group 13
[ 0.810703] pci 0000:00:1d.0: Adding to iommu group 14
[ 0.810731] pci 0000:00:1f.0: Adding to iommu group 15
[ 0.810741] pci 0000:00:1f.3: Adding to iommu group 15
[ 0.810752] pci 0000:00:1f.4: Adding to iommu group 15
[ 0.810762] pci 0000:00:1f.5: Adding to iommu group 15
[ 0.810781] pci 0000:02:00.0: Adding to iommu group 16
[ 0.810793] pci 0000:02:00.1: Adding to iommu group 16
[ 0.810810] pci 0000:03:00.0: Adding to iommu group 17
[ 0.810837] pci 0000:04:00.0: Adding to iommu group 18
[ 0.810864] pci 0000:05:00.0: Adding to iommu group 19
[ 0.810892] pci 0000:05:01.0: Adding to iommu group 20
[ 0.810918] pci 0000:05:02.0: Adding to iommu group 21
[ 0.810946] pci 0000:05:03.0: Adding to iommu group 22
[ 0.810976] pci 0000:06:00.0: Adding to iommu group 23
[ 0.811006] pci 0000:2d:00.0: Adding to iommu group 24
[ 0.814330] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 0.814332] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.814333] software IO TLB: mapped [mem 0x00000000210ee000-0x00000000250ee000] (64MB)
[ 0.822372] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
[ 0.822435] clocksource: Switched to clocksource tsc
[ 0.824879] Initialise system trusted keyrings
[ 0.824891] Key type blacklist registered
[ 0.824947] workingset: timestamp_bits=36 max_order=25 bucket_order=0
[ 0.824954] zbud: loaded
[ 0.825236] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.825351] fuse: init (API version 7.39)
[ 0.825513] integrity: Platform Keyring initialized
[ 0.825518] integrity: Machine keyring initialized
[ 0.835839] Key type asymmetric registered
[ 0.835841] Asymmetric key parser 'x509' registered
[ 0.835858] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[ 0.835931] io scheduler mq-deadline registered
[ 0.836607] pcieport 0000:00:01.0: PME: Signaling with IRQ 122
[ 0.836855] pcieport 0000:00:01.1: PME: Signaling with IRQ 123
[ 0.837122] pcieport 0000:00:1c.0: PME: Signaling with IRQ 124
[ 0.837284] pcieport 0000:00:1d.0: PME: Signaling with IRQ 125
[ 0.837315] pcieport 0000:00:1d.0: pciehp: Slot #8 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.838200] pcieport 0000:05:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.838796] pcieport 0000:05:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.839018] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.839322] Monitor-Mwait will be used to enter C-1 state
[ 0.839334] Monitor-Mwait will be used to enter C-2 state
[ 0.839345] Monitor-Mwait will be used to enter C-3 state
[ 0.839350] ACPI: \_SB_.PR00: Found 3 idle states
[ 0.845989] ACPI: AC: AC Adapter [AC] (on-line)
[ 0.846056] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 0.846280] ACPI: button: Power Button [PWRB]
[ 0.846304] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[ 0.846573] ACPI: button: Sleep Button [SLPB]
[ 0.846595] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
[ 0.846877] ACPI: button: Lid Switch [LID0]
[ 0.846900] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[ 0.847165] ACPI: button: Power Button [PWRF]
[ 0.951734] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.951737] ACPI: thermal: Thermal Zone [TZ0] (25 C)
[ 0.951954] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.953006] ACPI: battery: Slot [BAT0] (battery present)
[ 0.953596] hpet_acpi_add: no address or irqs in _CRS
[ 0.953629] Linux agpgart interface v0.103
[ 0.955585] tpm_tis IFX1523:00: 2.0 TPM (device-id 0x1D, rev-id 54)
[ 0.976989] loop: module loaded
[ 0.977480] ACPI: bus type drm_connector registered
[ 0.977741] tun: Universal TUN/TAP device driver, 1.6
[ 0.977772] PPP generic driver version 2.4.2
[ 0.977879] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 0.981827] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.981832] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.981893] mousedev: PS/2 mouse device common for all mice
[ 0.982011] rtc_cmos 00:01: RTC can wake from S4
[ 0.982814] rtc_cmos 00:01: registered as rtc0
[ 0.982993] rtc_cmos 00:01: setting system clock to 2024-10-11T19:50:09 UTC (1728676209)
[ 0.983025] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
[ 0.983032] i2c_dev: i2c /dev entries driver
[ 0.985419] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 0.985430] device-mapper: uevent: version 1.0.3
[ 0.985482] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
[ 0.985497] platform eisa.0: Probing EISA bus 0
[ 0.985503] platform eisa.0: EISA: Cannot allocate resource for mainboard
[ 0.985505] platform eisa.0: Cannot allocate resource for EISA slot 1
[ 0.985506] platform eisa.0: Cannot allocate resource for EISA slot 2
[ 0.985507] platform eisa.0: Cannot allocate resource for EISA slot 3
[ 0.985508] platform eisa.0: Cannot allocate resource for EISA slot 4
[ 0.985509] platform eisa.0: Cannot allocate resource for EISA slot 5
[ 0.985510] platform eisa.0: Cannot allocate resource for EISA slot 6
[ 0.985511] platform eisa.0: Cannot allocate resource for EISA slot 7
[ 0.985512] platform eisa.0: Cannot allocate resource for EISA slot 8
[ 0.985513] platform eisa.0: EISA: Detected 0 cards
[ 0.985516] intel_pstate: Intel P-state driver initializing
[ 0.986354] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[ 0.991485] intel_pstate: HWP enabled
[ 0.992799] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.992953] [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
[ 0.994411] fbcon: Deferring console take-over
[ 0.994413] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[ 0.994510] drop_monitor: Initializing network drop monitor service
[ 0.994629] NET: Registered PF_INET6 protocol family
[ 1.057342] Freeing initrd memory: 160092K
[ 1.064809] Segment Routing with IPv6
[ 1.064839] In-situ OAM (IOAM) with IPv6
[ 1.064895] NET: Registered PF_PACKET protocol family
[ 1.065113] Key type dns_resolver registered
[ 1.070356] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 1.072456] microcode: Current revision: 0x00000129
[ 1.074596] IPI shorthand broadcast: enabled
[ 1.076637] sched_clock: Marking stable (1068000801, 7697376)->(1150013944, -74315767)
[ 1.077279] registered taskstats version 1
[ 1.081372] Loading compiled-in X.509 certificates
[ 1.082142] Loaded X.509 cert 'Build time autogenerated kernel key: 3926023fa310b7bddbfc4c635bb21a6dd408b69b'
[ 1.082765] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
[ 1.083376] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
[ 1.083378] blacklist: Loading compiled-in revocation X.509 certificates
[ 1.083408] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'
[ 1.083427] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03'
[ 1.083444] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b'
[ 1.083461] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8'
[ 1.083479] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d'
[ 1.083496] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c'
[ 1.083512] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af'
[ 1.083528] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9'
[ 1.087234] Key type .fscrypt registered
[ 1.087236] Key type fscrypt-provisioning registered
[ 1.087292] Key type trusted registered
[ 1.095429] cryptd: max_cpu_qlen set to 1000
[ 1.099497] AVX2 version of gcm_enc/dec engaged.
[ 1.099550] AES CTR mode by8 optimization enabled
[ 1.113331] Key type encrypted registered
[ 1.113348] AppArmor: AppArmor sha256 policy hashing enabled
[ 1.117728] integrity: Loading X.509 certificate: UEFI:db
[ 1.117818] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 1.117819] integrity: Loading X.509 certificate: UEFI:db
[ 1.117835] integrity: Loaded X.509 cert 'Microsoft Corporation: Windows UEFI CA 2023: aefc5fbbbe055d8f8daa585473499417ab5a5272'
[ 1.117836] integrity: Loading X.509 certificate: UEFI:db
[ 1.117850] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 1.117851] integrity: Loading X.509 certificate: UEFI:db
[ 1.117875] integrity: Loaded X.509 cert 'Microsoft UEFI CA 2023: 81aa6b3244c935bce0d6628af39827421e32497d'
[ 1.117876] integrity: Loading X.509 certificate: UEFI:db
[ 1.118307] integrity: Loaded X.509 cert 'Secure Certificate: 01dcc89619884ca147983429f8a4a1a0'
[ 1.118310] integrity: Loading X.509 certificate: UEFI:db
[ 1.118458] integrity: Loaded X.509 cert 'Cus CA: d6136d376b87ef934511c12ce2c3880c'
[ 1.126356] Loading compiled-in module X.509 certificates
[ 1.126805] Loaded X.509 cert 'Build time autogenerated kernel key: 3926023fa310b7bddbfc4c635bb21a6dd408b69b'
[ 1.126808] ima: Allocated hash algorithm: sha256
[ 1.152033] ima: No architecture policies found
[ 1.152048] evm: Initialising EVM extended attributes:
[ 1.152049] evm: security.selinux
[ 1.152050] evm: security.SMACK64
[ 1.152051] evm: security.SMACK64EXEC
[ 1.152051] evm: security.SMACK64TRANSMUTE
[ 1.152052] evm: security.SMACK64MMAP
[ 1.152052] evm: security.apparmor
[ 1.152053] evm: security.ima
[ 1.152054] evm: security.capability
[ 1.152054] evm: HMAC attrs: 0x1
[ 1.152395] PM: Magic number: 12:654:849
[ 1.152477] graphics fbcon: hash matches
[ 1.152482] processor cpu13: hash matches
[ 1.156781] RAS: Correctable Errors collector initialized.
[ 1.156850] clk: Disabling unused clocks
[ 1.169999] Freeing unused decrypted memory: 2028K
[ 1.170942] Freeing unused kernel image (initmem) memory: 4976K
[ 1.170945] Write protecting the kernel read-only data: 36864k
[ 1.171772] Freeing unused kernel image (rodata/data gap) memory: 444K
[ 1.180416] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.180420] Run /init as init process
[ 1.180421] with arguments:
[ 1.180422] /init
[ 1.180423] splash
[ 1.180424] with environment:
[ 1.180424] HOME=/
[ 1.180425] TERM=linux
[ 1.180425] BOOT_IMAGE=/@boot/vmlinuz-6.8.0-45-kfocus
[ 1.180426] cryptdevice=UUID=10f3ea80-0841-49c9-8f38-b720275ff4e1:luks-10f3ea80-0841-49c9-8f38-b720275ff4e1
[ 1.265599] wmi_bus wmi_bus-PNP0C14:01: WQ00 data block query control method not found
[ 1.268848] hid: raw HID events driver (C) Jiri Kosina
[ 1.273954] vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
[ 1.273959] pci_bus 10000:e0: root bus resource [bus e0-ff]
[ 1.273961] pci_bus 10000:e0: root bus resource [mem 0x4c000000-0x4dffffff]
[ 1.273963] pci_bus 10000:e0: root bus resource [mem 0x6405102000-0x64051fffff 64bit]
[ 1.273988] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.273995] pci 10000:e0:06.0: [8086:a74d] type 01 class 0x060400 PCIe Root Port
[ 1.273998] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 1.274014] pci 10000:e0:06.0: PCI bridge to [bus e1]
[ 1.274019] pci 10000:e0:06.0: bridge window [io 0x0000-0x0fff]
[ 1.274022] pci 10000:e0:06.0: bridge window [mem 0x4c000000-0x4c0fffff]
[ 1.274071] pci 10000:e0:06.0: PME# supported from D0 D3hot D3cold
[ 1.274095] pci 10000:e0:06.0: PTM enabled (root), 4ns granularity
[ 1.274257] pci 10000:e0:06.0: Adding to iommu group 8
[ 1.274286] pci 10000:e0:1b.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 1.274339] pci 10000:e0:1b.0: Adding to iommu group 8
[ 1.274379] pci 10000:e0:1b.4: [8086:7a44] type 01 class 0x060400 PCIe Root Port
[ 1.274415] pci 10000:e0:1b.4: PCI bridge to [bus e2]
[ 1.274423] pci 10000:e0:1b.4: bridge window [io 0x0000-0x0fff]
[ 1.274425] pci 10000:e0:1b.4: bridge window [mem 0x4c100000-0x4c1fffff]
[ 1.274513] pci 10000:e0:1b.4: PME# supported from D0 D3hot D3cold
[ 1.274557] pci 10000:e0:1b.4: PTM enabled (root), 4ns granularity
[ 1.274681] pci 10000:e0:1b.4: Adding to iommu group 8
[ 1.274693] pci 10000:e0:06.0: Primary bus is hard wired to 0
[ 1.274745] pci 10000:e1:00.0: [144d:a808] type 00 class 0x010802 PCIe Endpoint
[ 1.274765] pci 10000:e1:00.0: BAR 0 [mem 0x4c000000-0x4c003fff 64bit]
[ 1.275009] pci 10000:e1:00.0: Adding to iommu group 8
[ 1.275028] pci 10000:e0:06.0: PCI bridge to [bus e1]
[ 1.275034] pci 10000:e0:1b.4: Primary bus is hard wired to 0
[ 1.275114] pci 10000:e2:00.0: [144d:a80a] type 00 class 0x010802 PCIe Endpoint
[ 1.275152] pci 10000:e2:00.0: BAR 0 [mem 0x4c100000-0x4c103fff 64bit]
[ 1.275177] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[ 1.275575] pci 10000:e2:00.0: Adding to iommu group 8
[ 1.275603] pci 10000:e0:1b.4: PCI bridge to [bus e2]
[ 1.275619] pci 10000:e0:06.0: Primary bus is hard wired to 0
[ 1.275623] pci 10000:e0:1b.4: Primary bus is hard wired to 0
[ 1.275654] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.275655] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 1.275657] xhci_hcd 0000:00:14.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 1.275798] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.08
[ 1.275802] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.275805] usb usb1: Product: xHCI Host Controller
[ 1.275806] usb usb1: Manufacturer: Linux 6.8.0-45-kfocus xhci-hcd
[ 1.275807] usb usb1: SerialNumber: 0000:00:14.0
[ 1.276124] hub 1-0:1.0: USB hub found
[ 1.276164] hub 1-0:1.0: 16 ports detected
[ 1.276987] Intel(R) 2.5G Ethernet Linux Driver
[ 1.276989] Copyright(c) 2018 Intel Corporation.
[ 1.277281] igc 0000:03:00.0: PTM enabled, 4ns granularity
[ 1.279574] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.08
[ 1.279579] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.279581] usb usb2: Product: xHCI Host Controller
[ 1.279582] usb usb2: Manufacturer: Linux 6.8.0-45-kfocus xhci-hcd
[ 1.279583] usb usb2: SerialNumber: 0000:00:14.0
[ 1.279762] hub 2-0:1.0: USB hub found
[ 1.279797] hub 2-0:1.0: 10 ports detected
[ 1.281572] xhci_hcd 0000:2d:00.0: xHCI Host Controller
[ 1.281582] xhci_hcd 0000:2d:00.0: new USB bus registered, assigned bus number 3
[ 1.282772] xhci_hcd 0000:2d:00.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[ 1.283173] xhci_hcd 0000:2d:00.0: xHCI Host Controller
[ 1.283175] xhci_hcd 0000:2d:00.0: new USB bus registered, assigned bus number 4
[ 1.283176] xhci_hcd 0000:2d:00.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 1.283280] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.08
[ 1.283284] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.283286] usb usb3: Product: xHCI Host Controller
[ 1.283288] usb usb3: Manufacturer: Linux 6.8.0-45-kfocus xhci-hcd
[ 1.283289] usb usb3: SerialNumber: 0000:2d:00.0
[ 1.283436] hub 3-0:1.0: USB hub found
[ 1.283458] hub 3-0:1.0: 2 ports detected
[ 1.284361] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.08
[ 1.284364] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.284365] usb usb4: Product: xHCI Host Controller
[ 1.284366] usb usb4: Manufacturer: Linux 6.8.0-45-kfocus xhci-hcd
[ 1.284366] usb usb4: SerialNumber: 0000:2d:00.0
[ 1.284437] hub 4-0:1.0: USB hub found
[ 1.284445] hub 4-0:1.0: 2 ports detected
[ 1.286308] thunderbolt: unknown parameter 'kf_force_redrive' ignored
[ 1.286719] intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
[ 1.287090] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 1.290242] ACPI: bus type thunderbolt registered
[ 1.290481] thunderbolt 0000:06:00.0: total paths: 12
[ 1.290487] thunderbolt 0000:06:00.0: IOMMU DMA protection is enabled
[ 1.327478] pps pps0: new PPS source ptp0
[ 1.327497] igc 0000:03:00.0 (unnamed net_device) (uninitialized): PHC added
[ 1.353103] igc 0000:03:00.0: 4.000 Gb/s available PCIe bandwidth (5.0 GT/s PCIe x1 link)
[ 1.353106] igc 0000:03:00.0 eth0: MAC: d4:93:90:48:c5:ea
[ 1.355693] igc 0000:03:00.0 enp3s0: renamed from eth0
[ 1.397852] thunderbolt 0000:06:00.0: host router reset successful
[ 1.398123] thunderbolt 0000:06:00.0: allocating TX ring 0 of size 10
[ 1.398153] thunderbolt 0000:06:00.0: allocating RX ring 0 of size 10
[ 1.398180] thunderbolt 0000:06:00.0: control channel created
[ 1.398181] thunderbolt 0000:06:00.0: using software connection manager
[ 1.398360] thunderbolt 0000:06:00.0: device links to tunneled native ports are missing!
[ 1.398361] thunderbolt 0000:06:00.0: NHI initialized, starting thunderbolt
[ 1.398362] thunderbolt 0000:06:00.0: control channel starting...
[ 1.398362] thunderbolt 0000:06:00.0: starting TX ring 0
[ 1.398373] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 1.398375] thunderbolt 0000:06:00.0: starting RX ring 0
[ 1.398380] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 1.398383] thunderbolt 0000:06:00.0: security level set to user
[ 1.398558] thunderbolt 0000:06:00.0: current switch config:
[ 1.398559] thunderbolt 0000:06:00.0: USB4 Switch: 8087:5781 (Revision: 131, TB Version: 64)
[ 1.398561] thunderbolt 0000:06:00.0: Max Port Number: 23
[ 1.398562] thunderbolt 0000:06:00.0: Config:
[ 1.398562] thunderbolt 0000:06:00.0: Upstream Port Number: 15 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[ 1.398563] thunderbolt 0000:06:00.0: unknown1: 0x0 unknown4: 0x0
[ 1.401681] thunderbolt 0000:06:00.0: initializing Switch at 0x0 (depth: 0, up port: 15)
[ 1.402817] thunderbolt 0000:06:00.0: 0: credit allocation parameters:
[ 1.402818] thunderbolt 0000:06:00.0: 0: USB3: 20
[ 1.402819] thunderbolt 0000:06:00.0: 0: DP AUX: 1
[ 1.402820] thunderbolt 0000:06:00.0: 0: DP main: 6
[ 1.402820] thunderbolt 0000:06:00.0: 0: PCIe: 80
[ 1.402821] thunderbolt 0000:06:00.0: 0: DMA: 40
[ 1.405254] thunderbolt 0000:06:00.0: 0: DROM version: 3
[ 1.405256] thunderbolt 0000:06:00.0: 0: DROM data CRC32 mismatch (expected: 0x56000000, got: 0x56473b0f), continuing
[ 1.405892] thunderbolt 0000:06:00.0: 0: uid: 0xb9cde50000006ecd
[ 1.407168] thunderbolt 0000:06:00.0: Port 1: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.407170] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.407171] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.407171] thunderbolt 0000:06:00.0: NFC Credits: 0x8a000000
[ 1.407172] thunderbolt 0000:06:00.0: Credits (total/control): 160/2
[ 1.408322] thunderbolt 0000:06:00.0: Port 2: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.408328] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.408332] thunderbolt 0000:06:00.0: Max counters: 0
[ 1.408335] thunderbolt 0000:06:00.0: NFC Credits: 0xa000000
[ 1.408338] thunderbolt 0000:06:00.0: Credits (total/control): 160/2
[ 1.409597] thunderbolt 0000:06:00.0: Port 3: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.409598] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.409599] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.409599] thunderbolt 0000:06:00.0: NFC Credits: 0x8a000000
[ 1.409600] thunderbolt 0000:06:00.0: Credits (total/control): 160/2
[ 1.410748] thunderbolt 0000:06:00.0: acking hot plug event on 0:13
[ 1.410760] thunderbolt 0000:06:00.0: Port 4: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.410765] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.410768] thunderbolt 0000:06:00.0: Max counters: 0
[ 1.410771] thunderbolt 0000:06:00.0: NFC Credits: 0xa000000
[ 1.410774] thunderbolt 0000:06:00.0: Credits (total/control): 160/2
[ 1.410876] thunderbolt 0000:06:00.0: acking hot plug event on 0:14
[ 1.411004] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
[ 1.412032] thunderbolt 0000:06:00.0: Port 5: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.412033] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.412034] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.412034] thunderbolt 0000:06:00.0: NFC Credits: 0x8a000000
[ 1.412035] thunderbolt 0000:06:00.0: Credits (total/control): 160/0
[ 1.412805] thunderbolt 0000:06:00.0: Port 6: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.412809] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.412813] thunderbolt 0000:06:00.0: Max counters: 0
[ 1.412816] thunderbolt 0000:06:00.0: NFC Credits: 0xa000000
[ 1.412819] thunderbolt 0000:06:00.0: Credits (total/control): 160/0
[ 1.414084] thunderbolt 0000:06:00.0: Port 7: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.414089] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.414092] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.414095] thunderbolt 0000:06:00.0: NFC Credits: 0x8a000000
[ 1.414098] thunderbolt 0000:06:00.0: Credits (total/control): 160/0
[ 1.414851] thunderbolt 0000:06:00.0: Port 8: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.414852] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.414853] thunderbolt 0000:06:00.0: Max counters: 0
[ 1.414853] thunderbolt 0000:06:00.0: NFC Credits: 0xa000000
[ 1.414854] thunderbolt 0000:06:00.0: Credits (total/control): 160/0
[ 1.415105] thunderbolt 0000:06:00.0: Port 9: 0:5780 (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[ 1.415110] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.415114] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.415116] thunderbolt 0000:06:00.0: NFC Credits: 0x40800000
[ 1.415119] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.415362] thunderbolt 0000:06:00.0: Port 10: 0:5780 (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[ 1.415363] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.415364] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.415364] thunderbolt 0000:06:00.0: NFC Credits: 0x40800000
[ 1.415365] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.415872] thunderbolt 0000:06:00.0: Port 11: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 1.415873] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.415874] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.415874] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.415875] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.416383] thunderbolt 0000:06:00.0: Port 12: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 1.416384] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.416385] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.416385] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.416386] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.416645] thunderbolt 0000:06:00.0: Port 13: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[ 1.416650] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.416653] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.416656] thunderbolt 0000:06:00.0: NFC Credits: 0x100000d
[ 1.416659] thunderbolt 0000:06:00.0: Credits (total/control): 16/0
[ 1.416896] thunderbolt 0000:06:00.0: Port 14: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[ 1.416897] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.416898] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.416898] thunderbolt 0000:06:00.0: NFC Credits: 0x100000d
[ 1.416899] thunderbolt 0000:06:00.0: Credits (total/control): 16/0
[ 1.417667] thunderbolt 0000:06:00.0: Port 15: 0:5780 (Revision: 0, TB Version: 1, Type: NHI (0x2))
[ 1.417672] thunderbolt 0000:06:00.0: Max hop id (in/out): 11/11
[ 1.417675] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.417678] thunderbolt 0000:06:00.0: NFC Credits: 0x41c00000
[ 1.417681] thunderbolt 0000:06:00.0: Credits (total/control): 28/0
[ 1.417685] thunderbolt 0000:06:00.0: 0:16: disabled by eeprom
[ 1.417919] thunderbolt 0000:06:00.0: Port 17: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.417920] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.417921] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.417922] thunderbolt 0000:06:00.0: NFC Credits: 0x40800000
[ 1.417922] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.418176] thunderbolt 0000:06:00.0: Port 18: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.418177] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.418178] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.418178] thunderbolt 0000:06:00.0: NFC Credits: 0x40800000
[ 1.418179] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.418689] thunderbolt 0000:06:00.0: Port 19: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 1.418693] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.418697] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.418707] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.418710] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.418941] thunderbolt 0000:06:00.0: Port 20: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.418942] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.418943] thunderbolt 0000:06:00.0: Max counters: 1
[ 1.418943] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.418944] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.419204] thunderbolt 0000:06:00.0: Port 21: 0:5780 (Revision: 0, TB Version: 1, Type: USB (0x200101))
[ 1.419205] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.419206] thunderbolt 0000:06:00.0: Max counters: 1
[ 1.419207] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.419207] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.419460] thunderbolt 0000:06:00.0: Port 22: 0:5780 (Revision: 0, TB Version: 1, Type: USB (0x200101))
[ 1.419465] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.419468] thunderbolt 0000:06:00.0: Max counters: 1
[ 1.419471] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.419474] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.419712] thunderbolt 0000:06:00.0: Port 23: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.419713] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.419714] thunderbolt 0000:06:00.0: Max counters: 1
[ 1.419714] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.419715] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.419716] thunderbolt 0000:06:00.0: 0: running quirk_usb3_maximum_bandwidth [thunderbolt]
[ 1.419742] thunderbolt 0000:06:00.0: 0:21: USB3 maximum bandwidth limited to 16376 Mb/s
[ 1.419743] thunderbolt 0000:06:00.0: 0:22: USB3 maximum bandwidth limited to 16376 Mb/s
[ 1.419744] thunderbolt 0000:06:00.0: 0: running quirk_block_rpm_in_redrive [thunderbolt]
[ 1.419760] thunderbolt 0000:06:00.0: 0: preventing runtime PM in DP redrive mode
[ 1.419761] thunderbolt 0000:06:00.0: 0: linked ports 1 <-> 2
[ 1.419762] thunderbolt 0000:06:00.0: 0: linked ports 3 <-> 4
[ 1.425838] intel-lpss 0000:00:15.1: enabling device (0004 -> 0006)
[ 1.426116] idma64 idma64.1: Found Intel integrated DMA 64-bit
[ 1.428031] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
[ 1.428032] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
[ 1.428159] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
[ 1.432161] thunderbolt 0000:06:00.0: 0: NVM version 14.86
[ 1.432229] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> uni-directional, LowRes requested
[ 1.432639] thunderbolt 0000:06:00.0: 0: TMU: mode set to: uni-directional, LowRes
[ 1.433023] thunderbolt 0000:06:00.0: 0:1: is unplugged (state: 7)
[ 1.433151] thunderbolt 0000:06:00.0: 0:3: is unplugged (state: 7)
[ 1.434948] thunderbolt 0000:06:00.0: 0:13: DP IN resource available
[ 1.435587] thunderbolt 0000:06:00.0: 0:14: DP IN resource available
[ 1.445869] pci 10000:e0:06.0: bridge window [mem 0x4c000000-0x4c0fffff]: assigned
[ 1.445874] pci 10000:e0:1b.4: bridge window [mem 0x4c100000-0x4c1fffff]: assigned
[ 1.445875] pci 10000:e0:06.0: bridge window [io size 0x1000]: can't assign; no space
[ 1.445877] pci 10000:e0:06.0: bridge window [io size 0x1000]: failed to assign
[ 1.445878] pci 10000:e0:1b.4: bridge window [io size 0x1000]: can't assign; no space
[ 1.445879] pci 10000:e0:1b.4: bridge window [io size 0x1000]: failed to assign
[ 1.445881] pci 10000:e1:00.0: BAR 0 [mem 0x4c000000-0x4c003fff 64bit]: assigned
[ 1.445891] pci 10000:e0:06.0: PCI bridge to [bus e1]
[ 1.445894] pci 10000:e0:06.0: bridge window [mem 0x4c000000-0x4c0fffff]
[ 1.445900] pci 10000:e2:00.0: BAR 0 [mem 0x4c100000-0x4c103fff 64bit]: assigned
[ 1.445928] pci 10000:e0:1b.4: PCI bridge to [bus e2]
[ 1.445934] pci 10000:e0:1b.4: bridge window [mem 0x4c100000-0x4c1fffff]
[ 1.446008] pcieport 10000:e0:06.0: can't derive routing for PCI INT D
[ 1.446010] pcieport 10000:e0:06.0: PCI INT D: no GSI
[ 1.446091] pcieport 10000:e0:06.0: PME: Signaling with IRQ 186
[ 1.446188] pcieport 10000:e0:1b.4: can't derive routing for PCI INT A
[ 1.446190] pcieport 10000:e0:1b.4: PCI INT A: no GSI
[ 1.446279] pcieport 10000:e0:1b.4: PME: Signaling with IRQ 187
[ 1.446397] vmd 0000:00:0e.0: Bound to PCI domain 10000
[ 1.485985] nvidia: loading out-of-tree module taints kernel.
[ 1.486012] nvidia: module license 'NVIDIA' taints kernel.
[ 1.486015] Disabling lock debugging due to kernel taint
[ 1.486020] nvidia: module verification failed: signature and/or required key missing - tainting kernel
[ 1.486021] nvidia: module license taints kernel.
[ 1.519813] usb 1-1: new full-speed USB device number 2 using xhci_hcd
[ 1.546337] nvidia-nvlink: Nvlink Core is being initialized, major device number 239
[ 1.547209] nvidia 0000:02:00.0: enabling device (0000 -> 0003)
[ 1.547333] nvidia 0000:02:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=none
[ 1.596933] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 535.183.01 Sun May 12 19:39:15 UTC 2024
[ 1.650646] usb 1-1: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.11
[ 1.650668] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.650672] usb 1-1: Product: USB Receiver
[ 1.650675] usb 1-1: Manufacturer: Logitech
[ 1.767762] usb 1-6: new high-speed USB device number 3 using xhci_hcd
[ 1.775384] input: FTCS1000:01 2808:0102 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0001/input/input8
[ 1.775541] input: FTCS1000:01 2808:0102 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0001/input/input9
[ 1.775671] hid-generic 0018:2808:0102.0001: input,hidraw0: I2C HID v1.00 Mouse [FTCS1000:01 2808:0102] on i2c-FTCS1000:01
[ 1.786280] nvme nvme1: pci function 10000:e2:00.0
[ 1.786302] pcieport 10000:e0:1b.4: can't derive routing for PCI INT A
[ 1.786305] nvme 10000:e2:00.0: PCI INT A: not connected
[ 1.786304] nvme nvme0: pci function 10000:e1:00.0
[ 1.786330] pcieport 10000:e0:06.0: can't derive routing for PCI INT A
[ 1.786333] nvme 10000:e1:00.0: PCI INT A: not connected
[ 1.787711] nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms 535.183.01 Sun May 12 19:31:08 UTC 2024
[ 1.788381] nvme nvme0: Shutdown timeout set to 10 seconds
[ 1.792978] nvme nvme0: 18/0/0 default/read/poll queues
[ 1.797396] nvme0n1: p1 p2 p3
[ 1.798138] nvme nvme1: Shutdown timeout set to 10 seconds
[ 1.803211] nvme nvme1: 18/0/0 default/read/poll queues
[ 1.806737] nvme1n1: p1 p2 p3 p4
[ 1.811407] [drm] [nvidia-drm] [GPU ID 0x00000200] Loading driver
[ 1.857306] input: FTCS1000:01 2808:0102 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0001/input/input11
[ 1.857404] input: FTCS1000:01 2808:0102 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0001/input/input12
[ 1.857484] hid-multitouch 0018:2808:0102.0001: input,hidraw0: I2C HID v1.00 Mouse [FTCS1000:01 2808:0102] on i2c-FTCS1000:01
[ 1.863850] ACPI Warning: \_SB.NPCF._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20230628/nsarguments-61)
[ 1.863971] ACPI Warning: \_SB.PC00.PEG2.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20230628/nsarguments-61)
[ 1.927619] usb 1-6: New USB device found, idVendor=04f2, idProduct=b7e7, bcdDevice= 0.04
[ 1.927633] usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.927637] usb 1-6: Product: Chicony USB2.0 Camera
[ 1.927639] usb 1-6: Manufacturer: SunplusIT Inc
[ 1.927640] usb 1-6: SerialNumber: 01.00.00
[ 2.057821] usb 1-7: new full-speed USB device number 4 using xhci_hcd
[ 2.188828] usb 1-7: New USB device found, idVendor=048d, idProduct=8910, bcdDevice= 0.01
[ 2.188842] usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.188848] usb 1-7: Product: ITE Device(829x)
[ 2.188852] usb 1-7: Manufacturer: ITE Tech. Inc.
[ 2.303822] usb 1-14: new full-speed USB device number 5 using xhci_hcd
[ 2.432054] usb 1-14: New USB device found, idVendor=8087, idProduct=0033, bcdDevice= 0.00
[ 2.432069] usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.438939] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/0003:046D:C52B.0002/input/input14
[ 2.490981] hid-generic 0003:046D:C52B.0002: input,hidraw1: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-1/input0
[ 2.492907] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:046D:C52B.0003/input/input15
[ 2.492989] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:046D:C52B.0003/input/input16
[ 2.544875] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:046D:C52B.0003/input/input17
[ 2.544951] hid-generic 0003:046D:C52B.0003: input,hiddev0,hidraw2: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-1/input1
[ 2.546292] hid-generic 0003:046D:C52B.0004: hiddev1,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-1/input2
[ 2.547420] hid-generic 0003:048D:8910.0005: hiddev2,hidraw4: USB HID v1.10 Device [ITE Tech. Inc. ITE Device(829x)] on usb-0000:00:14.0-7/input0
[ 2.547444] usbcore: registered new interface driver usbhid
[ 2.547445] usbhid: USB HID core driver
[ 2.610782] logitech-djreceiver 0003:046D:C52B.0004: hiddev0,hidraw1: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-1/input2
[ 2.645952] nvidia-modeset: WARNING: GPU:0: Unable to read EDID for display device DP-2
[ 2.655153] nvidia-modeset: WARNING: GPU:0: Unable to read EDID for display device DP-2
[ 2.656488] [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:02:00.0 on minor 1
[ 2.718078] input: Logitech Wireless Device PID:4082 Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0004/0003:046D:4082.0006/input/input19
[ 2.718310] input: Logitech Wireless Device PID:4082 Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0004/0003:046D:4082.0006/input/input20
[ 2.718552] hid-generic 0003:046D:4082.0006: input,hidraw2: USB HID v1.11 Keyboard [Logitech Wireless Device PID:4082] on usb-0000:00:14.0-1/input2:1
[ 2.720089] input: Logitech Wireless Device PID:408a Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0004/0003:046D:408A.0007/input/input24
[ 2.720304] input: Logitech Wireless Device PID:408a Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0004/0003:046D:408A.0007/input/input25
[ 2.720542] hid-generic 0003:046D:408A.0007: input,hidraw3: USB HID v1.11 Keyboard [Logitech Wireless Device PID:408a] on usb-0000:00:14.0-1/input2:2
[ 2.767664] input: Logitech MX Master 3 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0004/0003:046D:4082.0006/input/input29
[ 2.768172] logitech-hidpp-device 0003:046D:4082.0006: input,hidraw2: USB HID v1.11 Keyboard [Logitech MX Master 3] on usb-0000:00:14.0-1/input2:1
[ 2.813754] input: Logitech MX Keys as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0004/0003:046D:408A.0007/input/input30
[ 2.814257] logitech-hidpp-device 0003:046D:408A.0007: input,hidraw3: USB HID v1.11 Keyboard [Logitech MX Keys] on usb-0000:00:14.0-1/input2:2
[ 2.913522] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input7
[ 20.182389] thunderbolt 0000:06:00.0: 0: suspending switch
[ 20.182403] thunderbolt 0000:06:00.0: 0: enabling wakeup: 0x3f
[ 20.183455] thunderbolt 0000:06:00.0: stopping RX ring 0
[ 20.183476] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[ 20.183498] thunderbolt 0000:06:00.0: stopping TX ring 0
[ 20.183518] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[ 20.183544] thunderbolt 0000:06:00.0: control channel stopped
[ 39.899702] raid6: avx2x4 gen() 33930 MB/s
[ 39.916702] raid6: avx2x2 gen() 36928 MB/s
[ 39.933701] raid6: avx2x1 gen() 35983 MB/s
[ 39.933702] raid6: using algorithm avx2x2 gen() 36928 MB/s
[ 39.950701] raid6: .... xor() 28556 MB/s, rmw enabled
[ 39.950702] raid6: using avx2x2 recovery algorithm
[ 39.952912] xor: automatically using best checksumming function avx
[ 40.019919] Btrfs loaded, zoned=yes, fsverity=yes
[ 40.076816] BTRFS: device label kfocus_2404 devid 1 transid 13746 /dev/mapper/luks-10f3ea80-0841-49c9-8f38-b720275ff4e1 scanned by mount (708)
[ 40.077334] BTRFS info (device dm-0): first mount of filesystem 9c2a749a-d478-4e57-b7a7-f4d8c5de2902
[ 40.077348] BTRFS info (device dm-0): using crc32c (crc32c-intel) checksum algorithm
[ 40.077357] BTRFS info (device dm-0): using free-space-tree
[ 40.249750] systemd[1]: Inserted module 'autofs4'
[ 40.479360] systemd[1]: systemd 255.4-1ubuntu8.4 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[ 40.479369] systemd[1]: Detected architecture x86-64.
[ 40.480712] systemd[1]: Hostname set to <kf-jane>.
[ 40.566463] systemd[1]: Configuration file /run/systemd/system/netplan-ovs-cleanup.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
[ 40.596846] systemd[1]: Queued start job for default target graphical.target.
[ 40.617075] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[ 40.617412] systemd[1]: Created slice system-systemd\x2dcryptsetup.slice - Encrypted Volume Units Service Slice.
[ 40.617665] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[ 40.617868] systemd[1]: Created slice user.slice - User and Session Slice.
[ 40.617913] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[ 40.618066] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[ 40.618081] systemd[1]: Expecting device dev-disk-by\x2duuid-0883\x2d4F93.device - /dev/disk/by-uuid/0883-4F93...
[ 40.618089] systemd[1]: Expecting device dev-disk-by\x2duuid-10f3ea80\x2d0841\x2d49c9\x2d8f38\x2db720275ff4e1.device - /dev/disk/by-uuid/10f3ea80-0841-49c9-8f38-b720275ff4e1...
[ 40.618093] systemd[1]: Expecting device dev-disk-by\x2duuid-9c2a749a\x2dd478\x2d4e57\x2db7a7\x2df4d8c5de2902.device - /dev/disk/by-uuid/9c2a749a-d478-4e57-b7a7-f4d8c5de2902...
[ 40.618097] systemd[1]: Expecting device dev-disk-by\x2duuid-c04cfaca\x2d531b\x2d479b\x2da332\x2d848b3211ce9d.device - /dev/disk/by-uuid/c04cfaca-531b-479b-a332-848b3211ce9d...
[ 40.618101] systemd[1]: Expecting device dev-mapper-luks\x2d10f3ea80\x2d0841\x2d49c9\x2d8f38\x2db720275ff4e1.device - /dev/mapper/luks-10f3ea80-0841-49c9-8f38-b720275ff4e1...
[ 40.618117] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[ 40.618130] systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups.
[ 40.618138] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[ 40.618145] systemd[1]: Reached target slices.target - Slice Units.
[ 40.618154] systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
[ 40.618172] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[ 40.618224] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[ 40.618579] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[ 40.619024] systemd[1]: Listening on syslog.socket - Syslog Socket.
[ 40.619097] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[ 40.619118] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[ 40.619158] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[ 40.619198] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[ 40.619226] systemd[1]: systemd-pcrextend.socket - TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 40.619491] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ 40.619524] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 40.620993] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[ 40.621424] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[ 40.622079] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[ 40.622620] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[ 40.624715] systemd[1]: Starting systemd-journald.service - Journal Service...
[ 40.624792] systemd[1]: Finished blk-availability.service - Availability of block devices.
[ 40.625931] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[ 40.626950] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[ 40.627909] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[ 40.628533] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 40.629204] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[ 40.629957] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[ 40.630525] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[ 40.631179] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[ 40.631605] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[ 40.632045] systemd[1]: Starting modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics...
[ 40.632836] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[ 40.632857] systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 40.634009] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[ 40.634057] systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 40.634809] pstore: Using crash dump compression: deflate
[ 40.635147] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ 40.635613] systemd-journald[779]: Collecting audit messages is disabled.
[ 40.636277] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[ 40.636347] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ 40.636389] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ 40.636430] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ 40.636590] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ 40.636793] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 40.636876] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[ 40.637007] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 40.637088] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[ 40.637203] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 40.637270] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[ 40.637390] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 40.637455] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[ 40.637571] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 40.637672] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[ 40.638486] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[ 40.638992] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[ 40.639026] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[ 40.639513] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[ 40.640153] BTRFS info (device dm-0: state M): turning on sync discard
[ 40.640156] BTRFS info (device dm-0: state M): enabling auto defrag
[ 40.640157] BTRFS info (device dm-0: state M): use lzo compression, level 0
[ 40.640884] systemd[1]: modprobe@nvme_fabrics.service: Deactivated successfully.
[ 40.641000] systemd[1]: Finished modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics.
[ 40.641231] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[ 40.641630] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[ 40.642220] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[ 40.642947] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[ 40.642960] systemd[1]: systemd-tpm2-setup.service - TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 40.643209] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[ 40.660521] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[ 40.669781] lp: driver loaded but no devices found
[ 40.671583] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[ 40.671659] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
[ 40.674821] ppdev: user-space parallel port driver
[ 40.689930] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[ 40.690037] systemd[1]: Started systemd-journald.service - Journal Service.
[ 40.694816] pstore: Registered efi_pstore as persistent store backend
[ 40.694958] tuxedo_keyboard: module init
[ 40.705188] systemd-journald[779]: Received client request to flush runtime journal.
[ 40.727395] systemd-journald[779]: /var/log/journal/947663c1d7a1413e89306987834604de/system.journal: Journal file uses a different sequence number ID, rotating.
[ 40.727399] systemd-journald[779]: Rotating system journal.
[ 40.752222] loop0: detected capacity change from 0 to 111920
[ 40.754710] loop1: detected capacity change from 0 to 111984
[ 40.756772] loop2: detected capacity change from 0 to 152040
[ 40.758067] loop3: detected capacity change from 0 to 8
[ 40.758924] loop4: detected capacity change from 0 to 152056
[ 40.759180] loop5: detected capacity change from 0 to 135520
[ 40.759922] loop6: detected capacity change from 0 to 135512
[ 40.761121] loop7: detected capacity change from 0 to 21952
[ 40.768738] loop10: detected capacity change from 0 to 187776
[ 40.768780] loop9: detected capacity change from 0 to 79328
[ 40.769639] loop8: detected capacity change from 0 to 1034424
[ 40.770668] BTRFS info: devid 1 device path /dev/mapper/luks-10f3ea80-0841-49c9-8f38-b720275ff4e1 changed to /dev/dm-0 scanned by (udev-worker) (859)
[ 40.773597] loop11: detected capacity change from 0 to 79520
[ 40.773915] loop13: detected capacity change from 0 to 923472
[ 40.774128] BTRFS info: devid 1 device path /dev/dm-0 changed to /dev/mapper/luks-10f3ea80-0841-49c9-8f38-b720275ff4e1 scanned by (udev-worker) (859)
[ 40.774788] loop12: detected capacity change from 0 to 923480
[ 40.785780] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 40.792879] input: Intel HID events as /devices/platform/INTC1051:00/input/input31
[ 40.806406] nvidia_uvm: module uses symbols nvUvmInterfaceDisableAccessCntr from proprietary module nvidia, inheriting taint.
[ 40.847369] Consider using thermal netlink events interface
[ 40.848458] nvidia-uvm: Loaded the UVM driver, major device number 511.
[ 40.871723] mc: Linux media interface: v0.10
[ 40.876282] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 40.876538] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 40.876733] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 40.901170] tuxedo_keyboard: set_mode on CUSTOM
[ 40.903540] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 40.903597] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 40.904262] intel_pmc_core INT33A1:00: initialized
[ 40.912619] Intel(R) Wireless WiFi driver for Linux
[ 40.914443] iwlwifi 0000:00:14.3: Detected crf-id 0x400410, cnv-id 0x80401 wfpm id 0x80000020
[ 40.914468] iwlwifi 0000:00:14.3: PCI dev 7a70/0094, rev=0x430, rfid=0x2010d000
[ 40.918555] iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.0.2.41
[ 40.918771] iwlwifi 0000:00:14.3: loaded firmware version 86.fb5c9aeb.0 so-a0-gf-a0-86.ucode op_mode iwlmvm
[ 40.928579] Bluetooth: Core ver 2.22
[ 40.928596] NET: Registered PF_BLUETOOTH protocol family
[ 40.928597] Bluetooth: HCI device and connection manager initialized
[ 40.928600] Bluetooth: HCI socket layer initialized
[ 40.928601] Bluetooth: L2CAP socket layer initialized
[ 40.928603] Bluetooth: SCO socket layer initialized
[ 40.928902] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer
[ 40.928904] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 40.928905] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 40.928906] RAPL PMU: hw unit of domain psys 2^-14 Joules
[ 40.935561] tuxedo_keyboard: Set brightness on 125
[ 40.941741] tuxedo_keyboard: Set keyboard enabled to: 1
[ 40.944371] input: TUXEDO Keyboard as /devices/platform/tuxedo_keyboard/input/input32
[ 40.944453] clevo_wmi: interface initialized
[ 40.944468] clevo_acpi: interface initialized
[ 40.944551] i2c i2c-8: 2/2 memory slots populated (from DMI)
[ 40.944552] i2c i2c-8: Memory type 0x22 not supported yet, not instantiating SPD
[ 40.949774] intel_rapl_msr: PL4 support detected.
[ 40.949825] intel_rapl_common: Found RAPL domain package
[ 40.949833] intel_rapl_common: Found RAPL domain core
[ 40.949838] intel_rapl_common: Found RAPL domain psys
[ 40.958051] videodev: Linux video capture interface: v2.00
[ 40.958111] usbcore: registered new interface driver btusb
[ 40.960405] Bluetooth: hci0: Device revision is 0
[ 40.960410] Bluetooth: hci0: Secure boot is enabled
[ 40.960413] Bluetooth: hci0: OTP lock is enabled
[ 40.960415] Bluetooth: hci0: API lock is enabled
[ 40.960416] Bluetooth: hci0: Debug lock is disabled
[ 40.960418] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[ 40.960420] Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38
[ 40.960696] ACPI Warning: \_SB.PC00.XHCI.RHUB.HS14._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20230628/nsarguments-61)
[ 40.960769] Bluetooth: hci0: DSM reset method type: 0x00
[ 40.962679] Creating 1 MTD partitions on "0000:00:1f.5":
[ 40.962682] 0x000000000000-0x000002000000 : "BIOS"
[ 40.964645] Bluetooth: hci0: Found device firmware: intel/ibt-1040-0041.sfi
[ 40.964653] Bluetooth: hci0: Boot Address: 0x100800
[ 40.964654] Bluetooth: hci0: Firmware Version: 60-48.23
[ 41.028957] intel_rapl_common: Found RAPL domain package
[ 41.041257] usb 1-6: Found UVC 1.50 device Chicony USB2.0 Camera (04f2:b7e7)
[ 41.064952] iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6E AX211 160MHz, REV=0x430
[ 41.064994] thermal thermal_zone8: failed to read out thermal zone (-61)
[ 41.074949] iwlwifi 0000:00:14.3: WRT: Invalid buffer destination
[ 41.077380] usb 1-6: Found UVC 1.50 device Chicony USB2.0 Camera (04f2:b7e7)
[ 41.087851] usbcore: registered new interface driver uvcvideo
[ 41.236061] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[ 41.236093] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[ 41.236102] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[ 41.236111] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[ 41.237136] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
[ 41.245076] iwlwifi 0000:00:14.3: loaded PNVM version e28bb9d7
[ 41.262076] iwlwifi 0000:00:14.3: Detected RF GF, rfid=0x2010d000
[ 41.329472] i915 0000:00:02.0: [drm] VT-d active for gfx access
[ 41.330216] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[ 41.330298] iwlwifi 0000:00:14.3: base HW address: 98:5f:41:dd:bb:cf
[ 41.330375] snd_hda_intel 0000:02:00.1: enabling device (0000 -> 0002)
[ 41.330426] snd_hda_intel 0000:02:00.1: Disabling MSI
[ 41.330429] snd_hda_intel 0000:02:00.1: Handle vga_switcheroo audio client
[ 41.331846] intel_tcc_cooling: Programmable TCC Offset detected
[ 41.347493] iwlwifi 0000:00:14.3 wlp0s20f3: renamed from wlan0
[ 41.352559] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card1/input33
[ 41.352710] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card1/input34
[ 41.352753] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card1/input35
[ 41.352807] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card1/input36
[ 41.353722] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC1220: line_outs=1 (0x1b/0x0/0x0/0x0/0x0) type:speaker
[ 41.353727] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 41.353730] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x14/0x0/0x0/0x0/0x0)
[ 41.353732] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 41.353734] snd_hda_codec_realtek hdaudioC0D0: dig-out=0x1e/0x0
[ 41.353735] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 41.353749] snd_hda_codec_realtek hdaudioC0D0: Mic=0x18
[ 41.353750] snd_hda_codec_realtek hdaudioC0D0: Internal Mic=0x12
[ 41.355003] i915 0000:00:02.0: vgaarb: deactivate vga console
[ 41.355057] i915 0000:00:02.0: [drm] Using Transparent Hugepages
[ 41.355745] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=io+mem
[ 41.356661] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
[ 41.357499] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/adls_dmc_ver2_01.bin (v2.1)
[ 41.364117] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input37
[ 41.364176] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input38
[ 41.376222] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/tgl_guc_70.bin version 70.20.0
[ 41.376226] i915 0000:00:02.0: [drm] GT0: HuC firmware i915/tgl_huc.bin version 7.9.3
[ 41.385645] i915 0000:00:02.0: [drm] GT0: HuC: authenticated for all workloads
[ 41.386353] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
[ 41.386355] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
[ 41.386921] i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
[ 41.387771] mei_pxp 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1: bound 0000:00:02.0 (ops i915_pxp_tee_component_ops [i915])
[ 41.387927] i915 0000:00:02.0: [drm] Protected Xe Path (PXP) protected content support initialized
[ 41.663834] BTRFS: device label kfocus_boot devid 1 transid 1419 /dev/nvme0n1p2 scanned by mount (1341)
[ 41.664307] BTRFS info (device nvme0n1p2): first mount of filesystem c04cfaca-531b-479b-a332-848b3211ce9d
[ 41.664320] BTRFS info (device nvme0n1p2): using crc32c (crc32c-intel) checksum algorithm
[ 41.664324] BTRFS info (device nvme0n1p2): using free-space-tree
[ 41.677529] Adding 524284k swap on /swap/swapfile. Priority:-2 extents:1 across:524284k
[ 41.709597] audit: type=1400 audit(1728676250.224:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="crun" pid=1399 comm="apparmor_parser"
[ 41.709601] audit: type=1400 audit(1728676250.224:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="epiphany" pid=1402 comm="apparmor_parser"
[ 41.709734] audit: type=1400 audit(1728676250.225:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=1390 comm="apparmor_parser"
[ 41.709820] audit: type=1400 audit(1728676250.225:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="QtWebEngineProcess" pid=1389 comm="apparmor_parser"
[ 41.709824] audit: type=1400 audit(1728676250.225:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=1386 comm="apparmor_parser"
[ 41.709826] audit: type=1400 audit(1728676250.225:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="element-desktop" pid=1401 comm="apparmor_parser"
[ 41.709964] audit: type=1400 audit(1728676250.225:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="geary" pid=1408 comm="apparmor_parser"
[ 41.709968] audit: type=1400 audit(1728676250.225:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="firefox" pid=1405 comm="apparmor_parser"
[ 41.709989] audit: type=1400 audit(1728676250.225:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="evolution" pid=1403 comm="apparmor_parser"
[ 41.710102] audit: type=1400 audit(1728676250.225:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="flatpak" pid=1406 comm="apparmor_parser"
[ 42.374901] Bluetooth: hci0: Waiting for firmware download to complete
[ 42.374916] Bluetooth: hci0: Firmware loaded in 1377216 usecs
[ 42.375155] Bluetooth: hci0: Waiting for device to boot
[ 42.391801] Bluetooth: hci0: Device booted in 16437 usecs
[ 42.391818] Bluetooth: hci0: Malformed MSFT vendor event: 0x02
[ 42.392157] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-1040-0041.ddc
[ 42.394699] Bluetooth: hci0: Applying Intel DDC parameters completed
[ 42.397727] Bluetooth: hci0: Firmware timestamp 2023.48 buildtype 1 build 75324
[ 42.397740] Bluetooth: hci0: Firmware SHA1: 0x23bac558
[ 43.040405] i915 0000:00:02.0: [drm] Skipping intel_backlight registration
[ 43.040723] [drm] Initialized i915 1.6.0 20230929 for 0000:00:02.0 on minor 2
[ 43.041155] ACPI: video: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[ 43.041189] ACPI: video: Video Device [PEGP] (multi-head: yes rom: no post: no)
[ 43.041250] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:05/LNXVIDEO:00/input/input39
[ 43.042740] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 43.043112] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input40
[ 43.043434] i915 display info: display version: 12
[ 43.043437] i915 display info: cursor_needs_physical: no
[ 43.043438] i915 display info: has_cdclk_crawl: no
[ 43.043440] i915 display info: has_cdclk_squash: no
[ 43.043441] i915 display info: has_ddi: yes
[ 43.043443] i915 display info: has_dp_mst: yes
[ 43.043444] i915 display info: has_dsb: yes
[ 43.043445] i915 display info: has_fpga_dbg: yes
[ 43.043446] i915 display info: has_gmch: no
[ 43.043448] i915 display info: has_hotplug: yes
[ 43.043449] i915 display info: has_hti: yes
[ 43.043450] i915 display info: has_ipc: yes
[ 43.043451] i915 display info: has_overlay: no
[ 43.043452] i915 display info: has_psr: yes
[ 43.043454] i915 display info: has_psr_hw_tracking: no
[ 43.043455] i915 display info: overlay_needs_physical: no
[ 43.043456] i915 display info: supports_tv: no
[ 43.043457] i915 display info: has_hdcp: yes
[ 43.043458] i915 display info: has_dmc: yes
[ 43.043460] i915 display info: has_dsc: yes
[ 43.046169] fbcon: i915drmfb (fb0) is primary device
[ 43.046173] fbcon: Deferring console take-over
[ 43.046177] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[ 43.344559] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 43.344562] Bluetooth: BNEP filters: protocol multicast
[ 43.344566] Bluetooth: BNEP socket layer initialized
[ 43.345757] Bluetooth: MGMT ver 1.22
[ 43.349244] NET: Registered PF_ALG protocol family
[ 43.387927] loop14: detected capacity change from 0 to 8
[ 43.469606] NET: Registered PF_QIPCRTR protocol family
[ 44.132712] iwlwifi 0000:00:14.3: WRT: Invalid buffer destination
[ 44.289153] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[ 44.289196] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[ 44.289228] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[ 44.289260] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[ 44.290153] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
[ 44.382075] iwlwifi 0000:00:14.3: Registered PHC clock: iwlwifi-PTP, with index: 1
[ 47.104454] igc 0000:03:00.0 enp3s0: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[ 47.806067] vboxdrv: Found 32 processor cores/threads
[ 47.822234] vboxdrv: TSC mode is Invariant, tentative frequency 2419176517 Hz
[ 47.822238] vboxdrv: Successfully loaded version 7.0.16_Ubuntu r162802 (interface 0x00330004)
[ 47.832200] VBoxNetFlt: Successfully started.
[ 47.838104] VBoxNetAdp: Successfully started.
[ 47.887565] kauditd_printk_skb: 138 callbacks suppressed
[ 47.887574] audit: type=1400 audit(1728676256.402:150): apparmor="STATUS" operation="profile_load" profile="unconfined" name="docker-default" pid=2639 comm="apparmor_parser"
[ 48.349939] evm: overlay not supported
[ 48.541144] Initializing XFRM netlink socket
[ 48.564822] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 50.258944] Bluetooth: RFCOMM TTY layer initialized
[ 50.258950] Bluetooth: RFCOMM socket layer initialized
[ 50.258953] Bluetooth: RFCOMM ver 1.11
[ 58.348938] systemd-journald[779]: /var/log/journal/947663c1d7a1413e89306987834604de/user-1000.journal: Journal file uses a different sequence number ID, rotating.
[ 59.190835] warning: `kded5' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[ 59.687857] wlp0s20f3: authenticate with a0:55:1f:2f:2c:92 (local address=98:5f:41:dd:bb:cf)
[ 59.688981] wlp0s20f3: send auth to a0:55:1f:2f:2c:92 (try 1/3)
[ 59.721336] wlp0s20f3: authenticated
[ 59.721719] wlp0s20f3: associate with a0:55:1f:2f:2c:92 (try 1/3)
[ 59.723783] wlp0s20f3: RX AssocResp from a0:55:1f:2f:2c:92 (capab=0x1011 status=0 aid=22)
[ 59.730027] wlp0s20f3: associated
[ 59.737562] wlp0s20f3: Limiting TX power to 30 (30 - 0) dBm as advertised by a0:55:1f:2f:2c:92
[ 60.126328] thunderbolt 0000:06:00.0: control channel starting...
[ 60.126332] thunderbolt 0000:06:00.0: starting TX ring 0
[ 60.126337] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 60.126339] thunderbolt 0000:06:00.0: starting RX ring 0
[ 60.126344] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 60.126347] thunderbolt 0000:06:00.0: 0: resuming switch
[ 60.126348] thunderbolt 0000:06:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[ 60.126877] xhci_hcd 0000:2d:00.0: xHC error in resume, USBSTS 0x401, Reinit
[ 60.126879] usb usb3: root hub lost power or was reset
[ 60.126880] usb usb4: root hub lost power or was reset
[ 60.128535] thunderbolt 0000:06:00.0: 0: disabling wakeup
[ 60.129481] thunderbolt 0000:06:00.0: acking hot plug event on 0:13
[ 60.129601] thunderbolt 0000:06:00.0: acking hot plug event on 0:14
[ 60.129730] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
[ 60.137467] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
[ 60.137478] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
[ 60.137589] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
[ 60.137591] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[ 60.138102] thunderbolt 0000:06:00.0: 0: TMU: mode set to: bi-directional, HiFi
[ 60.139778] thunderbolt 0000:06:00.0: 0:13: DP IN resource available after hotplug
[ 60.139783] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 60.139895] thunderbolt 0000:06:00.0: 0:13: DP IN available
[ 60.139896] thunderbolt 0000:06:00.0: no suitable DP OUT adapter available, not tunneling
[ 60.140018] thunderbolt 0000:06:00.0: 0:14: DP IN resource available after hotplug
[ 60.140021] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 60.140145] thunderbolt 0000:06:00.0: 0:13: DP IN available
[ 60.140277] thunderbolt 0000:06:00.0: 0:14: DP IN available
[ 60.140278] thunderbolt 0000:06:00.0: no suitable DP OUT adapter available, not tunneling
[ 78.863111] thunderbolt 0000:06:00.0: 0: suspending switch
[ 78.863125] thunderbolt 0000:06:00.0: 0: enabling wakeup: 0x3f
[ 78.864812] thunderbolt 0000:06:00.0: stopping RX ring 0
[ 78.864825] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[ 78.864849] thunderbolt 0000:06:00.0: stopping TX ring 0
[ 78.864857] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[ 78.864870] thunderbolt 0000:06:00.0: control channel stopped
[ 115.145733] usb 1-9: new high-speed USB device number 6 using xhci_hcd
[ 115.621717] usb 1-9: New USB device found, idVendor=2109, idProduct=0100, bcdDevice= 3.00
[ 115.621725] usb 1-9: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 115.621727] usb 1-9: Product: USB-C dongle
[ 115.621729] usb 1-9: Manufacturer: VIA Technologies Inc.
[ 115.621731] usb 1-9: SerialNumber: 0000000000000001
[ 116.025680] usb 1-10: new high-speed USB device number 7 using xhci_hcd
[ 116.172071] usb 1-10: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.49
[ 116.172087] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 116.172092] usb 1-10: Product: 4-Port USB 2.0 Hub
[ 116.172096] usb 1-10: Manufacturer: Generic
[ 116.175384] hub 1-10:1.0: USB hub found
[ 116.177810] hub 1-10:1.0: 4 ports detected
[ 116.466759] usb 1-10.3: new full-speed USB device number 8 using xhci_hcd
[ 116.557830] usb 1-10.3: New USB device found, idVendor=043e, idProduct=9a39, bcdDevice= 4.11
[ 116.557840] usb 1-10.3: New USB device strings: Mfr=1, Product=3, SerialNumber=4
[ 116.557843] usb 1-10.3: Product: LG Monitor Controls
[ 116.557845] usb 1-10.3: Manufacturer: LG Electronics Inc.
[ 116.557847] usb 1-10.3: SerialNumber: 005INTX1F153
[ 116.564157] hid-generic 0003:043E:9A39.0008: hiddev1,hidraw5: USB HID v1.11 Device [LG Electronics Inc. LG Monitor Controls] on usb-0000:00:14.0-10.3/input0
[ 182.118304] thunderbolt 0000:06:00.0: control channel starting...
[ 182.118314] thunderbolt 0000:06:00.0: starting TX ring 0
[ 182.118325] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 182.118329] thunderbolt 0000:06:00.0: starting RX ring 0
[ 182.118338] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 182.118348] thunderbolt 0000:06:00.0: 0: resuming switch
[ 182.118351] thunderbolt 0000:06:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[ 182.118509] xhci_hcd 0000:2d:00.0: xHC error in resume, USBSTS 0x401, Reinit
[ 182.118519] usb usb3: root hub lost power or was reset
[ 182.118522] usb usb4: root hub lost power or was reset
[ 182.118608] thunderbolt 0000:06:00.0: 0: disabling wakeup
[ 182.127404] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
[ 182.127416] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
[ 182.127524] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
[ 182.127527] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[ 182.128042] thunderbolt 0000:06:00.0: 0: TMU: mode set to: bi-directional, HiFi
[ 182.128938] thunderbolt 0000:06:00.0: 0:13: enter redrive mode, keeping powered
[ 182.129059] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
[ 182.129759] thunderbolt 0000:06:00.0: 0:14: enter redrive mode, keeping powered
[ 315.548678] usb 1-10: USB disconnect, device number 7
[ 315.548692] usb 1-10.3: USB disconnect, device number 8
[ 315.601384] thunderbolt 0000:06:00.0: acking hot plug event on 0:14
[ 315.601762] thunderbolt 0000:06:00.0: 0:14: DP IN resource available after hotplug
[ 315.602370] thunderbolt 0000:06:00.0: 0:14: exit redrive mode
[ 315.602375] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 315.602549] thunderbolt 0000:06:00.0: 0:14: DP IN available
[ 315.602553] thunderbolt 0000:06:00.0: no suitable DP OUT adapter available, not tunneling
[ 353.564629] usb 1-9: USB disconnect, device number 6
[ 353.610947] thunderbolt 0000:06:00.0: acking hot plug event on 0:13
[ 353.611260] thunderbolt 0000:06:00.0: 0:13: DP IN resource available after hotplug
[ 353.611921] thunderbolt 0000:06:00.0: 0:13: exit redrive mode
[ 353.611933] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 353.612076] thunderbolt 0000:06:00.0: 0:14: DP IN available
[ 353.612258] thunderbolt 0000:06:00.0: 0:13: DP IN available
[ 353.612264] thunderbolt 0000:06:00.0: no suitable DP OUT adapter available, not tunneling
[ 372.362496] thunderbolt 0000:06:00.0: 0: suspending switch
[ 372.362506] thunderbolt 0000:06:00.0: 0: enabling wakeup: 0x3f
[ 372.363480] thunderbolt 0000:06:00.0: stopping RX ring 0
[ 372.363497] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[ 372.363523] thunderbolt 0000:06:00.0: stopping TX ring 0
[ 372.363539] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[ 372.363558] thunderbolt 0000:06:00.0: control channel stopped
[ 397.557526] logitech-hidpp-device 0003:046D:4082.0006: HID++ 4.5 device connected.
[ 404.630560] usb 1-10: new high-speed USB device number 9 using xhci_hcd
[ 404.775633] usb 1-10: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.49
[ 404.775641] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 404.775644] usb 1-10: Product: 4-Port USB 2.0 Hub
[ 404.775645] usb 1-10: Manufacturer: Generic
[ 404.783748] hub 1-10:1.0: USB hub found
[ 404.785121] hub 1-10:1.0: 4 ports detected
[ 405.073499] usb 1-10.3: new full-speed USB device number 10 using xhci_hcd
[ 405.165278] usb 1-10.3: New USB device found, idVendor=043e, idProduct=9a39, bcdDevice= 4.11
[ 405.165293] usb 1-10.3: New USB device strings: Mfr=1, Product=3, SerialNumber=4
[ 405.165298] usb 1-10.3: Product: LG Monitor Controls
[ 405.165302] usb 1-10.3: Manufacturer: LG Electronics Inc.
[ 405.165305] usb 1-10.3: SerialNumber: 005INTX1F153
[ 405.172171] hid-generic 0003:043E:9A39.0009: hiddev1,hidraw5: USB HID v1.11 Device [LG Electronics Inc. LG Monitor Controls] on usb-0000:00:14.0-10.3/input0
[ 473.933405] usb 1-9: new high-speed USB device number 11 using xhci_hcd
[ 474.408981] usb 1-9: New USB device found, idVendor=2109, idProduct=0100, bcdDevice= 3.00
[ 474.408999] usb 1-9: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 474.409005] usb 1-9: Product: USB-C dongle
[ 474.409010] usb 1-9: Manufacturer: VIA Technologies Inc.
[ 474.409014] usb 1-9: SerialNumber: 0000000000000001
[ 545.126296] wlp0s20f3: deauthenticating from a0:55:1f:2f:2c:92 by local choice (Reason: 3=DEAUTH_LEAVING)
[ 545.867762] PM: suspend entry (deep)
[ 546.017682] Filesystems sync: 0.149 seconds
[ 546.193145] Freezing user space processes
[ 546.194723] Freezing user space processes completed (elapsed 0.001 seconds)
[ 546.194726] OOM killer disabled.
[ 546.194726] Freezing remaining freezable tasks
[ 546.196173] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[ 546.196227] printk: Suspending console(s) (use no_console_suspend to debug)
[ 546.215655] tuxedo_keyboard: Set keyboard enabled to: 0
[ 546.652610] thunderbolt 0000:06:00.0: control channel starting...
[ 546.652621] thunderbolt 0000:06:00.0: starting TX ring 0
[ 546.652632] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 546.652637] thunderbolt 0000:06:00.0: starting RX ring 0
[ 546.652645] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 546.652655] thunderbolt 0000:06:00.0: 0: resuming switch
[ 546.652658] thunderbolt 0000:06:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[ 546.652778] thunderbolt 0000:06:00.0: 0: disabling wakeup
[ 546.652832] xhci_hcd 0000:2d:00.0: xHC error in resume, USBSTS 0x401, Reinit
[ 546.652841] usb usb3: root hub lost power or was reset
[ 546.652844] usb usb4: root hub lost power or was reset
[ 546.661566] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
[ 546.661572] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
[ 546.661693] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
[ 546.661698] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[ 546.662207] thunderbolt 0000:06:00.0: 0: TMU: mode set to: bi-directional, HiFi
[ 546.663106] thunderbolt 0000:06:00.0: 0:13: enter redrive mode, keeping powered
[ 546.663743] thunderbolt 0000:06:00.0: 0:14: enter redrive mode, keeping powered
[ 546.663867] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
[ 547.004747] ACPI: EC: interrupt blocked
[ 547.004897] thunderbolt 0000:06:00.0: suspending...
[ 547.004907] thunderbolt 0000:06:00.0: 0:13: exit redrive mode
[ 547.004914] thunderbolt 0000:06:00.0: 0:14: exit redrive mode
[ 547.004918] thunderbolt 0000:06:00.0: 0: suspending switch
[ 547.004923] thunderbolt 0000:06:00.0: 0: enabling wakeup: 0x1c
[ 547.006135] thunderbolt 0000:06:00.0: suspend finished
[ 547.006139] thunderbolt 0000:06:00.0: stopping RX ring 0
[ 547.006144] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[ 547.006156] thunderbolt 0000:06:00.0: stopping TX ring 0
[ 547.006160] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[ 547.006166] thunderbolt 0000:06:00.0: control channel stopped
[ 547.097940] ACPI: PM: Preparing to enter system sleep state S3
[ 547.113846] ACPI: EC: event blocked
[ 547.113847] ACPI: EC: EC stopped
[ 547.113847] ACPI: PM: Saving platform NVS memory
[ 547.114190] Disabling non-boot CPUs ...
[ 547.115955] IRQ186: set affinity failed(-22).
[ 547.115957] IRQ187: set affinity failed(-22).
[ 547.122147] smpboot: CPU 1 is now offline
[ 547.125420] IRQ186: set affinity failed(-22).
[ 547.125424] IRQ187: set affinity failed(-22).
[ 547.126457] smpboot: CPU 2 is now offline
[ 547.130149] IRQ186: set affinity failed(-22).
[ 547.130152] IRQ187: set affinity failed(-22).
[ 547.131219] smpboot: CPU 3 is now offline
[ 547.133781] IRQ186: set affinity failed(-22).
[ 547.133787] IRQ187: set affinity failed(-22).
[ 547.134823] smpboot: CPU 4 is now offline
[ 547.141552] IRQ186: set affinity failed(-22).
[ 547.141556] IRQ187: set affinity failed(-22).
[ 547.142595] smpboot: CPU 5 is now offline
[ 547.146331] smpboot: CPU 6 is now offline
[ 547.153984] smpboot: CPU 7 is now offline
[ 547.157377] smpboot: CPU 8 is now offline
[ 547.164202] smpboot: CPU 9 is now offline
[ 547.168230] smpboot: CPU 10 is now offline
[ 547.174867] smpboot: CPU 11 is now offline
[ 547.178451] smpboot: CPU 12 is now offline
[ 547.185254] smpboot: CPU 13 is now offline
[ 547.188975] smpboot: CPU 14 is now offline
[ 547.195666] smpboot: CPU 15 is now offline
[ 547.200152] smpboot: CPU 16 is now offline
[ 547.204594] smpboot: CPU 17 is now offline
[ 547.209000] smpboot: CPU 18 is now offline
[ 547.214078] smpboot: CPU 19 is now offline
[ 547.219071] smpboot: CPU 20 is now offline
[ 547.224104] smpboot: CPU 21 is now offline
[ 547.228585] smpboot: CPU 22 is now offline
[ 547.232932] smpboot: CPU 23 is now offline
[ 547.237182] smpboot: CPU 24 is now offline
[ 547.241171] smpboot: CPU 25 is now offline
[ 547.244602] smpboot: CPU 26 is now offline
[ 547.248143] smpboot: CPU 27 is now offline
[ 547.251375] smpboot: CPU 28 is now offline
[ 547.254468] smpboot: CPU 29 is now offline
[ 547.258266] smpboot: CPU 30 is now offline
[ 547.261212] smpboot: CPU 31 is now offline
[ 547.265331] ACPI: PM: Low-level resume complete
[ 547.265408] ACPI: EC: EC started
[ 547.265409] ACPI: PM: Restoring platform NVS memory
[ 547.267119] Enabling non-boot CPUs ...
[ 547.267212] smpboot: Booting Node 0 Processor 1 APIC 0x1
[ 547.274467] CPU1 is up
[ 547.274481] smpboot: Booting Node 0 Processor 2 APIC 0x8
[ 547.280063] CPU2 is up
[ 547.280078] smpboot: Booting Node 0 Processor 3 APIC 0x9
[ 547.285991] CPU3 is up
[ 547.286009] smpboot: Booting Node 0 Processor 4 APIC 0x10
[ 547.291017] CPU4 is up
[ 547.291032] smpboot: Booting Node 0 Processor 5 APIC 0x11
[ 547.296051] CPU5 is up
[ 547.296067] smpboot: Booting Node 0 Processor 6 APIC 0x18
[ 547.301086] CPU6 is up
[ 547.301102] smpboot: Booting Node 0 Processor 7 APIC 0x19
[ 547.305102] CPU7 is up
[ 547.305117] smpboot: Booting Node 0 Processor 8 APIC 0x20
[ 547.309136] CPU8 is up
[ 547.309161] smpboot: Booting Node 0 Processor 9 APIC 0x21
[ 547.313130] CPU9 is up
[ 547.313149] smpboot: Booting Node 0 Processor 10 APIC 0x28
[ 547.319525] CPU10 is up
[ 547.319567] smpboot: Booting Node 0 Processor 11 APIC 0x29
[ 547.327549] CPU11 is up
[ 547.327594] smpboot: Booting Node 0 Processor 12 APIC 0x30
[ 547.333558] CPU12 is up
[ 547.333600] smpboot: Booting Node 0 Processor 13 APIC 0x31
[ 547.341838] CPU13 is up
[ 547.341882] smpboot: Booting Node 0 Processor 14 APIC 0x38
[ 547.349858] CPU14 is up
[ 547.349903] smpboot: Booting Node 0 Processor 15 APIC 0x39
[ 547.357754] CPU15 is up
[ 547.357800] smpboot: Booting Node 0 Processor 16 APIC 0x40
[ 547.363050] core: cpu_atom PMU driver: PEBS-via-PT
[ 547.363057] ... version: 5
[ 547.363059] ... bit width: 48
[ 547.363060] ... generic registers: 6
[ 547.363061] ... value mask: 0000ffffffffffff
[ 547.363062] ... max period: 00007fffffffffff
[ 547.363063] ... fixed-purpose events: 3
[ 547.363063] ... event mask: 000000070000003f
[ 547.365071] CPU16 is up
[ 547.365110] smpboot: Booting Node 0 Processor 17 APIC 0x42
[ 547.372308] CPU17 is up
[ 547.372354] smpboot: Booting Node 0 Processor 18 APIC 0x44
[ 547.379394] CPU18 is up
[ 547.379440] smpboot: Booting Node 0 Processor 19 APIC 0x46
[ 547.386408] CPU19 is up
[ 547.386451] smpboot: Booting Node 0 Processor 20 APIC 0x48
[ 547.393841] CPU20 is up
[ 547.393888] smpboot: Booting Node 0 Processor 21 APIC 0x4a
[ 547.400506] CPU21 is up
[ 547.400551] smpboot: Booting Node 0 Processor 22 APIC 0x4c
[ 547.407548] CPU22 is up
[ 547.407592] smpboot: Booting Node 0 Processor 23 APIC 0x4e
[ 547.415142] CPU23 is up
[ 547.415199] smpboot: Booting Node 0 Processor 24 APIC 0x50
[ 547.422687] CPU24 is up
[ 547.422732] smpboot: Booting Node 0 Processor 25 APIC 0x52
[ 547.430404] CPU25 is up
[ 547.430453] smpboot: Booting Node 0 Processor 26 APIC 0x54
[ 547.439772] CPU26 is up
[ 547.439813] smpboot: Booting Node 0 Processor 27 APIC 0x56
[ 547.446848] CPU27 is up
[ 547.446897] smpboot: Booting Node 0 Processor 28 APIC 0x58
[ 547.455930] CPU28 is up
[ 547.455984] smpboot: Booting Node 0 Processor 29 APIC 0x5a
[ 547.464981] CPU29 is up
[ 547.465025] smpboot: Booting Node 0 Processor 30 APIC 0x5c
[ 547.474105] CPU30 is up
[ 547.474149] smpboot: Booting Node 0 Processor 31 APIC 0x5e
[ 547.482160] CPU31 is up
[ 547.498400] ACPI: PM: Waking up from system sleep state S3
[ 547.520016] ACPI: EC: interrupt unblocked
[ 547.760783] thunderbolt 0000:06:00.0: control channel starting...
[ 547.760796] thunderbolt 0000:06:00.0: starting TX ring 0
[ 547.760813] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 547.760819] thunderbolt 0000:06:00.0: starting RX ring 0
[ 547.760829] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 547.760841] thunderbolt 0000:06:00.0: resuming...
[ 547.760844] thunderbolt 0000:06:00.0: 0: resuming switch
[ 547.760848] thunderbolt 0000:06:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[ 547.761110] thunderbolt 0000:06:00.0: 0:1: USB4 wake: no, connection wake: no, disconnection wake: no
[ 547.761354] thunderbolt 0000:06:00.0: 0:3: USB4 wake: no, connection wake: no, disconnection wake: no
[ 547.761373] thunderbolt 0000:06:00.0: 0: disabling wakeup
[ 547.764232] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
[ 547.770380] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
[ 547.770393] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
[ 547.770504] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
[ 547.770512] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[ 547.771015] thunderbolt 0000:06:00.0: 0: TMU: mode set to: bi-directional, HiFi
[ 547.772681] thunderbolt 0000:06:00.0: 0:13: enter redrive mode, keeping powered
[ 547.773320] thunderbolt 0000:06:00.0: 0:14: enter redrive mode, keeping powered
[ 547.773324] thunderbolt 0000:06:00.0: resume finished
[ 547.777468] ACPI: EC: event unblocked
[ 547.781233] xhci_hcd 0000:2d:00.0: xHC error in resume, USBSTS 0x401, Reinit
[ 547.781241] usb usb3: root hub lost power or was reset
[ 547.781244] usb usb4: root hub lost power or was reset
[ 547.783440] pcieport 10000:e0:06.0: can't derive routing for PCI INT A
[ 547.783447] nvme 10000:e1:00.0: PCI INT A: no GSI
[ 547.783531] pcieport 10000:e0:1b.4: can't derive routing for PCI INT A
[ 547.783537] nvme 10000:e2:00.0: PCI INT A: no GSI
[ 547.795596] nvme nvme0: Shutdown timeout set to 10 seconds
[ 547.795803] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/tgl_guc_70.bin version 70.20.0
[ 547.795806] i915 0000:00:02.0: [drm] GT0: HuC firmware i915/tgl_huc.bin version 7.9.3
[ 547.796414] nvme nvme1: Shutdown timeout set to 10 seconds
[ 547.798737] nvme nvme0: 18/0/0 default/read/poll queues
[ 547.800009] nvme nvme1: 18/0/0 default/read/poll queues
[ 547.803993] i915 0000:00:02.0: [drm] GT0: HuC: authenticated for all workloads
[ 547.804685] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
[ 547.804685] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
[ 547.805154] i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
[ 548.037654] tuxedo_keyboard: set_mode on CUSTOM
[ 548.062597] tuxedo_keyboard: Set brightness on 125
[ 548.063812] usb 1-6: reset high-speed USB device number 3 using xhci_hcd
[ 548.069562] tuxedo_keyboard: Set keyboard enabled to: 1
[ 548.312653] usb 1-7: reset full-speed USB device number 4 using xhci_hcd
[ 548.824688] pci_bus 0000:06: Allocating resources
[ 548.824704] pci_bus 0000:2d: Allocating resources
[ 548.824755] pci_bus 0000:06: Allocating resources
[ 548.824767] pci_bus 0000:2d: Allocating resources
[ 548.824729] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
[ 548.825768] mei_pxp 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1: bound 0000:00:02.0 (ops i915_pxp_tee_component_ops [i915])
[ 548.825965] OOM killer enabled.
[ 548.825966] Restarting tasks ... done.
[ 548.826676] random: crng reseeded on system resumption
[ 548.828981] PM: suspend exit
[ 548.828996] thermal thermal_zone8: failed to read out thermal zone (-61)
[ 548.971190] iwlwifi 0000:00:14.3: WRT: Invalid buffer destination
[ 549.127332] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[ 549.127389] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[ 549.127398] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[ 549.127406] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[ 549.128430] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
[ 551.941912] igc 0000:03:00.0 enp3s0: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[ 552.566710] wlp0s20f3: authenticate with a0:55:1f:2f:2c:92 (local address=98:5f:41:dd:bb:cf)
[ 552.567831] wlp0s20f3: send auth to a0:55:1f:2f:2c:92 (try 1/3)
[ 552.600514] wlp0s20f3: authenticated
[ 552.601185] wlp0s20f3: associate with a0:55:1f:2f:2c:92 (try 1/3)
[ 552.603298] wlp0s20f3: RX AssocResp from a0:55:1f:2f:2c:92 (capab=0x1011 status=0 aid=19)
[ 552.609422] wlp0s20f3: associated
[ 552.661499] wlp0s20f3: Limiting TX power to 30 (30 - 0) dBm as advertised by a0:55:1f:2f:2c:92
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-10-11 23:37 ` Aaron Rainbolt
@ 2024-10-23 6:27 ` Mika Westerberg
2024-10-23 7:39 ` Mika Westerberg
0 siblings, 1 reply; 29+ messages in thread
From: Mika Westerberg @ 2024-10-23 6:27 UTC (permalink / raw)
To: Aaron Rainbolt
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
Hi Aaron,
On Fri, Oct 11, 2024 at 06:37:51PM -0500, Aaron Rainbolt wrote:
> Attached are the test results (including dmesg log) after testing with
> our version of the 6.8 kernel with this patch applied. Sadly we didn't
> have time to test with 6.11.2 as the machines we were testing on had to
> be shipped to customers and we found a working stop-gap solution in the
> mean time. The test that we did, along with it's results, are as
> follows:
Thanks for testing!
> 1. Start with Laptop powered-off
> 2. Unplug all USB-C connectors.
> 3. Attempt to update firmware using Windows.
> Version remains 'thunderbolt 0000:06:00.0: 0: NVM version 14.86'
> 4. Boot Kubuntu 24.04 with patched kernel, add cmdline parameter
> thunderbolt.dyndbg=+p Note that a "thunderbolt.kf_force_redrive=1"
> kernel parameter was also included by mistake, but it is ignored in
> this kernel. (That was a leftover of a testing kernel we made.)
> 5. Log in to normal SDDM to KDE 5.27.11.
> 6. Open 'Display Settings KCM' to view display
> detection.
> 7. Plug in 2 x UBC-C connectors attached to 4k displays.
> - Note these work with Kernel 6.1 and non-Barlow Ridge systems (TB
> 4).
> - Displays wake up, but never show graphics signal. They timeout
> and resume powersave mode.
> - Displays never appear in 'Display Settings KCM.'
> - This is NOT desired behavior; displays should show.
Let's stop here so that we deal with one issue at the time. The
corresponding entries in you dmesg are below with my comments. Please
correct me if my analysis does not match your steps.
So here you plug in the first Type-C cable:
> [ 182.118304] thunderbolt 0000:06:00.0: control channel starting...
> [ 182.118314] thunderbolt 0000:06:00.0: starting TX ring 0
> [ 182.118325] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
> [ 182.118329] thunderbolt 0000:06:00.0: starting RX ring 0
> [ 182.118338] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
> [ 182.118348] thunderbolt 0000:06:00.0: 0: resuming switch
> [ 182.118351] thunderbolt 0000:06:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
> [ 182.118608] thunderbolt 0000:06:00.0: 0: disabling wakeup
> [ 182.127404] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
> [ 182.127416] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
> [ 182.127524] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
> [ 182.127527] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
> [ 182.128042] thunderbolt 0000:06:00.0: 0: TMU: mode set to: bi-directional, HiFi
> [ 182.128938] thunderbolt 0000:06:00.0: 0:13: enter redrive mode, keeping powered
We notice this as "redrive" and keep the domain powered.
> [ 182.129059] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
> [ 182.129759] thunderbolt 0000:06:00.0: 0:14: enter redrive mode, keeping powered
We notice the second Type-C connection too.
So at this point the domain keeps powered and if you wait here it should
never runtime suspend because there are two Type-C ports in "redrive"
mode.
> [ 315.601384] thunderbolt 0000:06:00.0: acking hot plug event on 0:14
You unplugged the second monitor.
> [ 315.601762] thunderbolt 0000:06:00.0: 0:14: DP IN resource available after hotplug
> [ 315.602370] thunderbolt 0000:06:00.0: 0:14: exit redrive mode
> [ 315.602375] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
> [ 315.602549] thunderbolt 0000:06:00.0: 0:14: DP IN available
> [ 315.602553] thunderbolt 0000:06:00.0: no suitable DP OUT adapter available, not tunneling
> [ 353.610947] thunderbolt 0000:06:00.0: acking hot plug event on 0:13
And then the first monitor.
> [ 353.611260] thunderbolt 0000:06:00.0: 0:13: DP IN resource available after hotplug
> [ 353.611921] thunderbolt 0000:06:00.0: 0:13: exit redrive mode
So at this point we are not in "redrive" mode anymore and the domain is
allowed to runtime suspend.
> [ 353.611933] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
> [ 353.612076] thunderbolt 0000:06:00.0: 0:14: DP IN available
> [ 353.612258] thunderbolt 0000:06:00.0: 0:13: DP IN available
> [ 353.612264] thunderbolt 0000:06:00.0: no suitable DP OUT adapter available, not tunneling
> [ 372.362496] thunderbolt 0000:06:00.0: 0: suspending switch
> [ 372.362506] thunderbolt 0000:06:00.0: 0: enabling wakeup: 0x3f
> [ 372.363480] thunderbolt 0000:06:00.0: stopping RX ring 0
> [ 372.363497] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
> [ 372.363523] thunderbolt 0000:06:00.0: stopping TX ring 0
> [ 372.363539] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
> [ 372.363558] thunderbolt 0000:06:00.0: control channel stopped
Which is what happens here.
I think the driver does the correct thing but why you don't see anything
in the screen is beyond me. Can reproduce just this case with the patch
and then run "xrandr" and see if the monitors are visible there?
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-10-23 6:27 ` Mika Westerberg
@ 2024-10-23 7:39 ` Mika Westerberg
2024-10-23 22:44 ` Aaron Rainbolt
0 siblings, 1 reply; 29+ messages in thread
From: Mika Westerberg @ 2024-10-23 7:39 UTC (permalink / raw)
To: Aaron Rainbolt
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
On Wed, Oct 23, 2024 at 09:27:37AM +0300, Mika Westerberg wrote:
> So at this point we are not in "redrive" mode anymore and the domain is
> allowed to runtime suspend.
>
> > [ 353.611933] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
> > [ 353.612076] thunderbolt 0000:06:00.0: 0:14: DP IN available
> > [ 353.612258] thunderbolt 0000:06:00.0: 0:13: DP IN available
> > [ 353.612264] thunderbolt 0000:06:00.0: no suitable DP OUT adapter available, not tunneling
> > [ 372.362496] thunderbolt 0000:06:00.0: 0: suspending switch
> > [ 372.362506] thunderbolt 0000:06:00.0: 0: enabling wakeup: 0x3f
> > [ 372.363480] thunderbolt 0000:06:00.0: stopping RX ring 0
> > [ 372.363497] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
> > [ 372.363523] thunderbolt 0000:06:00.0: stopping TX ring 0
> > [ 372.363539] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
> > [ 372.363558] thunderbolt 0000:06:00.0: control channel stopped
>
> Which is what happens here.
>
> I think the driver does the correct thing but why you don't see anything
> in the screen is beyond me. Can reproduce just this case with the patch
> and then run "xrandr" and see if the monitors are visible there?
The other option is that there is no wake when you plugged in the
monitors and it only wakes up when you did this:
> 8. Open a terminal and run 'lspci -k'
> - Both displays are activated and remain active.
> - There is no timeout.
> - This is desired behavior.
There is one such wake in the dmesg, this:
[ 60.126328] thunderbolt 0000:06:00.0: control channel starting...
[ 60.126332] thunderbolt 0000:06:00.0: starting TX ring 0
[ 60.126337] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 60.126339] thunderbolt 0000:06:00.0: starting RX ring 0
[ 60.126344] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 60.126347] thunderbolt 0000:06:00.0: 0: resuming switch
[ 60.126348] thunderbolt 0000:06:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[ 60.128535] thunderbolt 0000:06:00.0: 0: disabling wakeup
[ 60.129481] thunderbolt 0000:06:00.0: acking hot plug event on 0:13
[ 60.129601] thunderbolt 0000:06:00.0: acking hot plug event on 0:14
[ 60.129730] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
but here we get plug event for all the DP IN adapters (13, 14, 16) which
tells me that there is nothing connected to the Type-C ports. Otherwise
it would not send the plug event. This may be due the older firmware.
[ 60.137467] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
[ 60.137478] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
[ 60.137589] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
[ 60.137591] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[ 60.138102] thunderbolt 0000:06:00.0: 0: TMU: mode set to: bi-directional, HiFi
[ 60.139778] thunderbolt 0000:06:00.0: 0:13: DP IN resource available after hotplug
[ 60.139783] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 60.139895] thunderbolt 0000:06:00.0: 0:13: DP IN available
[ 60.139896] thunderbolt 0000:06:00.0: no suitable DP OUT adapter available, not tunneling
[ 60.140018] thunderbolt 0000:06:00.0: 0:14: DP IN resource available after hotplug
[ 60.140021] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 60.140145] thunderbolt 0000:06:00.0: 0:13: DP IN available
[ 60.140277] thunderbolt 0000:06:00.0: 0:14: DP IN available
[ 60.140278] thunderbolt 0000:06:00.0: no suitable DP OUT adapter available, not tunneling
[ 78.863111] thunderbolt 0000:06:00.0: 0: suspending switch
[ 78.863125] thunderbolt 0000:06:00.0: 0: enabling wakeup: 0x3f
[ 78.864812] thunderbolt 0000:06:00.0: stopping RX ring 0
[ 78.864825] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[ 78.864849] thunderbolt 0000:06:00.0: stopping TX ring 0
[ 78.864857] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[ 78.864870] thunderbolt 0000:06:00.0: control channel stopped
There is no unplug at all here so the domain can go back to runtime
suspend.
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-10-23 7:39 ` Mika Westerberg
@ 2024-10-23 22:44 ` Aaron Rainbolt
2024-10-24 15:43 ` Mika Westerberg
0 siblings, 1 reply; 29+ messages in thread
From: Aaron Rainbolt @ 2024-10-23 22:44 UTC (permalink / raw)
To: Mika Westerberg
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
[-- Attachment #1: Type: text/plain, Size: 6855 bytes --]
On Wed, 23 Oct 2024 10:39:31 +0300
Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
> On Wed, Oct 23, 2024 at 09:27:37AM +0300, Mika Westerberg wrote:
> > So at this point we are not in "redrive" mode anymore and the
> > domain is allowed to runtime suspend.
> >
> > > [ 353.611933] thunderbolt 0000:06:00.0: looking for DP IN <-> DP
> > > OUT pairs: [ 353.612076] thunderbolt 0000:06:00.0: 0:14: DP IN
> > > available [ 353.612258] thunderbolt 0000:06:00.0: 0:13: DP IN
> > > available [ 353.612264] thunderbolt 0000:06:00.0: no suitable DP
> > > OUT adapter available, not tunneling [ 372.362496] thunderbolt
> > > 0000:06:00.0: 0: suspending switch [ 372.362506] thunderbolt
> > > 0000:06:00.0: 0: enabling wakeup: 0x3f [ 372.363480] thunderbolt
> > > 0000:06:00.0: stopping RX ring 0 [ 372.363497] thunderbolt
> > > 0000:06:00.0: disabling interrupt at register 0x38200 bit 12
> > > (0x1001 -> 0x1) [ 372.363523] thunderbolt 0000:06:00.0: stopping
> > > TX ring 0 [ 372.363539] thunderbolt 0000:06:00.0: disabling
> > > interrupt at register 0x38200 bit 0 (0x1 -> 0x0) [ 372.363558]
> > > thunderbolt 0000:06:00.0: control channel stopped
> >
> > Which is what happens here.
> >
> > I think the driver does the correct thing but why you don't see
> > anything in the screen is beyond me. Can reproduce just this case
> > with the patch and then run "xrandr" and see if the monitors are
> > visible there?
>
> The other option is that there is no wake when you plugged in the
> monitors and it only wakes up when you did this:
>
> > 8. Open a terminal and run 'lspci -k'
> > - Both displays are activated and remain active.
> > - There is no timeout.
> > - This is desired behavior.
>
> There is one such wake in the dmesg, this:
>
> [ 60.126328] thunderbolt 0000:06:00.0: control channel starting...
> [ 60.126332] thunderbolt 0000:06:00.0: starting TX ring 0
> [ 60.126337] thunderbolt 0000:06:00.0: enabling interrupt at
> register 0x38200 bit 0 (0x0 -> 0x1) [ 60.126339] thunderbolt
> 0000:06:00.0: starting RX ring 0 [ 60.126344] thunderbolt
> 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 ->
> 0x1001) [ 60.126347] thunderbolt 0000:06:00.0: 0: resuming switch [
> 60.126348] thunderbolt 0000:06:00.0: restoring Switch at 0x0
> (depth: 0, up port: 15) [ 60.128535] thunderbolt 0000:06:00.0: 0:
> disabling wakeup [ 60.129481] thunderbolt 0000:06:00.0: acking hot
> plug event on 0:13 [ 60.129601] thunderbolt 0000:06:00.0: acking
> hot plug event on 0:14 [ 60.129730] thunderbolt 0000:06:00.0:
> acking hot plug event on 0:16
>
> but here we get plug event for all the DP IN adapters (13, 14, 16)
> which tells me that there is nothing connected to the Type-C ports.
> Otherwise it would not send the plug event. This may be due the older
> firmware.
>
> [ 60.137467] thunderbolt 0000:06:00.0: 0: TMU: supports
> uni-directional mode [ 60.137478] thunderbolt 0000:06:00.0: 0: TMU:
> supports enhanced uni-directional mode [ 60.137589] thunderbolt
> 0000:06:00.0: 0: TMU: current mode: off [ 60.137591] thunderbolt
> 0000:06:00.0: 0: TMU: mode change off -> bi-directional, HiFi
> requested [ 60.138102] thunderbolt 0000:06:00.0: 0: TMU: mode set
> to: bi-directional, HiFi [ 60.139778] thunderbolt 0000:06:00.0:
> 0:13: DP IN resource available after hotplug [ 60.139783]
> thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs: [
> 60.139895] thunderbolt 0000:06:00.0: 0:13: DP IN available [
> 60.139896] thunderbolt 0000:06:00.0: no suitable DP OUT adapter
> available, not tunneling [ 60.140018] thunderbolt 0000:06:00.0:
> 0:14: DP IN resource available after hotplug [ 60.140021]
> thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs: [
> 60.140145] thunderbolt 0000:06:00.0: 0:13: DP IN available [
> 60.140277] thunderbolt 0000:06:00.0: 0:14: DP IN available [
> 60.140278] thunderbolt 0000:06:00.0: no suitable DP OUT adapter
> available, not tunneling [ 78.863111] thunderbolt 0000:06:00.0: 0:
> suspending switch [ 78.863125] thunderbolt 0000:06:00.0: 0:
> enabling wakeup: 0x3f [ 78.864812] thunderbolt 0000:06:00.0:
> stopping RX ring 0 [ 78.864825] thunderbolt 0000:06:00.0: disabling
> interrupt at register 0x38200 bit 12 (0x1001 -> 0x1) [ 78.864849]
> thunderbolt 0000:06:00.0: stopping TX ring 0 [ 78.864857]
> thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit
> 0 (0x1 -> 0x0) [ 78.864870] thunderbolt 0000:06:00.0: control
> channel stopped
>
> There is no unplug at all here so the domain can go back to runtime
> suspend.
Hey, thanks for taking a look! Our tester re-did the tests with kernel
6.12~rc4, and reported the following results doing so, along with
another dmesg log. I think your question about xrandr is answered in
this report. The dmesg log is attached.
With the vanilla rc4 kernel plus your patch from earlier:
-----
1. Start with Laptop powered-off
2. Unplug all USB-C connectors.
3. Boot Kubuntu 24.04 with patched kernel 6.12.0-rc4, add cmdline
parameter thunderbolt.dyndbg=+p. All other optional parameters were
removed.
4. Log in to normal SDDM to KDE 5.27.11.
5. Open 'Display Settings KCM' to view display detection.
6. Plug in one UBC-C connector attached to 4k display.
* Note these work with Kernel 6.1 and non-Barlow Ridge systems (TBT
4).
* Display does not wake up.
* Display never appears in 'Display Settings KCM.'
* This is NOT desired behavior; display should show.
* (Note: The test results I was given do not mention xrandr here,
however as subsequent results mention it I believe that the
monitor does *not* appear in xrandr here. I will double-check
to be sure.)
7. Open a terminal and run 'lspci -k'
* Display is activated and remains active. There is a checkerboard
pattern pattern of where 50% of pixels are black. Probably
caused by Nouveau.
* There is no timeout.
* Device is shown in xrandr --listmonitors
* This is desired behavior (except for checkerboard)
8. Plug in secone UBC-C connector attached to 4k display.
* Display is activated and remains active
* Device is shown in xrandr --listmonitors
* This is desired behavior (except for checkerboard)
Notes:
1. With debug off, the recognition of screens is better, and previously
"just worked", at least for one screen.
2. W11 updated works, as do kernels Kernels 6.1 and earlier.
3. W11 from Q4 2022 (pre-update) and kernels 6.5+ do not. With both,
the screens usually initially attach and then time out after 15s.
-----
Looking at what you describe, it sounds like we should pursue trying to
update the firmware to see if that resolves the issue in combination
with the patch. I'm not entirely sure if it will be possible to do
that, but I'll see if our ODM can help us with that.
[-- Attachment #2: 2024-10-23_6.12.0-rc4_dmesg_barlow-ridge-tbt.log --]
[-- Type: text/x-log, Size: 119317 bytes --]
[ 0.000000] Linux version 6.12.0-rc4 (qa@qa-m2) (gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #1 SMP PREEMPT_DYNAMIC Tue Oct 22 11:01:01 PDT 2024
[ 0.000000] Command line: BOOT_IMAGE=/@boot/vmlinuz-6.12.0-rc4 root=UUID=aa8cb093-9cb3-4cc7-b44e-4bff76ca37fb ro rootflags=subvol=@ quiet cryptdevice=UUID=1a8d8cdb-8d8f-4689-b744-8f32d2067f56:luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 root=/dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 splash thunderbolt.dyndbg=+p vt.handoff=7
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Hygon HygonGenuine
[ 0.000000] Centaur CentaurHauls
[ 0.000000] zhaoxin Shanghai
[ 0.000000] x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000002c228fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000002c229000-0x000000002cb28fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000002cb29000-0x000000002e93efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000002e93f000-0x00000000309defff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000309df000-0x000000003398efff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000003398f000-0x0000000033afefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x0000000033aff000-0x0000000033afffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000033b00000-0x00000000383fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000038e00000-0x00000000407fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000008bf7fffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] efi: EFI v2.8 by INSYDE Corp.
[ 0.000000] efi: ACPI=0x33afe000 ACPI 2.0=0x33afe014 TPMFinalLog=0x33866000 SMBIOS=0x2efda000 MEMATTR=0x26ca0018 ESRT=0x28a1e018 MOKvar=0x2ef86000 INITRD=0x27d91418 RNG=0x33a24018 TPMEventLog=0x33a17018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem90: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0xc0000000-0xcfffffff] reserved
[ 0.000000] efi: Remove mem92: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] SMBIOS 3.4 present.
[ 0.000000] DMI: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 0.000000] DMI: Memory slots populated: 2/2
[ 0.000000] tsc: Detected 2400.000 MHz processor
[ 0.000000] tsc: Detected 2419.200 MHz TSC
[ 0.000007] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000011] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000019] last_pfn = 0x8bf800 max_arch_pfn = 0x400000000
[ 0.000025] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
[ 0.000027] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000743] last_pfn = 0x33b00 max_arch_pfn = 0x400000000
[ 0.009631] esrt: Reserving ESRT space from 0x0000000028a1e018 to 0x0000000028a1e0a0.
[ 0.009639] e820: update [mem 0x28a1e000-0x28a1efff] usable ==> reserved
[ 0.009662] Using GB pages for direct mapping
[ 0.009663] Incomplete global flushes, disabling PCID
[ 0.010001] Secure boot disabled
[ 0.010002] RAMDISK: [mem 0x17b00000-0x1c3eefff]
[ 0.010078] ACPI: Early table checksum verification disabled
[ 0.010082] ACPI: RSDP 0x0000000033AFE014 000024 (v02 INSYDE)
[ 0.010088] ACPI: XSDT 0x0000000033A38188 00012C (v01 INSYDE ADL 00000002 01000013)
[ 0.010096] ACPI: FACP 0x0000000033ADB000 000114 (v06 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010103] ACPI: DSDT 0x0000000033A4E000 089652 (v02 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010107] ACPI: FACS 0x000000003383E000 000040
[ 0.010111] ACPI: UEFI 0x000000003398E000 0001CF (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
[ 0.010115] ACPI: SSDT 0x0000000033AF3000 00908F (v02 DptfTb DptfTabl 00001000 INTL 20200717)
[ 0.010119] ACPI: SSDT 0x0000000033AED000 005D34 (v02 CpuRef CpuSsdt 00003000 INTL 20200717)
[ 0.010123] ACPI: SSDT 0x0000000033AEA000 00276F (v02 SaSsdt SaSsdt 00003000 INTL 20200717)
[ 0.010127] ACPI: SSDT 0x0000000033AE6000 00328B (v02 INTEL IgfxSsdt 00003000 INTL 20200717)
[ 0.010131] ACPI: SSDT 0x0000000033AE5000 00077B (v02 INSYDE Tpm2Tabl 00001000 INTL 20200717)
[ 0.010135] ACPI: TPM2 0x0000000033AE4000 00004C (v04 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010139] ACPI: SSDT 0x0000000033ADF000 003249 (v02 INTEL DTbtSsdt 00001000 INTL 20200717)
[ 0.010142] ACPI: SSDT 0x0000000033ADD000 0016A6 (v02 INSYDE UsbCTabl 00001000 INTL 20200717)
[ 0.010146] ACPI: NHLT 0x0000000033ADC000 00002D (v00 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010150] ACPI: HPET 0x0000000033ADA000 000038 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010154] ACPI: APIC 0x0000000033AD9000 0001DC (v05 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010157] ACPI: MCFG 0x0000000033AD8000 00003C (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010161] ACPI: SSDT 0x0000000033A48000 0054E4 (v02 INSYDE ADL 00000002 01000013)
[ 0.010165] ACPI: WSMT 0x0000000033A47000 000028 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010169] ACPI: SSDT 0x0000000033A45000 0015FD (v02 INSYDE PtidDevc 00001000 INTL 20200717)
[ 0.010172] ACPI: SSDT 0x0000000033A3B000 009573 (v02 INSYDE TbtTypeC 00000000 INTL 20200717)
[ 0.010176] ACPI: DBGP 0x0000000033A3A000 000034 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010180] ACPI: DBG2 0x0000000033A39000 000054 (v00 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010184] ACPI: DMAR 0x0000000033AFD000 000088 (v01 INTEL ICL 00000002 ACPI 00040000)
[ 0.010187] ACPI: SSDT 0x0000000033A35000 002EE7 (v01 NvdRef NvdTabl 00001000 INTL 20200717)
[ 0.010191] ACPI: SSDT 0x0000000033A34000 000244 (v01 NvdRef NvdExt 00001000 INTL 20200717)
[ 0.010195] ACPI: SSDT 0x0000000033A33000 000640 (v01 NvdRef NvdDds 00001000 INTL 20200717)
[ 0.010199] ACPI: UEFI 0x000000003383B000 00063A (v01 INTEL RstVmdE 00000000 ACPI 00040000)
[ 0.010203] ACPI: UEFI 0x000000003383A000 00005C (v01 INTEL RstVmdV 00000000 ACPI 00040000)
[ 0.010207] ACPI: SSDT 0x0000000033A31000 001057 (v02 INTEL xh_rplsb 00000000 INTL 20200717)
[ 0.010211] ACPI: SSDT 0x0000000033A2D000 0039DA (v02 SocGpe SocGpe 00003000 INTL 20200717)
[ 0.010215] ACPI: SSDT 0x0000000033A29000 0039DA (v02 SocCmn SocCmn 00003000 INTL 20200717)
[ 0.010218] ACPI: SSDT 0x0000000033A28000 0000F8 (v02 INSYDE PcdTabl 00001000 INTL 20200717)
[ 0.010222] ACPI: FPDT 0x0000000033A27000 000044 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010226] ACPI: PHAT 0x0000000033A25000 0005ED (v01 INSYDE ADL 00000005 ACPI 00040000)
[ 0.010230] ACPI: BGRT 0x0000000033A26000 000038 (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
[ 0.010233] ACPI: Reserving FACP table memory at [mem 0x33adb000-0x33adb113]
[ 0.010235] ACPI: Reserving DSDT table memory at [mem 0x33a4e000-0x33ad7651]
[ 0.010237] ACPI: Reserving FACS table memory at [mem 0x3383e000-0x3383e03f]
[ 0.010238] ACPI: Reserving UEFI table memory at [mem 0x3398e000-0x3398e1ce]
[ 0.010239] ACPI: Reserving SSDT table memory at [mem 0x33af3000-0x33afc08e]
[ 0.010240] ACPI: Reserving SSDT table memory at [mem 0x33aed000-0x33af2d33]
[ 0.010241] ACPI: Reserving SSDT table memory at [mem 0x33aea000-0x33aec76e]
[ 0.010243] ACPI: Reserving SSDT table memory at [mem 0x33ae6000-0x33ae928a]
[ 0.010244] ACPI: Reserving SSDT table memory at [mem 0x33ae5000-0x33ae577a]
[ 0.010245] ACPI: Reserving TPM2 table memory at [mem 0x33ae4000-0x33ae404b]
[ 0.010246] ACPI: Reserving SSDT table memory at [mem 0x33adf000-0x33ae2248]
[ 0.010247] ACPI: Reserving SSDT table memory at [mem 0x33add000-0x33ade6a5]
[ 0.010248] ACPI: Reserving NHLT table memory at [mem 0x33adc000-0x33adc02c]
[ 0.010249] ACPI: Reserving HPET table memory at [mem 0x33ada000-0x33ada037]
[ 0.010249] ACPI: Reserving APIC table memory at [mem 0x33ad9000-0x33ad91db]
[ 0.010250] ACPI: Reserving MCFG table memory at [mem 0x33ad8000-0x33ad803b]
[ 0.010251] ACPI: Reserving SSDT table memory at [mem 0x33a48000-0x33a4d4e3]
[ 0.010252] ACPI: Reserving WSMT table memory at [mem 0x33a47000-0x33a47027]
[ 0.010253] ACPI: Reserving SSDT table memory at [mem 0x33a45000-0x33a465fc]
[ 0.010254] ACPI: Reserving SSDT table memory at [mem 0x33a3b000-0x33a44572]
[ 0.010255] ACPI: Reserving DBGP table memory at [mem 0x33a3a000-0x33a3a033]
[ 0.010256] ACPI: Reserving DBG2 table memory at [mem 0x33a39000-0x33a39053]
[ 0.010257] ACPI: Reserving DMAR table memory at [mem 0x33afd000-0x33afd087]
[ 0.010257] ACPI: Reserving SSDT table memory at [mem 0x33a35000-0x33a37ee6]
[ 0.010258] ACPI: Reserving SSDT table memory at [mem 0x33a34000-0x33a34243]
[ 0.010259] ACPI: Reserving SSDT table memory at [mem 0x33a33000-0x33a3363f]
[ 0.010260] ACPI: Reserving UEFI table memory at [mem 0x3383b000-0x3383b639]
[ 0.010261] ACPI: Reserving UEFI table memory at [mem 0x3383a000-0x3383a05b]
[ 0.010262] ACPI: Reserving SSDT table memory at [mem 0x33a31000-0x33a32056]
[ 0.010263] ACPI: Reserving SSDT table memory at [mem 0x33a2d000-0x33a309d9]
[ 0.010264] ACPI: Reserving SSDT table memory at [mem 0x33a29000-0x33a2c9d9]
[ 0.010265] ACPI: Reserving SSDT table memory at [mem 0x33a28000-0x33a280f7]
[ 0.010266] ACPI: Reserving FPDT table memory at [mem 0x33a27000-0x33a27043]
[ 0.010267] ACPI: Reserving PHAT table memory at [mem 0x33a25000-0x33a255ec]
[ 0.010267] ACPI: Reserving BGRT table memory at [mem 0x33a26000-0x33a26037]
[ 0.010508] No NUMA configuration found
[ 0.010509] Faking a node at [mem 0x0000000000000000-0x00000008bf7fffff]
[ 0.010518] NODE_DATA(0) allocated [mem 0x8bf7d5680-0x8bf7fffff]
[ 0.010791] Zone ranges:
[ 0.010791] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.010794] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.010796] Normal [mem 0x0000000100000000-0x00000008bf7fffff]
[ 0.010797] Device empty
[ 0.010798] Movable zone start for each node
[ 0.010800] Early memory node ranges
[ 0.010800] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.010802] node 0: [mem 0x0000000000100000-0x000000002c228fff]
[ 0.010803] node 0: [mem 0x000000002cb29000-0x000000002e93efff]
[ 0.010804] node 0: [mem 0x0000000033aff000-0x0000000033afffff]
[ 0.010805] node 0: [mem 0x0000000100000000-0x00000008bf7fffff]
[ 0.010809] Initmem setup node 0 [mem 0x0000000000001000-0x00000008bf7fffff]
[ 0.010816] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.010841] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.011949] On node 0, zone DMA32: 2304 pages in unavailable ranges
[ 0.012139] On node 0, zone DMA32: 20928 pages in unavailable ranges
[ 0.055456] On node 0, zone Normal: 17664 pages in unavailable ranges
[ 0.055473] On node 0, zone Normal: 2048 pages in unavailable ranges
[ 0.055544] Reserving Intel graphics memory at [mem 0x3c800000-0x407fffff]
[ 0.056176] ACPI: PM-Timer IO Port: 0x1808
[ 0.056189] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.056191] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.056192] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.056192] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.056193] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.056194] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.056194] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.056195] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.056196] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[ 0.056196] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[ 0.056197] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[ 0.056198] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[ 0.056198] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[ 0.056199] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[ 0.056200] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[ 0.056200] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[ 0.056201] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[ 0.056202] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[ 0.056202] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[ 0.056203] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[ 0.056204] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[ 0.056204] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[ 0.056205] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[ 0.056206] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.056245] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.056249] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.056251] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.056256] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.056257] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.056266] e820: update [mem 0x26cdf000-0x26d99fff] usable ==> reserved
[ 0.056283] TSC deadline timer available
[ 0.056286] CPU topo: Max. logical packages: 1
[ 0.056287] CPU topo: Max. logical dies: 1
[ 0.056288] CPU topo: Max. dies per package: 1
[ 0.056291] CPU topo: Max. threads per core: 2
[ 0.056292] CPU topo: Num. cores per package: 24
[ 0.056293] CPU topo: Num. threads per package: 32
[ 0.056293] CPU topo: Allowing 32 present CPUs plus 0 hotplug CPUs
[ 0.056309] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.056312] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[ 0.056313] PM: hibernation: Registered nosave memory: [mem 0x26cdf000-0x26d99fff]
[ 0.056315] PM: hibernation: Registered nosave memory: [mem 0x28a1e000-0x28a1efff]
[ 0.056316] PM: hibernation: Registered nosave memory: [mem 0x2c229000-0x2cb28fff]
[ 0.056318] PM: hibernation: Registered nosave memory: [mem 0x2e93f000-0x309defff]
[ 0.056319] PM: hibernation: Registered nosave memory: [mem 0x309df000-0x3398efff]
[ 0.056319] PM: hibernation: Registered nosave memory: [mem 0x3398f000-0x33afefff]
[ 0.056321] PM: hibernation: Registered nosave memory: [mem 0x33b00000-0x383fffff]
[ 0.056322] PM: hibernation: Registered nosave memory: [mem 0x38400000-0x38dfffff]
[ 0.056322] PM: hibernation: Registered nosave memory: [mem 0x38e00000-0x407fffff]
[ 0.056323] PM: hibernation: Registered nosave memory: [mem 0x40800000-0xfed1ffff]
[ 0.056324] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
[ 0.056324] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xffffffff]
[ 0.056326] [mem 0x40800000-0xfed1ffff] available for PCI devices
[ 0.056327] Booting paravirtualized kernel on bare hardware
[ 0.056330] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.056347] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1
[ 0.058265] percpu: Embedded 88 pages/cpu s237568 r8192 d114688 u524288
[ 0.058272] pcpu-alloc: s237568 r8192 d114688 u524288 alloc=1*2097152
[ 0.058274] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07
[ 0.058279] pcpu-alloc: [0] 08 09 10 11 [0] 12 13 14 15
[ 0.058283] pcpu-alloc: [0] 16 17 18 19 [0] 20 21 22 23
[ 0.058286] pcpu-alloc: [0] 24 25 26 27 [0] 28 29 30 31
[ 0.058307] Kernel command line: BOOT_IMAGE=/@boot/vmlinuz-6.12.0-rc4 root=UUID=aa8cb093-9cb3-4cc7-b44e-4bff76ca37fb ro rootflags=subvol=@ quiet cryptdevice=UUID=1a8d8cdb-8d8f-4689-b744-8f32d2067f56:luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 root=/dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 splash thunderbolt.dyndbg=+p vt.handoff=7
[ 0.058412] Unknown kernel command line parameters "splash BOOT_IMAGE=/@boot/vmlinuz-6.12.0-rc4 cryptdevice=UUID=1a8d8cdb-8d8f-4689-b744-8f32d2067f56:luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56", will be passed to user space.
[ 0.061068] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[ 0.062385] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.062785] Fallback order for Node 0: 0
[ 0.062789] Built 1 zonelists, mobility grouping on. Total pages: 8312798
[ 0.062791] Policy zone: Normal
[ 0.062799] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.062807] software IO TLB: area num 32.
[ 0.135169] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[ 0.135249] ftrace: allocating 56190 entries in 220 pages
[ 0.145298] ftrace: allocated 220 pages with 5 groups
[ 0.146122] Dynamic Preempt: voluntary
[ 0.146307] rcu: Preemptible hierarchical RCU implementation.
[ 0.146308] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=32.
[ 0.146309] Trampoline variant of Tasks RCU enabled.
[ 0.146310] Rude variant of Tasks RCU enabled.
[ 0.146310] Tracing variant of Tasks RCU enabled.
[ 0.146311] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[ 0.146312] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[ 0.146334] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
[ 0.146337] RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
[ 0.146340] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
[ 0.149410] NR_IRQS: 524544, nr_irqs: 2312, preallocated irqs: 16
[ 0.149775] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.150045] Console: colour dummy device 80x25
[ 0.150048] printk: legacy console [tty0] enabled
[ 0.150113] ACPI: Core revision 20240827
[ 0.150600] hpet: HPET dysfunctional in PC10. Force disabled.
[ 0.150656] APIC: Switch to symmetric I/O mode setup
[ 0.150659] DMAR: Host address width 39
[ 0.150660] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[ 0.150673] DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
[ 0.150676] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.150682] DMAR: dmar1: reg_base_addr fed91000 ver 5:0 cap d2008c40660462 ecap f050da
[ 0.150684] DMAR: RMRR base: 0x0000003c000000 end: 0x000000407fffff
[ 0.150688] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
[ 0.150690] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.150691] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.152605] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.152608] x2apic enabled
[ 0.152678] APIC: Switched APIC routing to: cluster x2apic
[ 0.157474] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
[ 0.157482] Calibrating delay loop (skipped), value calculated using timer frequency.. 4838.40 BogoMIPS (lpj=2419200)
[ 0.157552] CPU0: Thermal monitoring enabled (TM1)
[ 0.157554] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[ 0.157716] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[ 0.157717] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[ 0.157721] process: using mwait in idle threads
[ 0.157724] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.157727] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[ 0.157728] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.157729] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[ 0.157731] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.157733] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.157735] Register File Data Sampling: Mitigation: Clear Register File
[ 0.157751] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.157753] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.157754] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.157755] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[ 0.157756] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[ 0.157758] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.157759] x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8
[ 0.157761] x86/fpu: xstate_offset[11]: 840, xstate_sizes[11]: 16
[ 0.157762] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[ 0.158479] Freeing SMP alternatives memory: 48K
[ 0.158479] pid_max: default: 32768 minimum: 301
[ 0.158479] LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,ima,evm
[ 0.158479] landlock: Up and running.
[ 0.158479] Yama: becoming mindful.
[ 0.158479] AppArmor: AppArmor initialized
[ 0.158479] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.158479] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.158479] smpboot: CPU0: Intel(R) Core(TM) i9-14900HX (family: 0x6, model: 0xb7, stepping: 0x1)
[ 0.158479] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline, AnyThread deprecated, Alderlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.158479] core: cpu_core PMU driver:
[ 0.158479] ... version: 5
[ 0.158479] ... bit width: 48
[ 0.158479] ... generic registers: 8
[ 0.158479] ... value mask: 0000ffffffffffff
[ 0.158479] ... max period: 00007fffffffffff
[ 0.158479] ... fixed-purpose events: 4
[ 0.158479] ... event mask: 0001000f000000ff
[ 0.158479] signal: max sigframe size: 3632
[ 0.158479] Estimated ratio of average max frequency by base frequency (times 1024): 2218
[ 0.158479] rcu: Hierarchical SRCU implementation.
[ 0.158479] rcu: Max phase no-delay instances is 400.
[ 0.158479] Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
[ 0.160047] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.160322] smp: Bringing up secondary CPUs ...
[ 0.160423] smpboot: x86: Booting SMP configuration:
[ 0.160425] .... node #0, CPUs: #2 #4 #6 #8 #10 #12 #14 #16 #17 #18 #19 #20 #21 #22 #23 #24 #25 #26 #27 #28 #29 #30 #31
[ 0.008526] core: cpu_atom PMU driver: PEBS-via-PT
[ 0.008526] ... version: 5
[ 0.008526] ... bit width: 48
[ 0.008526] ... generic registers: 6
[ 0.008526] ... value mask: 0000ffffffffffff
[ 0.008526] ... max period: 00007fffffffffff
[ 0.008526] ... fixed-purpose events: 3
[ 0.008526] ... event mask: 000000070000003f
[ 0.200520] #1 #3 #5 #7 #9 #11 #13 #15
[ 0.218568] smp: Brought up 1 node, 32 CPUs
[ 0.218568] smpboot: Total of 32 processors activated (154828.80 BogoMIPS)
[ 0.219851] Memory: 32426288K/33251192K available (22528K kernel code, 4585K rwdata, 14292K rodata, 5064K init, 4492K bss, 776764K reserved, 0K cma-reserved)
[ 0.220771] devtmpfs: initialized
[ 0.220771] x86/mm: Memory block size: 128MB
[ 0.224087] ACPI: PM: Registering ACPI NVS region [mem 0x309df000-0x3398efff] (50003968 bytes)
[ 0.224639] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.224692] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[ 0.224815] pinctrl core: initialized pinctrl subsystem
[ 0.225065] PM: RTC time: 16:21:13, date: 2024-10-23
[ 0.225641] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.226182] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[ 0.226566] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.226958] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.226969] audit: initializing netlink subsys (disabled)
[ 0.226981] audit: type=2000 audit(1729700472.069:1): state=initialized audit_enabled=0 res=1
[ 0.226981] thermal_sys: Registered thermal governor 'fair_share'
[ 0.226981] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.226981] thermal_sys: Registered thermal governor 'step_wise'
[ 0.226981] thermal_sys: Registered thermal governor 'user_space'
[ 0.226981] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.226981] EISA bus registered
[ 0.226981] cpuidle: using governor ladder
[ 0.226981] cpuidle: using governor menu
[ 0.226981] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.227593] PCI: ECAM [mem 0xc0000000-0xce0fffff] (base 0xc0000000) for domain 0000 [bus 00-e0]
[ 0.227608] PCI: Using configuration type 1 for base access
[ 0.227766] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.227771] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.227771] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.227771] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.227771] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.228627] ACPI: Added _OSI(Module Device)
[ 0.228629] ACPI: Added _OSI(Processor Device)
[ 0.228631] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.228633] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.371418] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.MHBR], AE_NOT_FOUND (20240827/psargs-332)
[ 0.371432] ACPI: Ignoring error and continuing table load
[ 0.371457] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PTID.PBAR], AE_NOT_FOUND (20240827/dsfield-500)
[ 0.379469] ACPI: 18 ACPI AML tables successfully acquired and loaded
[ 0.398831] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
[ 0.398834] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
[ 0.400690] ACPI: Dynamic OEM Table Load:
[ 0.400704] ACPI: SSDT 0xFFFF9CDB83E20800 000394 (v02 PmRef Cpu0Cst 00003001 INTL 20200717)
[ 0.402583] ACPI: Dynamic OEM Table Load:
[ 0.402591] ACPI: SSDT 0xFFFF9CDB83E29000 00053F (v02 PmRef Cpu0Ist 00003000 INTL 20200717)
[ 0.404472] ACPI: Dynamic OEM Table Load:
[ 0.404479] ACPI: SSDT 0xFFFF9CDB83DB1C00 0001AB (v02 PmRef Cpu0Psd 00003000 INTL 20200717)
[ 0.406262] ACPI: Dynamic OEM Table Load:
[ 0.406269] ACPI: SSDT 0xFFFF9CDB83E2A000 0004B5 (v02 PmRef Cpu0Hwp 00003000 INTL 20200717)
[ 0.408671] ACPI: Dynamic OEM Table Load:
[ 0.408691] ACPI: SSDT 0xFFFF9CDB83E30000 001BAF (v02 PmRef ApIst 00003000 INTL 20200717)
[ 0.411482] ACPI: Dynamic OEM Table Load:
[ 0.411490] ACPI: SSDT 0xFFFF9CDB83E34000 001038 (v02 PmRef ApHwp 00003000 INTL 20200717)
[ 0.414008] ACPI: Dynamic OEM Table Load:
[ 0.414017] ACPI: SSDT 0xFFFF9CDB83E36000 001349 (v02 PmRef ApPsd 00003000 INTL 20200717)
[ 0.416558] ACPI: Dynamic OEM Table Load:
[ 0.416567] ACPI: SSDT 0xFFFF9CDB83E45000 000FBB (v02 PmRef ApCst 00003000 INTL 20200717)
[ 0.436196] ACPI: EC: EC started
[ 0.436198] ACPI: EC: interrupt blocked
[ 0.453333] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.453336] ACPI: \_SB_.PC00.LPCB.EC__: Boot DSDT EC used to handle transactions
[ 0.453338] ACPI: Interpreter enabled
[ 0.453429] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.453430] ACPI: Using IOAPIC for interrupt routing
[ 0.455876] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.455877] PCI: Ignoring E820 reservations for host bridge windows
[ 0.457702] ACPI: Enabled 11 GPEs in block 00 to 7F
[ 0.460142] ACPI: \_SB_.PC00.PEG2.PG00: New power resource
[ 0.488502] ACPI: \_SB_.PC00.XHCI.RHUB.HS14.BTRT: New power resource
[ 0.488527] ACPI: \_SB_.PC00.XHCI.RHUB.HS14.DBTR: New power resource
[ 0.498720] ACPI: \_SB_.PC00.CNVW.WRST: New power resource
[ 0.504494] ACPI: \_SB_.PC00.RP09.PXP_: New power resource
[ 0.531248] ACPI: \PIN_: New power resource
[ 0.532130] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
[ 0.532137] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.536005] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[ 0.542157] PCI host bridge to bus 0000:00
[ 0.542161] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.542163] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.542165] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.542167] pci_bus 0000:00: root bus resource [mem 0x40800000-0xbfffffff window]
[ 0.542169] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[ 0.542171] pci_bus 0000:00: root bus resource [bus 00-e0]
[ 0.542212] pci 0000:00:00.0: [8086:a702] type 00 class 0x060000 conventional PCI endpoint
[ 0.542342] pci 0000:00:01.0: [8086:a70d] type 01 class 0x060400 PCIe Root Port
[ 0.542359] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.542419] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.542445] pci 0000:00:01.0: PTM enabled (root), 4ns granularity
[ 0.543253] pci 0000:00:01.1: [8086:a72d] type 01 class 0x060400 PCIe Root Port
[ 0.543271] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 0.543274] pci 0000:00:01.1: bridge window [io 0x3000-0x3fff]
[ 0.543277] pci 0000:00:01.1: bridge window [mem 0x4e000000-0x4f0fffff]
[ 0.543283] pci 0000:00:01.1: bridge window [mem 0x6000000000-0x6401ffffff 64bit pref]
[ 0.543335] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[ 0.543359] pci 0000:00:01.1: PTM enabled (root), 4ns granularity
[ 0.544117] pci 0000:00:02.0: [8086:a788] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
[ 0.544127] pci 0000:00:02.0: BAR 0 [mem 0x6404000000-0x6404ffffff 64bit]
[ 0.544134] pci 0000:00:02.0: BAR 2 [mem 0x4000000000-0x400fffffff 64bit pref]
[ 0.544139] pci 0000:00:02.0: BAR 4 [io 0x4000-0x403f]
[ 0.544157] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
[ 0.544160] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.544192] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x00ffffff 64bit]
[ 0.544194] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x06ffffff 64bit]: contains BAR 0 for 7 VFs
[ 0.544199] pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0x1fffffff 64bit pref]
[ 0.544201] pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0xdfffffff 64bit pref]: contains BAR 2 for 7 VFs
[ 0.544385] pci 0000:00:04.0: [8086:a71d] type 00 class 0x118000 conventional PCI endpoint
[ 0.544402] pci 0000:00:04.0: BAR 0 [mem 0x6405200000-0x640521ffff 64bit]
[ 0.544766] pci 0000:00:08.0: [8086:a74f] type 00 class 0x088000 conventional PCI endpoint
[ 0.544777] pci 0000:00:08.0: BAR 0 [mem 0x6405241000-0x6405241fff 64bit]
[ 0.544886] pci 0000:00:0a.0: [8086:a77d] type 00 class 0x118000 PCIe Root Complex Integrated Endpoint
[ 0.544895] pci 0000:00:0a.0: BAR 0 [mem 0x6405220000-0x6405227fff 64bit]
[ 0.544914] pci 0000:00:0a.0: enabling Extended Tags
[ 0.545024] pci 0000:00:0e.0: [8086:a77f] type 00 class 0x010400 PCIe Root Complex Integrated Endpoint
[ 0.545039] pci 0000:00:0e.0: BAR 0 [mem 0x6402000000-0x6403ffffff 64bit]
[ 0.545046] pci 0000:00:0e.0: BAR 2 [mem 0x4c000000-0x4dffffff]
[ 0.545062] pci 0000:00:0e.0: BAR 4 [mem 0x6405100000-0x64051fffff 64bit]
[ 0.545397] pci 0000:00:14.0: [8086:7a60] type 00 class 0x0c0330 conventional PCI endpoint
[ 0.545418] pci 0000:00:14.0: BAR 0 [mem 0x4f380000-0x4f38ffff 64bit]
[ 0.545501] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.546114] pci 0000:00:14.2: [8086:7a27] type 00 class 0x050000 conventional PCI endpoint
[ 0.546138] pci 0000:00:14.2: BAR 0 [mem 0x6405238000-0x640523bfff 64bit]
[ 0.546155] pci 0000:00:14.2: BAR 2 [mem 0x6405240000-0x6405240fff 64bit]
[ 0.546311] pci 0000:00:14.3: [8086:7a70] type 00 class 0x028000 PCIe Root Complex Integrated Endpoint
[ 0.546357] pci 0000:00:14.3: BAR 0 [mem 0x6405234000-0x6405237fff 64bit]
[ 0.546547] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
[ 0.546968] pci 0000:00:15.0: [8086:7a4c] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.547043] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.547623] pci 0000:00:15.1: [8086:7a4d] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.547692] pci 0000:00:15.1: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.548159] pci 0000:00:16.0: [8086:7a68] type 00 class 0x078000 conventional PCI endpoint
[ 0.548182] pci 0000:00:16.0: BAR 0 [mem 0x640523d000-0x640523dfff 64bit]
[ 0.548266] pci 0000:00:16.0: PME# supported from D3hot
[ 0.548859] pci 0000:00:1c.0: [8086:7a3e] type 01 class 0x060400 PCIe Root Port
[ 0.548892] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.548898] pci 0000:00:1c.0: bridge window [mem 0x4f100000-0x4f2fffff]
[ 0.548994] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.549035] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
[ 0.549903] pci 0000:00:1d.0: [8086:7a30] type 01 class 0x060400 PCIe Root Port
[ 0.549934] pci 0000:00:1d.0: PCI bridge to [bus 04-54]
[ 0.549941] pci 0000:00:1d.0: bridge window [mem 0x44000000-0x4bffffff]
[ 0.549952] pci 0000:00:1d.0: bridge window [mem 0x6410000000-0x74100fffff 64bit pref]
[ 0.550096] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.551015] pci 0000:00:1f.0: [8086:7a0c] type 00 class 0x060100 conventional PCI endpoint
[ 0.551447] pci 0000:00:1f.3: [8086:7a50] type 00 class 0x040300 conventional PCI endpoint
[ 0.551489] pci 0000:00:1f.3: BAR 0 [mem 0x6405230000-0x6405233fff 64bit]
[ 0.551544] pci 0000:00:1f.3: BAR 4 [mem 0x6405000000-0x64050fffff 64bit]
[ 0.551652] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.551757] pci 0000:00:1f.4: [8086:7a23] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.551783] pci 0000:00:1f.4: BAR 0 [mem 0x640523c000-0x640523c0ff 64bit]
[ 0.551814] pci 0000:00:1f.4: BAR 4 [io 0xefa0-0xefbf]
[ 0.552129] pci 0000:00:1f.5: [8086:7a24] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.552150] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[ 0.552299] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.552346] acpiphp: Slot [1] registered
[ 0.552363] pci 0000:02:00.0: [10de:27e0] type 00 class 0x030000 PCIe Legacy Endpoint
[ 0.552373] pci 0000:02:00.0: BAR 0 [mem 0x4e000000-0x4effffff]
[ 0.552380] pci 0000:02:00.0: BAR 1 [mem 0x6000000000-0x63ffffffff 64bit pref]
[ 0.552388] pci 0000:02:00.0: BAR 3 [mem 0x6400000000-0x6401ffffff 64bit pref]
[ 0.552393] pci 0000:02:00.0: BAR 5 [io 0x3000-0x307f]
[ 0.552398] pci 0000:02:00.0: ROM [mem 0xfff80000-0xffffffff pref]
[ 0.552452] pci 0000:02:00.0: PME# supported from D0 D3hot
[ 0.552522] pci 0000:02:00.0: 126.024 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x8 link at 0000:00:01.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.552796] pci 0000:02:00.1: [10de:22bc] type 00 class 0x040300 PCIe Endpoint
[ 0.552806] pci 0000:02:00.1: BAR 0 [mem 0x4f000000-0x4f003fff]
[ 0.552935] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 0.553073] pci 0000:03:00.0: [8086:3102] type 00 class 0x020000 PCIe Endpoint
[ 0.553098] pci 0000:03:00.0: BAR 0 [mem 0x4f100000-0x4f1fffff]
[ 0.553137] pci 0000:03:00.0: BAR 3 [mem 0x4f200000-0x4f203fff]
[ 0.553295] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[ 0.553572] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.553677] pci 0000:04:00.0: [8086:5780] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.553719] pci 0000:04:00.0: PCI bridge to [bus 05-54]
[ 0.553730] pci 0000:04:00.0: bridge window [mem 0x44000000-0x4befffff]
[ 0.553744] pci 0000:04:00.0: bridge window [mem 0x6410000000-0x74100fffff 64bit pref]
[ 0.553761] pci 0000:04:00.0: enabling Extended Tags
[ 0.553898] pci 0000:04:00.0: supports D1 D2
[ 0.553899] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.554303] pci 0000:00:1d.0: PCI bridge to [bus 04-54]
[ 0.554431] pci 0000:05:00.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.554472] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.554496] pci 0000:05:00.0: bridge window [mem 0x7410000000-0x74100fffff 64bit pref]
[ 0.554515] pci 0000:05:00.0: enabling Extended Tags
[ 0.554644] pci 0000:05:00.0: supports D1 D2
[ 0.554645] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.554962] pci 0000:05:01.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.555003] pci 0000:05:01.0: PCI bridge to [bus 07-2c]
[ 0.555015] pci 0000:05:01.0: bridge window [mem 0x48000000-0x4befffff]
[ 0.555045] pci 0000:05:01.0: enabling Extended Tags
[ 0.555183] pci 0000:05:01.0: supports D1 D2
[ 0.555184] pci 0000:05:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.555502] pci 0000:05:02.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.555543] pci 0000:05:02.0: PCI bridge to [bus 2d]
[ 0.555554] pci 0000:05:02.0: bridge window [mem 0x47f00000-0x47ffffff]
[ 0.555585] pci 0000:05:02.0: enabling Extended Tags
[ 0.555713] pci 0000:05:02.0: supports D1 D2
[ 0.555714] pci 0000:05:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.556030] pci 0000:05:03.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.556071] pci 0000:05:03.0: PCI bridge to [bus 2e-54]
[ 0.556083] pci 0000:05:03.0: bridge window [mem 0x44000000-0x47efffff]
[ 0.556113] pci 0000:05:03.0: enabling Extended Tags
[ 0.556250] pci 0000:05:03.0: supports D1 D2
[ 0.556252] pci 0000:05:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.556577] pci 0000:04:00.0: PCI bridge to [bus 05-54]
[ 0.556685] pci 0000:06:00.0: [8086:5781] type 00 class 0x0c0340 PCIe Endpoint
[ 0.556713] pci 0000:06:00.0: BAR 0 [mem 0x7410000000-0x741003ffff 64bit pref]
[ 0.556731] pci 0000:06:00.0: BAR 2 [mem 0x7410040000-0x7410040fff 64bit pref]
[ 0.556773] pci 0000:06:00.0: enabling Extended Tags
[ 0.556888] pci 0000:06:00.0: supports D1 D2
[ 0.556889] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.557160] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.557222] pci 0000:05:01.0: PCI bridge to [bus 07-2c]
[ 0.557330] pci 0000:2d:00.0: [8086:5782] type 00 class 0x0c0330 PCIe Endpoint
[ 0.557354] pci 0000:2d:00.0: BAR 0 [mem 0x47f00000-0x47f0ffff 64bit]
[ 0.557403] pci 0000:2d:00.0: enabling Extended Tags
[ 0.557485] pci 0000:2d:00.0: PME# supported from D3hot D3cold
[ 0.557524] pci 0000:2d:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x4 link at 0000:05:02.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[ 0.557667] pci 0000:05:02.0: PCI bridge to [bus 2d]
[ 0.557741] pci 0000:05:03.0: PCI bridge to [bus 2e-54]
[ 0.582968] ACPI: EC: interrupt unblocked
[ 0.582970] ACPI: EC: event unblocked
[ 0.582986] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.582988] ACPI: EC: GPE=0x6e
[ 0.582989] ACPI: \_SB_.PC00.LPCB.EC__: Boot DSDT EC initialization complete
[ 0.582991] ACPI: \_SB_.PC00.LPCB.EC__: EC: Used to handle transactions and events
[ 0.583499] iommu: Default domain type: Translated
[ 0.583499] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.583683] SCSI subsystem initialized
[ 0.583697] libata version 3.00 loaded.
[ 0.583697] ACPI: bus type USB registered
[ 0.583697] usbcore: registered new interface driver usbfs
[ 0.583697] usbcore: registered new interface driver hub
[ 0.583697] usbcore: registered new device driver usb
[ 0.583697] pps_core: LinuxPPS API ver. 1 registered
[ 0.583697] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.583697] PTP clock support registered
[ 0.583697] EDAC MC: Ver: 3.0.0
[ 0.584493] efivars: Registered efivars operations
[ 0.584819] NetLabel: Initializing
[ 0.584820] NetLabel: domain hash size = 128
[ 0.584821] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.584843] NetLabel: unlabeled traffic allowed by default
[ 0.584865] mctp: management component transport protocol core
[ 0.584865] NET: Registered PF_MCTP protocol family
[ 0.584865] PCI: Using ACPI for IRQ routing
[ 0.600769] PCI: pci_cache_line_size set to 64 bytes
[ 0.600919] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
[ 0.601066] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 0.601068] e820: reserve RAM buffer [mem 0x26cdf000-0x27ffffff]
[ 0.601069] e820: reserve RAM buffer [mem 0x28a1e000-0x2bffffff]
[ 0.601070] e820: reserve RAM buffer [mem 0x2c229000-0x2fffffff]
[ 0.601072] e820: reserve RAM buffer [mem 0x2e93f000-0x2fffffff]
[ 0.601073] e820: reserve RAM buffer [mem 0x33b00000-0x33ffffff]
[ 0.601074] e820: reserve RAM buffer [mem 0x8bf800000-0x8bfffffff]
[ 0.601497] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.601497] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.601497] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.601497] pci 0000:02:00.0: vgaarb: bridge control possible
[ 0.601497] pci 0000:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.601498] vgaarb: loaded
[ 0.601607] clocksource: Switched to clocksource tsc-early
[ 0.602081] VFS: Disk quotas dquot_6.6.0
[ 0.602093] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.602224] AppArmor: AppArmor Filesystem Enabled
[ 0.602257] pnp: PnP ACPI init
[ 0.602545] pnp 00:00: disabling [io 0x3322-0x3323] because it overlaps 0000:00:01.1 BAR 13 [io 0x3000-0x3fff]
[ 0.602770] system 00:02: [io 0x1854-0x1857] has been reserved
[ 0.619422] pnp 00:05: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
[ 0.619461] system 00:05: [mem 0xfedc0000-0xfedc7fff] has been reserved
[ 0.619464] system 00:05: [mem 0xfeda0000-0xfeda0fff] has been reserved
[ 0.619466] system 00:05: [mem 0xfeda1000-0xfeda1fff] has been reserved
[ 0.619468] system 00:05: [mem 0xfed20000-0xfed7ffff] could not be reserved
[ 0.619470] system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 0.619472] system 00:05: [mem 0xfed45000-0xfed8ffff] could not be reserved
[ 0.619474] system 00:05: [mem 0xfee00000-0xfeefffff] has been reserved
[ 0.619955] system 00:06: [io 0x2000-0x20fe] has been reserved
[ 0.621420] pnp: PnP ACPI: found 8 devices
[ 0.627790] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.627874] NET: Registered PF_INET protocol family
[ 0.628247] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.647358] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[ 0.647402] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.647726] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.648267] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.648375] TCP: Hash tables configured (established 262144 bind 65536)
[ 0.648543] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
[ 0.648681] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[ 0.648807] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[ 0.648912] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.648920] NET: Registered PF_XDP protocol family
[ 0.648923] pci 0000:02:00.0: ROM [mem 0xfff80000-0xffffffff pref]: can't claim; no compatible bridge window
[ 0.648930] pci_bus 0000:00: max bus depth: 3 pci_try_num: 4
[ 0.648944] pci 0000:00:02.0: VF BAR 2 [mem 0x4020000000-0x40ffffffff 64bit pref]: assigned
[ 0.648949] pci 0000:00:02.0: VF BAR 0 [mem 0x4010000000-0x4016ffffff 64bit]: assigned
[ 0.648952] pci 0000:00:15.0: BAR 0 [mem 0x4017000000-0x4017000fff 64bit]: assigned
[ 0.649013] pci 0000:00:15.1: BAR 0 [mem 0x4017001000-0x4017001fff 64bit]: assigned
[ 0.649072] pci 0000:00:1d.0: bridge window [io 0x5000-0x7fff]: assigned
[ 0.649074] pci 0000:00:1f.5: BAR 0 [mem 0x40800000-0x40800fff]: assigned
[ 0.649085] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.649093] pci 0000:02:00.0: ROM [mem 0x4f080000-0x4f0fffff pref]: assigned
[ 0.649095] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 0.649096] pci 0000:00:01.1: bridge window [io 0x3000-0x3fff]
[ 0.649100] pci 0000:00:01.1: bridge window [mem 0x4e000000-0x4f0fffff]
[ 0.649102] pci 0000:00:01.1: bridge window [mem 0x6000000000-0x6401ffffff 64bit pref]
[ 0.649107] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.649117] pci 0000:00:1c.0: bridge window [mem 0x4f100000-0x4f2fffff]
[ 0.649126] pci 0000:04:00.0: bridge window [io 0x5000-0x6fff]: assigned
[ 0.649129] pci 0000:05:01.0: bridge window [mem 0x6410000000-0x64101fffff 64bit pref]: assigned
[ 0.649131] pci 0000:05:03.0: bridge window [mem 0x6410200000-0x64103fffff 64bit pref]: assigned
[ 0.649132] pci 0000:05:01.0: bridge window [io 0x5000-0x5fff]: assigned
[ 0.649134] pci 0000:05:03.0: bridge window [io 0x6000-0x6fff]: assigned
[ 0.649136] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.649156] pci 0000:05:00.0: bridge window [mem 0x7410000000-0x74100fffff 64bit pref]
[ 0.649164] pci 0000:05:01.0: PCI bridge to [bus 07-2c]
[ 0.649166] pci 0000:05:01.0: bridge window [io 0x5000-0x5fff]
[ 0.649172] pci 0000:05:01.0: bridge window [mem 0x48000000-0x4befffff]
[ 0.649176] pci 0000:05:01.0: bridge window [mem 0x6410000000-0x64101fffff 64bit pref]
[ 0.649184] pci 0000:05:02.0: PCI bridge to [bus 2d]
[ 0.649189] pci 0000:05:02.0: bridge window [mem 0x47f00000-0x47ffffff]
[ 0.649199] pci 0000:05:03.0: PCI bridge to [bus 2e-54]
[ 0.649202] pci 0000:05:03.0: bridge window [io 0x6000-0x6fff]
[ 0.649208] pci 0000:05:03.0: bridge window [mem 0x44000000-0x47efffff]
[ 0.649212] pci 0000:05:03.0: bridge window [mem 0x6410200000-0x64103fffff 64bit pref]
[ 0.649219] pci 0000:04:00.0: PCI bridge to [bus 05-54]
[ 0.649221] pci 0000:04:00.0: bridge window [io 0x5000-0x6fff]
[ 0.649227] pci 0000:04:00.0: bridge window [mem 0x44000000-0x4befffff]
[ 0.649231] pci 0000:04:00.0: bridge window [mem 0x6410000000-0x74100fffff 64bit pref]
[ 0.649238] pci 0000:00:1d.0: PCI bridge to [bus 04-54]
[ 0.649240] pci 0000:00:1d.0: bridge window [io 0x5000-0x7fff]
[ 0.649245] pci 0000:00:1d.0: bridge window [mem 0x44000000-0x4bffffff]
[ 0.649248] pci 0000:00:1d.0: bridge window [mem 0x6410000000-0x74100fffff 64bit pref]
[ 0.649254] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.649256] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.649258] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.649259] pci_bus 0000:00: resource 7 [mem 0x40800000-0xbfffffff window]
[ 0.649261] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
[ 0.649262] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
[ 0.649264] pci_bus 0000:02: resource 1 [mem 0x4e000000-0x4f0fffff]
[ 0.649265] pci_bus 0000:02: resource 2 [mem 0x6000000000-0x6401ffffff 64bit pref]
[ 0.649267] pci_bus 0000:03: resource 1 [mem 0x4f100000-0x4f2fffff]
[ 0.649269] pci_bus 0000:04: resource 0 [io 0x5000-0x7fff]
[ 0.649270] pci_bus 0000:04: resource 1 [mem 0x44000000-0x4bffffff]
[ 0.649271] pci_bus 0000:04: resource 2 [mem 0x6410000000-0x74100fffff 64bit pref]
[ 0.649273] pci_bus 0000:05: resource 0 [io 0x5000-0x6fff]
[ 0.649274] pci_bus 0000:05: resource 1 [mem 0x44000000-0x4befffff]
[ 0.649275] pci_bus 0000:05: resource 2 [mem 0x6410000000-0x74100fffff 64bit pref]
[ 0.649277] pci_bus 0000:06: resource 2 [mem 0x7410000000-0x74100fffff 64bit pref]
[ 0.649278] pci_bus 0000:07: resource 0 [io 0x5000-0x5fff]
[ 0.649280] pci_bus 0000:07: resource 1 [mem 0x48000000-0x4befffff]
[ 0.649281] pci_bus 0000:07: resource 2 [mem 0x6410000000-0x64101fffff 64bit pref]
[ 0.649282] pci_bus 0000:2d: resource 1 [mem 0x47f00000-0x47ffffff]
[ 0.649284] pci_bus 0000:2e: resource 0 [io 0x6000-0x6fff]
[ 0.649285] pci_bus 0000:2e: resource 1 [mem 0x44000000-0x47efffff]
[ 0.649287] pci_bus 0000:2e: resource 2 [mem 0x6410200000-0x64103fffff 64bit pref]
[ 0.651495] pci 0000:02:00.1: extending delay after power-on from D3hot to 20 msec
[ 0.651523] pci 0000:02:00.1: D0 power state depends on 0000:02:00.0
[ 0.652017] pci 0000:2d:00.0: enabling device (0000 -> 0002)
[ 0.652056] PCI: CLS 64 bytes, default 64
[ 0.652096] DMAR: No ATSR found
[ 0.652097] DMAR: No SATC found
[ 0.652098] DMAR: IOMMU feature fl1gp_support inconsistent
[ 0.652099] DMAR: IOMMU feature pgsel_inv inconsistent
[ 0.652100] DMAR: IOMMU feature nwfs inconsistent
[ 0.652101] DMAR: IOMMU feature dit inconsistent
[ 0.652102] DMAR: IOMMU feature sc_support inconsistent
[ 0.652103] DMAR: IOMMU feature dev_iotlb_support inconsistent
[ 0.652104] DMAR: dmar0: Using Queued invalidation
[ 0.652108] DMAR: dmar1: Using Queued invalidation
[ 0.652178] Trying to unpack rootfs image as initramfs...
[ 0.652512] pci 0000:00:02.0: Adding to iommu group 0
[ 0.653353] pci 0000:00:00.0: Adding to iommu group 1
[ 0.653368] pci 0000:00:01.0: Adding to iommu group 2
[ 0.653382] pci 0000:00:01.1: Adding to iommu group 3
[ 0.653395] pci 0000:00:04.0: Adding to iommu group 4
[ 0.653406] pci 0000:00:08.0: Adding to iommu group 5
[ 0.653416] pci 0000:00:0a.0: Adding to iommu group 6
[ 0.653428] pci 0000:00:0e.0: Adding to iommu group 7
[ 0.653450] pci 0000:00:14.0: Adding to iommu group 8
[ 0.653461] pci 0000:00:14.2: Adding to iommu group 8
[ 0.653472] pci 0000:00:14.3: Adding to iommu group 9
[ 0.653493] pci 0000:00:15.0: Adding to iommu group 10
[ 0.653503] pci 0000:00:15.1: Adding to iommu group 10
[ 0.653520] pci 0000:00:16.0: Adding to iommu group 11
[ 0.653544] pci 0000:00:1c.0: Adding to iommu group 12
[ 0.653570] pci 0000:00:1d.0: Adding to iommu group 13
[ 0.653600] pci 0000:00:1f.0: Adding to iommu group 14
[ 0.653612] pci 0000:00:1f.3: Adding to iommu group 14
[ 0.653624] pci 0000:00:1f.4: Adding to iommu group 14
[ 0.653635] pci 0000:00:1f.5: Adding to iommu group 14
[ 0.653656] pci 0000:02:00.0: Adding to iommu group 15
[ 0.653670] pci 0000:02:00.1: Adding to iommu group 15
[ 0.653690] pci 0000:03:00.0: Adding to iommu group 16
[ 0.653722] pci 0000:04:00.0: Adding to iommu group 17
[ 0.653742] pci 0000:05:00.0: Adding to iommu group 18
[ 0.653764] pci 0000:05:01.0: Adding to iommu group 19
[ 0.653778] pci 0000:05:02.0: Adding to iommu group 20
[ 0.653792] pci 0000:05:03.0: Adding to iommu group 21
[ 0.653818] pci 0000:06:00.0: Adding to iommu group 22
[ 0.653843] pci 0000:2d:00.0: Adding to iommu group 23
[ 0.659492] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 0.659496] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.659498] software IO TLB: mapped [mem 0x0000000022ca0000-0x0000000026ca0000] (64MB)
[ 0.664446] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
[ 0.664496] clocksource: Switched to clocksource tsc
[ 0.665827] Initialise system trusted keyrings
[ 0.665838] Key type blacklist registered
[ 0.665906] workingset: timestamp_bits=36 max_order=23 bucket_order=0
[ 0.665916] zbud: loaded
[ 0.666259] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.666399] fuse: init (API version 7.41)
[ 0.666597] integrity: Platform Keyring initialized
[ 0.666603] integrity: Machine keyring initialized
[ 0.680370] Key type asymmetric registered
[ 0.680373] Asymmetric key parser 'x509' registered
[ 0.680402] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[ 0.680479] io scheduler mq-deadline registered
[ 0.681381] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.681748] pcieport 0000:00:01.0: PME: Signaling with IRQ 122
[ 0.682041] pcieport 0000:00:01.1: PME: Signaling with IRQ 123
[ 0.682377] pcieport 0000:00:1c.0: PME: Signaling with IRQ 124
[ 0.682498] pcieport 0000:00:1c.0: AER: enabled with IRQ 124
[ 0.682694] pcieport 0000:00:1d.0: PME: Signaling with IRQ 125
[ 0.682781] pcieport 0000:00:1d.0: AER: enabled with IRQ 125
[ 0.682815] pcieport 0000:00:1d.0: pciehp: Slot #8 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.683756] pcieport 0000:05:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.684389] pcieport 0000:05:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.684634] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.684980] Monitor-Mwait will be used to enter C-1 state
[ 0.684996] Monitor-Mwait will be used to enter C-2 state
[ 0.685007] Monitor-Mwait will be used to enter C-3 state
[ 0.688549] ACPI: AC: AC Adapter [AC] (on-line)
[ 0.688628] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 0.688682] ACPI: button: Power Button [PWRB]
[ 0.688716] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[ 0.688753] ACPI: button: Sleep Button [SLPB]
[ 0.688791] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
[ 0.688825] ACPI: button: Lid Switch [LID0]
[ 0.688860] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[ 0.688903] ACPI: button: Power Button [PWRF]
[ 0.779865] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.779870] ACPI: thermal: Thermal Zone [TZ0] (25 C)
[ 0.780326] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.781231] ACPI: battery: Slot [BAT0] (battery present)
[ 0.783163] hpet_acpi_add: no address or irqs in _CRS
[ 0.783198] Linux agpgart interface v0.103
[ 0.785282] tpm_tis IFX1523:00: 2.0 TPM (device-id 0x1D, rev-id 54)
[ 0.899863] ACPI: bus type drm_connector registered
[ 0.907424] loop: module loaded
[ 0.907703] tun: Universal TUN/TAP device driver, 1.6
[ 0.907737] PPP generic driver version 2.4.2
[ 0.908056] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.908062] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 0.909271] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[ 0.909705] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.909708] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 0.909711] xhci_hcd 0000:00:14.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 0.909762] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
[ 0.909765] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.909767] usb usb1: Product: xHCI Host Controller
[ 0.909768] usb usb1: Manufacturer: Linux 6.12.0-rc4 xhci-hcd
[ 0.909770] usb usb1: SerialNumber: 0000:00:14.0
[ 0.909907] hub 1-0:1.0: USB hub found
[ 0.909936] hub 1-0:1.0: 16 ports detected
[ 0.913653] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.12
[ 0.913656] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.913658] usb usb2: Product: xHCI Host Controller
[ 0.913659] usb usb2: Manufacturer: Linux 6.12.0-rc4 xhci-hcd
[ 0.913661] usb usb2: SerialNumber: 0000:00:14.0
[ 0.913730] hub 2-0:1.0: USB hub found
[ 0.913752] hub 2-0:1.0: 10 ports detected
[ 0.915869] xhci_hcd 0000:2d:00.0: xHCI Host Controller
[ 0.915873] xhci_hcd 0000:2d:00.0: new USB bus registered, assigned bus number 3
[ 0.917072] xhci_hcd 0000:2d:00.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[ 0.917467] xhci_hcd 0000:2d:00.0: xHCI Host Controller
[ 0.917469] xhci_hcd 0000:2d:00.0: new USB bus registered, assigned bus number 4
[ 0.917472] xhci_hcd 0000:2d:00.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 0.917505] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
[ 0.917507] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.917509] usb usb3: Product: xHCI Host Controller
[ 0.917510] usb usb3: Manufacturer: Linux 6.12.0-rc4 xhci-hcd
[ 0.917511] usb usb3: SerialNumber: 0000:2d:00.0
[ 0.917594] hub 3-0:1.0: USB hub found
[ 0.917607] hub 3-0:1.0: 2 ports detected
[ 0.918825] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.12
[ 0.918827] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.918829] usb usb4: Product: xHCI Host Controller
[ 0.918830] usb usb4: Manufacturer: Linux 6.12.0-rc4 xhci-hcd
[ 0.918831] usb usb4: SerialNumber: 0000:2d:00.0
[ 0.918903] hub 4-0:1.0: USB hub found
[ 0.918917] hub 4-0:1.0: 2 ports detected
[ 0.920706] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 0.926688] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.926692] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.926919] mousedev: PS/2 mouse device common for all mice
[ 0.927126] rtc_cmos 00:01: RTC can wake from S4
[ 0.927910] rtc_cmos 00:01: registered as rtc0
[ 0.928077] rtc_cmos 00:01: setting system clock to 2024-10-23T16:21:13 UTC (1729700473)
[ 0.928114] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
[ 0.928120] i2c_dev: i2c /dev entries driver
[ 0.930853] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 0.930870] device-mapper: uevent: version 1.0.3
[ 0.930917] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[ 0.930935] platform eisa.0: Probing EISA bus 0
[ 0.930940] platform eisa.0: EISA: Cannot allocate resource for mainboard
[ 0.930942] platform eisa.0: Cannot allocate resource for EISA slot 1
[ 0.930943] platform eisa.0: Cannot allocate resource for EISA slot 2
[ 0.930945] platform eisa.0: Cannot allocate resource for EISA slot 3
[ 0.930946] platform eisa.0: Cannot allocate resource for EISA slot 4
[ 0.930947] platform eisa.0: Cannot allocate resource for EISA slot 5
[ 0.930948] platform eisa.0: Cannot allocate resource for EISA slot 6
[ 0.930949] platform eisa.0: Cannot allocate resource for EISA slot 7
[ 0.930950] platform eisa.0: Cannot allocate resource for EISA slot 8
[ 0.930951] platform eisa.0: EISA: Detected 0 cards
[ 0.930954] intel_pstate: Intel P-state driver initializing
[ 0.934504] intel_pstate: HWP enabled
[ 0.934665] [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
[ 0.936954] fbcon: Deferring console take-over
[ 0.936955] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[ 0.937030] drop_monitor: Initializing network drop monitor service
[ 0.937056] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input5
[ 0.937126] NET: Registered PF_INET6 protocol family
[ 0.987480] Freeing initrd memory: 74684K
[ 0.994163] Segment Routing with IPv6
[ 0.994178] In-situ OAM (IOAM) with IPv6
[ 0.994202] NET: Registered PF_PACKET protocol family
[ 0.994551] Key type dns_resolver registered
[ 1.000160] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 1.002082] microcode: Current revision: 0x00000129
[ 1.004065] IPI shorthand broadcast: enabled
[ 1.005069] sched_clock: Marking stable (997000584, 7526151)->(1076374261, -71847526)
[ 1.005727] registered taskstats version 1
[ 1.009235] Loading compiled-in X.509 certificates
[ 1.009734] Loaded X.509 cert 'Build time autogenerated kernel key: 84d395bd31cee4a05297ad9c1b9c63dc2b3e4d3d'
[ 1.013192] Demotion targets for Node 0: null
[ 1.013350] Key type .fscrypt registered
[ 1.013352] Key type fscrypt-provisioning registered
[ 1.013429] Key type trusted registered
[ 1.019503] cryptd: module verification failed: signature and/or required key missing - tainting kernel
[ 1.020279] cryptd: max_cpu_qlen set to 1000
[ 1.021127] AES CTR mode by8 optimization enabled
[ 1.031112] Key type encrypted registered
[ 1.031118] AppArmor: AppArmor sha256 policy hashing enabled
[ 1.035704] integrity: Loading X.509 certificate: UEFI:db
[ 1.035769] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 1.035772] integrity: Loading X.509 certificate: UEFI:db
[ 1.035788] integrity: Loaded X.509 cert 'Microsoft Corporation: Windows UEFI CA 2023: aefc5fbbbe055d8f8daa585473499417ab5a5272'
[ 1.035790] integrity: Loading X.509 certificate: UEFI:db
[ 1.035805] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 1.035806] integrity: Loading X.509 certificate: UEFI:db
[ 1.035819] integrity: Loaded X.509 cert 'Microsoft UEFI CA 2023: 81aa6b3244c935bce0d6628af39827421e32497d'
[ 1.035820] integrity: Loading X.509 certificate: UEFI:db
[ 1.036020] integrity: Loaded X.509 cert 'Secure Certificate: 01dcc89619884ca147983429f8a4a1a0'
[ 1.036021] integrity: Loading X.509 certificate: UEFI:db
[ 1.036163] integrity: Loaded X.509 cert 'Cus CA: d6136d376b87ef934511c12ce2c3880c'
[ 1.043489] Loading compiled-in module X.509 certificates
[ 1.043923] Loaded X.509 cert 'Build time autogenerated kernel key: 84d395bd31cee4a05297ad9c1b9c63dc2b3e4d3d'
[ 1.043930] ima: Allocated hash algorithm: sha256
[ 1.148784] usb 1-6: new high-speed USB device number 2 using xhci_hcd
[ 1.196131] ima: No architecture policies found
[ 1.196199] evm: Initialising EVM extended attributes:
[ 1.196202] evm: security.selinux
[ 1.196204] evm: security.SMACK64
[ 1.196206] evm: security.SMACK64EXEC
[ 1.196208] evm: security.SMACK64TRANSMUTE
[ 1.196210] evm: security.SMACK64MMAP
[ 1.196211] evm: security.apparmor
[ 1.196213] evm: security.ima
[ 1.196215] evm: security.capability
[ 1.196217] evm: HMAC attrs: 0x1
[ 1.197113] PM: Magic number: 12:274:389
[ 1.197162] thermal cooling_device4: hash matches
[ 1.197227] acpi ACPI0007:39: hash matches
[ 1.197237] acpi ACPI0007:0c: hash matches
[ 1.206734] RAS: Correctable Errors collector initialized.
[ 1.218576] clk: Disabling unused clocks
[ 1.218579] PM: genpd: Disabling unused power domains
[ 1.224611] Freeing unused decrypted memory: 2028K
[ 1.225424] Freeing unused kernel image (initmem) memory: 5064K
[ 1.225439] Write protecting the kernel read-only data: 36864k
[ 1.226240] Freeing unused kernel image (rodata/data gap) memory: 44K
[ 1.233487] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.233491] Run /init as init process
[ 1.233492] with arguments:
[ 1.233493] /init
[ 1.233494] splash
[ 1.233494] with environment:
[ 1.233495] HOME=/
[ 1.233495] TERM=linux
[ 1.233496] BOOT_IMAGE=/@boot/vmlinuz-6.12.0-rc4
[ 1.233496] cryptdevice=UUID=1a8d8cdb-8d8f-4689-b744-8f32d2067f56:luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56
[ 1.303797] usb 1-6: New USB device found, idVendor=04f2, idProduct=b7e7, bcdDevice= 0.04
[ 1.303812] usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.303818] usb 1-6: Product: Chicony USB2.0 Camera
[ 1.303820] usb 1-6: Manufacturer: SunplusIT Inc
[ 1.303822] usb 1-6: SerialNumber: 01.00.00
[ 1.326685] hid: raw HID events driver (C) Jiri Kosina
[ 1.327079] wmi_bus wmi_bus-PNP0C14:01: [Firmware Bug]: WQ00 data block query control method not found
[ 1.332135] vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
[ 1.332142] pci_bus 10000:e0: root bus resource [bus e0-ff]
[ 1.332145] pci_bus 10000:e0: root bus resource [mem 0x4c000000-0x4dffffff]
[ 1.332146] pci_bus 10000:e0: root bus resource [mem 0x6405102000-0x64051fffff 64bit]
[ 1.332178] pci 10000:e0:1b.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 1.332370] pci 10000:e0:1b.0: Adding to iommu group 7
[ 1.332413] pci 10000:e0:1b.4: [8086:7a44] type 01 class 0x060400 PCIe Root Port
[ 1.332450] pci 10000:e0:1b.4: PCI bridge to [bus e1]
[ 1.332458] pci 10000:e0:1b.4: bridge window [io 0x0000-0x0fff]
[ 1.332461] pci 10000:e0:1b.4: bridge window [mem 0x4c000000-0x4c0fffff]
[ 1.332562] pci 10000:e0:1b.4: PME# supported from D0 D3hot D3cold
[ 1.332610] pci 10000:e0:1b.4: PTM enabled (root), 4ns granularity
[ 1.333502] Intel(R) 2.5G Ethernet Linux Driver
[ 1.333505] Copyright(c) 2018 Intel Corporation.
[ 1.333653] pci 10000:e0:1b.4: Adding to iommu group 7
[ 1.333680] pci 10000:e0:1b.4: Primary bus is hard wired to 0
[ 1.333815] pci 10000:e1:00.0: [144d:a808] type 00 class 0x010802 PCIe Endpoint
[ 1.333847] pci 10000:e1:00.0: BAR 0 [mem 0x4c000000-0x4c003fff 64bit]
[ 1.333933] igc 0000:03:00.0: PTM enabled, 4ns granularity
[ 1.335557] pci 10000:e1:00.0: Adding to iommu group 7
[ 1.335585] pci 10000:e0:1b.4: PCI bridge to [bus e1]
[ 1.335601] pci 10000:e0:1b.4: Primary bus is hard wired to 0
[ 1.342518] ACPI: bus type thunderbolt registered
[ 1.342790] thunderbolt 0000:06:00.0: total paths: 12
[ 1.342796] thunderbolt 0000:06:00.0: IOMMU DMA protection is enabled
[ 1.343558] intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
[ 1.343831] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 1.386250] pps pps0: new PPS source ptp0
[ 1.386398] igc 0000:03:00.0 (unnamed net_device) (uninitialized): PHC added
[ 1.415161] igc 0000:03:00.0: 4.000 Gb/s available PCIe bandwidth (5.0 GT/s PCIe x1 link)
[ 1.415170] igc 0000:03:00.0 eth0: MAC: d4:93:90:44:67:64
[ 1.417245] igc 0000:03:00.0 enp3s0: renamed from eth0
[ 1.431750] usb 1-7: new full-speed USB device number 3 using xhci_hcd
[ 1.444729] thunderbolt 0000:06:00.0: host router reset successful
[ 1.445381] thunderbolt 0000:06:00.0: allocating TX ring 0 of size 10
[ 1.445450] thunderbolt 0000:06:00.0: allocating RX ring 0 of size 10
[ 1.445482] thunderbolt 0000:06:00.0: control channel created
[ 1.445486] thunderbolt 0000:06:00.0: using software connection manager
[ 1.446033] thunderbolt 0000:06:00.0: device links to tunneled native ports are missing!
[ 1.446035] thunderbolt 0000:06:00.0: NHI initialized, starting thunderbolt
[ 1.446038] thunderbolt 0000:06:00.0: control channel starting...
[ 1.446039] thunderbolt 0000:06:00.0: starting TX ring 0
[ 1.446053] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 1.446058] thunderbolt 0000:06:00.0: starting RX ring 0
[ 1.446066] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 1.446074] thunderbolt 0000:06:00.0: security level set to user
[ 1.446309] thunderbolt 0000:06:00.0: current switch config:
[ 1.446311] thunderbolt 0000:06:00.0: USB4 Switch: 8087:5781 (Revision: 131, TB Version: 64)
[ 1.446315] thunderbolt 0000:06:00.0: Max Port Number: 23
[ 1.446317] thunderbolt 0000:06:00.0: Config:
[ 1.446319] thunderbolt 0000:06:00.0: Upstream Port Number: 15 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[ 1.446323] thunderbolt 0000:06:00.0: unknown1: 0x0 unknown4: 0x0
[ 1.449464] thunderbolt 0000:06:00.0: initializing Switch at 0x0 (depth: 0, up port: 15)
[ 1.450612] thunderbolt 0000:06:00.0: 0: credit allocation parameters:
[ 1.450616] thunderbolt 0000:06:00.0: 0: USB3: 20
[ 1.450619] thunderbolt 0000:06:00.0: 0: DP AUX: 1
[ 1.450621] thunderbolt 0000:06:00.0: 0: DP main: 6
[ 1.450624] thunderbolt 0000:06:00.0: 0: PCIe: 80
[ 1.450626] thunderbolt 0000:06:00.0: 0: DMA: 40
[ 1.451629] thunderbolt 0000:06:00.0: acking hot plug event on 0:13
[ 1.451762] thunderbolt 0000:06:00.0: acking hot plug event on 0:14
[ 1.451884] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
[ 1.453050] thunderbolt 0000:06:00.0: 0: DROM version: 3
[ 1.453056] thunderbolt 0000:06:00.0: 0: DROM data CRC32 mismatch (expected: 0x56000000, got: 0x56473b0f), continuing
[ 1.453689] thunderbolt 0000:06:00.0: 0: uid: 0xb93e650000006ecd
[ 1.454964] thunderbolt 0000:06:00.0: Port 1: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.454971] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.454975] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.454977] thunderbolt 0000:06:00.0: NFC Credits: 0x8a000000
[ 1.454980] thunderbolt 0000:06:00.0: Credits (total/control): 160/2
[ 1.456118] thunderbolt 0000:06:00.0: Port 2: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.456123] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.456126] thunderbolt 0000:06:00.0: Max counters: 0
[ 1.456128] thunderbolt 0000:06:00.0: NFC Credits: 0xa000000
[ 1.456130] thunderbolt 0000:06:00.0: Credits (total/control): 160/2
[ 1.457389] thunderbolt 0000:06:00.0: Port 3: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.457392] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.457395] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.457397] thunderbolt 0000:06:00.0: NFC Credits: 0x8a000000
[ 1.457399] thunderbolt 0000:06:00.0: Credits (total/control): 160/2
[ 1.458548] thunderbolt 0000:06:00.0: Port 4: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.458551] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.458553] thunderbolt 0000:06:00.0: Max counters: 0
[ 1.458555] thunderbolt 0000:06:00.0: NFC Credits: 0xa000000
[ 1.458557] thunderbolt 0000:06:00.0: Credits (total/control): 160/2
[ 1.459823] thunderbolt 0000:06:00.0: Port 5: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.459827] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.459829] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.459831] thunderbolt 0000:06:00.0: NFC Credits: 0x8a000000
[ 1.459833] thunderbolt 0000:06:00.0: Credits (total/control): 160/0
[ 1.460588] thunderbolt 0000:06:00.0: Port 6: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.460591] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.460594] thunderbolt 0000:06:00.0: Max counters: 0
[ 1.460596] thunderbolt 0000:06:00.0: NFC Credits: 0xa000000
[ 1.460598] thunderbolt 0000:06:00.0: Credits (total/control): 160/0
[ 1.461876] thunderbolt 0000:06:00.0: Port 7: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.461880] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.461883] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.461885] thunderbolt 0000:06:00.0: NFC Credits: 0x8a000000
[ 1.461887] thunderbolt 0000:06:00.0: Credits (total/control): 160/0
[ 1.462637] thunderbolt 0000:06:00.0: Port 8: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.462641] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.462644] thunderbolt 0000:06:00.0: Max counters: 0
[ 1.462646] thunderbolt 0000:06:00.0: NFC Credits: 0xa000000
[ 1.462648] thunderbolt 0000:06:00.0: Credits (total/control): 160/0
[ 1.462900] thunderbolt 0000:06:00.0: Port 9: 0:5780 (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[ 1.462904] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.462907] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.462909] thunderbolt 0000:06:00.0: NFC Credits: 0x40800000
[ 1.462912] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.463150] thunderbolt 0000:06:00.0: Port 10: 0:5780 (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[ 1.463155] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.463157] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.463159] thunderbolt 0000:06:00.0: NFC Credits: 0x40800000
[ 1.463161] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.463669] thunderbolt 0000:06:00.0: Port 11: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 1.463673] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.463675] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.463677] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.463679] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.464179] thunderbolt 0000:06:00.0: Port 12: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 1.464183] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.464185] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.464187] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.464189] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.464434] thunderbolt 0000:06:00.0: Port 13: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[ 1.464438] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.464440] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.464442] thunderbolt 0000:06:00.0: NFC Credits: 0x100000d
[ 1.464444] thunderbolt 0000:06:00.0: Credits (total/control): 16/0
[ 1.464692] thunderbolt 0000:06:00.0: Port 14: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[ 1.464696] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.464698] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.464700] thunderbolt 0000:06:00.0: NFC Credits: 0x100000d
[ 1.464702] thunderbolt 0000:06:00.0: Credits (total/control): 16/0
[ 1.465457] thunderbolt 0000:06:00.0: Port 15: 0:5780 (Revision: 0, TB Version: 1, Type: NHI (0x2))
[ 1.465460] thunderbolt 0000:06:00.0: Max hop id (in/out): 11/11
[ 1.465462] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.465464] thunderbolt 0000:06:00.0: NFC Credits: 0x41c00000
[ 1.465466] thunderbolt 0000:06:00.0: Credits (total/control): 28/0
[ 1.465468] thunderbolt 0000:06:00.0: 0:16: disabled by eeprom
[ 1.465715] thunderbolt 0000:06:00.0: Port 17: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.465718] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.465720] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.465722] thunderbolt 0000:06:00.0: NFC Credits: 0x40800000
[ 1.465724] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.465967] thunderbolt 0000:06:00.0: Port 18: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.465970] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.465972] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.465974] thunderbolt 0000:06:00.0: NFC Credits: 0x40800000
[ 1.465976] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.466477] thunderbolt 0000:06:00.0: Port 19: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 1.466480] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.466482] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.466484] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.466486] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.466730] thunderbolt 0000:06:00.0: Port 20: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.466733] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.466735] thunderbolt 0000:06:00.0: Max counters: 1
[ 1.466737] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.466738] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.466987] thunderbolt 0000:06:00.0: Port 21: 0:5780 (Revision: 0, TB Version: 1, Type: USB (0x200101))
[ 1.466990] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.466992] thunderbolt 0000:06:00.0: Max counters: 1
[ 1.466994] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.466996] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.467247] thunderbolt 0000:06:00.0: Port 22: 0:5780 (Revision: 0, TB Version: 1, Type: USB (0x200101))
[ 1.467250] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.467252] thunderbolt 0000:06:00.0: Max counters: 1
[ 1.467253] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.467255] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.467501] thunderbolt 0000:06:00.0: Port 23: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.467504] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.467505] thunderbolt 0000:06:00.0: Max counters: 1
[ 1.467507] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.467509] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.467512] thunderbolt 0000:06:00.0: 0: running tb_retimer_remove_all [thunderbolt]
[ 1.467549] thunderbolt 0000:06:00.0: 0:21: USB3 maximum bandwidth limited to 16376 Mb/s
[ 1.467552] thunderbolt 0000:06:00.0: 0:22: USB3 maximum bandwidth limited to 16376 Mb/s
[ 1.467555] thunderbolt 0000:06:00.0: 0: running tb_retimer_remove_all [thunderbolt]
[ 1.467569] thunderbolt 0000:06:00.0: 0: preventing runtime PM in DP redrive mode
[ 1.467572] thunderbolt 0000:06:00.0: 0: linked ports 1 <-> 2
[ 1.467574] thunderbolt 0000:06:00.0: 0: linked ports 3 <-> 4
[ 1.475825] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
[ 1.475829] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
[ 1.475953] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
[ 1.479988] thunderbolt 0000:06:00.0: 0: NVM version 14.86
[ 1.480136] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> uni-directional, LowRes requested
[ 1.480557] thunderbolt 0000:06:00.0: 0: TMU: mode set to: uni-directional, LowRes
[ 1.481456] thunderbolt 0000:06:00.0: 0:13: DP IN resource available
[ 1.482091] thunderbolt 0000:06:00.0: 0:14: DP IN resource available
[ 1.500832] pci 10000:e0:1b.4: bridge window [mem 0x4c000000-0x4c0fffff]: assigned
[ 1.500840] pci 10000:e0:1b.4: bridge window [io size 0x1000]: can't assign; no space
[ 1.500844] pci 10000:e0:1b.4: bridge window [io size 0x1000]: failed to assign
[ 1.500848] pci 10000:e1:00.0: BAR 0 [mem 0x4c000000-0x4c003fff 64bit]: assigned
[ 1.500866] pci 10000:e0:1b.4: PCI bridge to [bus e1]
[ 1.500875] pci 10000:e0:1b.4: bridge window [mem 0x4c000000-0x4c0fffff]
[ 1.500979] pcieport 10000:e0:1b.4: can't derive routing for PCI INT A
[ 1.500982] pcieport 10000:e0:1b.4: PCI INT A: no GSI
[ 1.501166] pcieport 10000:e0:1b.4: PME: Signaling with IRQ 186
[ 1.501488] pcieport 10000:e0:1b.4: AER: enabled with IRQ 186
[ 1.501634] vmd 0000:00:0e.0: Bound to PCI domain 10000
[ 1.511663] intel-lpss 0000:00:15.1: enabling device (0004 -> 0006)
[ 1.513723] idma64 idma64.1: Found Intel integrated DMA 64-bit
[ 1.561277] usb 1-7: New USB device found, idVendor=048d, idProduct=8910, bcdDevice= 0.01
[ 1.561293] usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.561300] usb 1-7: Product: ITE Device(829x)
[ 1.561304] usb 1-7: Manufacturer: ITE Tech. Inc.
[ 1.675764] usb 1-14: new full-speed USB device number 4 using xhci_hcd
[ 1.802101] usb 1-14: New USB device found, idVendor=8087, idProduct=0033, bcdDevice= 0.00
[ 1.802118] usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.818590] usbcore: registered new interface driver usbhid
[ 1.818596] usbhid: USB HID core driver
[ 1.857126] hid-generic 0003:048D:8910.0001: hiddev0,hidraw0: USB HID v1.10 Device [ITE Tech. Inc. ITE Device(829x)] on usb-0000:00:14.0-7/input0
[ 1.857578] input: FTCS1000:01 2808:0102 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0002/input/input8
[ 1.857719] input: FTCS1000:01 2808:0102 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0002/input/input9
[ 1.857863] hid-generic 0018:2808:0102.0002: input,hidraw1: I2C HID v1.00 Mouse [FTCS1000:01 2808:0102] on i2c-FTCS1000:01
[ 1.862608] nvme nvme0: pci function 10000:e1:00.0
[ 1.862635] pcieport 10000:e0:1b.4: can't derive routing for PCI INT A
[ 1.862638] nvme 10000:e1:00.0: PCI INT A: not connected
[ 1.864979] nvme nvme0: missing or invalid SUBNQN field.
[ 1.865139] nvme nvme0: D3 entry latency set to 8 seconds
[ 1.885018] nvme nvme0: 18/0/0 default/read/poll queues
[ 1.893542] nvme0n1: p1 p2 p3
[ 1.911424] input: FTCS1000:01 2808:0102 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0002/input/input11
[ 1.911901] input: FTCS1000:01 2808:0102 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0002/input/input12
[ 1.912215] hid-multitouch 0018:2808:0102.0002: input,hidraw1: I2C HID v1.00 Mouse [FTCS1000:01 2808:0102] on i2c-FTCS1000:01
[ 2.746743] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input7
[ 6.827207] ucsi_acpi USBC000:00: error -ETIMEDOUT: PPM init failed
[ 9.110528] raid6: avx2x4 gen() 25078 MB/s
[ 9.127606] raid6: avx2x2 gen() 36413 MB/s
[ 9.144528] raid6: avx2x1 gen() 34182 MB/s
[ 9.144529] raid6: using algorithm avx2x2 gen() 36413 MB/s
[ 9.161528] raid6: .... xor() 28616 MB/s, rmw enabled
[ 9.161530] raid6: using avx2x2 recovery algorithm
[ 9.162598] xor: automatically using best checksumming function avx
[ 9.193521] Btrfs loaded, zoned=yes, fsverity=yes
[ 9.218674] BTRFS: device label kfocus_2404 devid 1 transid 4700 /dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 (252:0) scanned by mount (750)
[ 9.220703] BTRFS info (device dm-0): first mount of filesystem aa8cb093-9cb3-4cc7-b44e-4bff76ca37fb
[ 9.220720] BTRFS info (device dm-0): using crc32c (crc32c-intel) checksum algorithm
[ 9.220728] BTRFS info (device dm-0): using free-space-tree
[ 9.373157] systemd[1]: Inserted module 'autofs4'
[ 9.525952] systemd[1]: systemd 255.4-1ubuntu8.4 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[ 9.525956] systemd[1]: Detected architecture x86-64.
[ 9.527072] systemd[1]: Hostname set to <qa-m2>.
[ 9.631216] systemd[1]: Configuration file /run/systemd/system/netplan-ovs-cleanup.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
[ 9.658744] systemd[1]: Queued start job for default target graphical.target.
[ 9.673507] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[ 9.673697] systemd[1]: Created slice system-systemd\x2dcryptsetup.slice - Encrypted Volume Units Service Slice.
[ 9.673876] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[ 9.673971] systemd[1]: Created slice user.slice - User and Session Slice.
[ 9.674000] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[ 9.674094] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[ 9.674105] systemd[1]: Expecting device dev-disk-by\x2duuid-167A\x2d6858.device - /dev/disk/by-uuid/167A-6858...
[ 9.674110] systemd[1]: Expecting device dev-disk-by\x2duuid-1a8d8cdb\x2d8d8f\x2d4689\x2db744\x2d8f32d2067f56.device - /dev/disk/by-uuid/1a8d8cdb-8d8f-4689-b744-8f32d2067f56...
[ 9.674114] systemd[1]: Expecting device dev-disk-by\x2duuid-aa8cb093\x2d9cb3\x2d4cc7\x2db44e\x2d4bff76ca37fb.device - /dev/disk/by-uuid/aa8cb093-9cb3-4cc7-b44e-4bff76ca37fb...
[ 9.674118] systemd[1]: Expecting device dev-disk-by\x2duuid-abbbc711\x2d9904\x2d466b\x2d8a35\x2d783f0d19bf50.device - /dev/disk/by-uuid/abbbc711-9904-466b-8a35-783f0d19bf50...
[ 9.674122] systemd[1]: Expecting device dev-mapper-luks\x2d1a8d8cdb\x2d8d8f\x2d4689\x2db744\x2d8f32d2067f56.device - /dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56...
[ 9.674134] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[ 9.674148] systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups.
[ 9.674154] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[ 9.674160] systemd[1]: Reached target slices.target - Slice Units.
[ 9.674167] systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
[ 9.674180] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[ 9.674214] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[ 9.674509] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[ 9.674802] systemd[1]: Listening on syslog.socket - Syslog Socket.
[ 9.674840] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[ 9.674863] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[ 9.674902] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[ 9.674946] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[ 9.674970] systemd[1]: systemd-pcrextend.socket - TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 9.675372] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ 9.675405] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 9.676838] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[ 9.677371] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[ 9.677929] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[ 9.678411] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[ 9.680176] systemd[1]: Starting systemd-journald.service - Journal Service...
[ 9.680223] systemd[1]: Finished blk-availability.service - Availability of block devices.
[ 9.680901] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[ 9.681376] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[ 9.681851] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[ 9.682309] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 9.682778] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[ 9.683157] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[ 9.683627] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[ 9.684173] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[ 9.684653] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[ 9.685328] systemd[1]: Starting modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics...
[ 9.685838] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[ 9.685847] systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 9.686181] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[ 9.686202] systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 9.686564] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ 9.687082] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[ 9.687123] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ 9.687152] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ 9.687179] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ 9.687263] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ 9.687361] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 9.687420] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[ 9.687515] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 9.687584] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[ 9.687696] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 9.687745] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[ 9.687832] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 9.687844] pstore: Using crash dump compression: deflate
[ 9.687882] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[ 9.687960] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 9.688006] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[ 9.688572] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[ 9.689154] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[ 9.689176] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[ 9.689378] systemd-journald[821]: Collecting audit messages is disabled.
[ 9.689569] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[ 9.691429] BTRFS info (device dm-0 state M): turning on sync discard
[ 9.691434] BTRFS info (device dm-0 state M): enabling auto defrag
[ 9.691435] BTRFS info (device dm-0 state M): use lzo compression, level 0
[ 9.691730] Key type psk registered
[ 9.691798] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[ 9.691935] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[ 9.692694] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[ 9.693184] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[ 9.693196] systemd[1]: systemd-tpm2-setup.service - TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 9.693494] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[ 9.698161] systemd[1]: modprobe@nvme_fabrics.service: Deactivated successfully.
[ 9.698279] systemd[1]: Finished modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics.
[ 9.699579] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[ 9.699694] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
[ 9.700429] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[ 9.712826] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[ 9.722671] lp: driver loaded but no devices found
[ 9.723270] systemd[1]: Started systemd-journald.service - Journal Service.
[ 9.728481] ppdev: user-space parallel port driver
[ 9.732172] systemd-journald[821]: Received client request to flush runtime journal.
[ 9.749884] pstore: Registered efi_pstore as persistent store backend
[ 9.751863] systemd-journald[821]: /var/log/journal/86d43f3761a64806a644a560706664c5/system.journal: Journal file uses a different sequence number ID, rotating.
[ 9.751867] systemd-journald[821]: Rotating system journal.
[ 9.783239] loop0: detected capacity change from 0 to 152056
[ 9.783466] loop1: detected capacity change from 0 to 152112
[ 9.784310] loop2: detected capacity change from 0 to 21952
[ 9.784429] loop3: detected capacity change from 0 to 8
[ 9.785650] loop4: detected capacity change from 0 to 1034424
[ 9.785749] loop5: detected capacity change from 0 to 22752
[ 9.786311] loop6: detected capacity change from 0 to 187776
[ 9.788838] loop7: detected capacity change from 0 to 79328
[ 9.789842] loop8: detected capacity change from 0 to 79520
[ 9.793164] BTRFS info: devid 1 device path /dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 changed to /dev/dm-0 scanned by (udev-worker) (889)
[ 9.794928] BTRFS info: devid 1 device path /dev/dm-0 changed to /dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 scanned by (udev-worker) (889)
[ 9.814801] Consider using thermal netlink events interface
[ 9.815847] input: Intel HID events as /devices/platform/INTC1051:00/input/input14
[ 9.826248] intel_pmc_core INT33A1:00: initialized
[ 9.855434] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 9.855568] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 9.855663] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 9.856083] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 9.858849] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 9.858911] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 9.867387] i2c i2c-2: Successfully instantiated SPD at 0x50
[ 9.870468] Intel(R) Wireless WiFi driver for Linux
[ 9.872312] iwlwifi 0000:00:14.3: Detected crf-id 0x400410, cnv-id 0x80401 wfpm id 0x80000020
[ 9.872338] iwlwifi 0000:00:14.3: PCI dev 7a70/0094, rev=0x430, rfid=0x2010d000
[ 9.872340] iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6E AX211 160MHz
[ 9.872406] iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-so-a0-gf-a0-89.ucode failed with error -2
[ 9.872419] iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-so-a0-gf-a0-88.ucode failed with error -2
[ 9.872430] iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-so-a0-gf-a0-87.ucode failed with error -2
[ 9.876336] iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.0.2.41
[ 9.876614] iwlwifi 0000:00:14.3: loaded firmware version 86.fb5c9aeb.0 so-a0-gf-a0-86.ucode op_mode iwlmvm
[ 9.881755] intel_rapl_msr: PL4 support detected.
[ 9.881811] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[ 9.881814] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 9.881815] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 9.881815] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[ 9.881816] RAPL PMU: hw unit of domain psys 2^-14 Joules
[ 9.881824] intel_rapl_common: Found RAPL domain package
[ 9.881827] intel_rapl_common: Found RAPL domain core
[ 9.881828] intel_rapl_common: Found RAPL domain uncore
[ 9.881830] intel_rapl_common: Found RAPL domain psys
[ 9.887634] spd5118 2-0050: DDR5 temperature sensor: vendor 0x06:0x32 revision 1.6
[ 9.889578] Bluetooth: Core ver 2.22
[ 9.889594] NET: Registered PF_BLUETOOTH protocol family
[ 9.889595] Bluetooth: HCI device and connection manager initialized
[ 9.889598] Bluetooth: HCI socket layer initialized
[ 9.889599] Bluetooth: L2CAP socket layer initialized
[ 9.889602] Bluetooth: SCO socket layer initialized
[ 9.900437] Creating 1 MTD partitions on "0000:00:1f.5":
[ 9.900464] 0x000000000000-0x000002000000 : "BIOS"
[ 9.904753] mc: Linux media interface: v0.10
[ 9.919485] videodev: Linux video capture interface: v2.00
[ 9.922122] intel_rapl_common: Found RAPL domain package
[ 9.934090] usbcore: registered new interface driver btusb
[ 9.936254] Bluetooth: hci0: Device revision is 0
[ 9.936259] Bluetooth: hci0: Secure boot is enabled
[ 9.936261] Bluetooth: hci0: OTP lock is enabled
[ 9.936262] Bluetooth: hci0: API lock is enabled
[ 9.936263] Bluetooth: hci0: Debug lock is disabled
[ 9.936264] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[ 9.936265] Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38
[ 9.936507] Bluetooth: hci0: DSM reset method type: 0x00
[ 9.941064] Bluetooth: hci0: Found device firmware: intel/ibt-1040-0041.sfi
[ 9.941079] Bluetooth: hci0: Boot Address: 0x100800
[ 9.941081] Bluetooth: hci0: Firmware Version: 60-48.23
[ 10.025954] i915 0000:00:02.0: [drm] Found ALDERLAKE_S/RPL-S (device ID a788) display version 12.00 stepping D0
[ 10.026736] i915 0000:00:02.0: [drm] VT-d active for gfx access
[ 10.072075] MXM: GUID detected in BIOS
[ 10.072216] pci 0000:02:00.0: optimus capabilities: enabled, status dynamic power, hda bios codec supported
[ 10.072219] VGA switcheroo: detected Optimus DSM method \_SB_.PC00.PEG2.PEGP handle
[ 10.072220] nouveau: detected PR support, will not use DSM
[ 10.072237] nouveau 0000:02:00.0: enabling device (0400 -> 0403)
[ 10.072343] nouveau 0000:02:00.0: NVIDIA AD104 (194000a1)
[ 10.075165] intel_tcc_cooling: Programmable TCC Offset detected
[ 10.075892] usb 1-6: Found UVC 1.50 device Chicony USB2.0 Camera (04f2:b7e7)
[ 10.083100] i915 0000:00:02.0: vgaarb: deactivate vga console
[ 10.083166] i915 0000:00:02.0: [drm] Using Transparent Hugepages
[ 10.083959] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=io+mem
[ 10.090099] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/adls_dmc_ver2_01.bin (v2.1)
[ 10.091058] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[ 10.091420] snd_hda_intel 0000:02:00.1: enabling device (0000 -> 0002)
[ 10.091476] snd_hda_intel 0000:02:00.1: Disabling MSI
[ 10.091480] snd_hda_intel 0000:02:00.1: Handle vga_switcheroo audio client
[ 10.104581] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/tgl_guc_70.bin version 70.20.0
[ 10.104585] i915 0000:00:02.0: [drm] GT0: HuC firmware i915/tgl_huc.bin version 7.9.3
[ 10.109077] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[ 10.109109] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[ 10.109118] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[ 10.109128] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[ 10.109541] iwlwifi 0000:00:14.3: loaded PNVM version e28bb9d7
[ 10.110201] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
[ 10.112344] i915 0000:00:02.0: [drm] GT0: HuC: authenticated for all workloads
[ 10.113089] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
[ 10.113090] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
[ 10.113529] i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
[ 10.114343] mei_pxp 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1: bound 0000:00:02.0 (ops tfp410_ops [i915])
[ 10.114400] i915 0000:00:02.0: [drm] Protected Xe Path (PXP) protected content support initialized
[ 10.114403] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i9xx_always_on_power_well_ops [i915])
[ 10.123246] usb 1-6: Found UVC 1.50 device Chicony USB2.0 Camera (04f2:b7e7)
[ 10.126494] iwlwifi 0000:00:14.3: Detected RF GF, rfid=0x2010d000
[ 10.134007] usbcore: registered new interface driver uvcvideo
[ 10.156254] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card0/input15
[ 10.156292] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card0/input16
[ 10.156313] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card0/input17
[ 10.156333] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card0/input18
[ 10.194996] iwlwifi 0000:00:14.3: base HW address: dc:97:ba:75:8a:32
[ 10.227977] iwlwifi 0000:00:14.3 wlp0s20f3: renamed from wlan0
[ 10.243026] nouveau 0000:02:00.0: bios: version 95.04.63.00.24
[ 10.708501] BTRFS: device label kfocus_boot devid 1 transid 285 /dev/nvme0n1p2 (259:2) scanned by mount (1154)
[ 10.708952] BTRFS info (device nvme0n1p2): first mount of filesystem abbbc711-9904-466b-8a35-783f0d19bf50
[ 10.708965] BTRFS info (device nvme0n1p2): using crc32c (crc32c-intel) checksum algorithm
[ 10.708968] BTRFS info (device nvme0n1p2): using free-space-tree
[ 10.720225] Adding 524284k swap on /swap/swapfile. Priority:-2 extents:2 across:1686444k SS
[ 10.742928] audit: type=1400 audit(1729700483.313:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="cam" pid=1217 comm="apparmor_parser"
[ 10.742933] audit: type=1400 audit(1729700483.313:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="chrome" pid=1220 comm="apparmor_parser"
[ 10.742949] audit: type=1400 audit(1729700483.313:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=1214 comm="apparmor_parser"
[ 10.742966] audit: type=1400 audit(1729700483.313:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="busybox" pid=1216 comm="apparmor_parser"
[ 10.743054] audit: type=1400 audit(1729700483.313:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=1211 comm="apparmor_parser"
[ 10.743138] audit: type=1400 audit(1729700483.313:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-checkns" pid=1218 comm="apparmor_parser"
[ 10.743143] audit: type=1400 audit(1729700483.313:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="vscode" pid=1221 comm="apparmor_parser"
[ 10.743145] audit: type=1400 audit(1729700483.313:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=1209 comm="apparmor_parser"
[ 10.743153] audit: type=1400 audit(1729700483.313:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="buildah" pid=1215 comm="apparmor_parser"
[ 10.743169] audit: type=1400 audit(1729700483.313:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=1213 comm="apparmor_parser"
[ 11.183971] nouveau 0000:02:00.0: drm: VRAM: 12282 MiB
[ 11.183974] nouveau 0000:02:00.0: drm: GART: 536870912 MiB
[ 11.240499] nouveau 0000:02:00.0: drm: MM: using COPY for buffer copies
[ 11.267239] snd_hda_intel 0000:02:00.1: bound 0000:02:00.0 (ops disp50xx_modifiers [nouveau])
[ 11.272961] [drm] Initialized nouveau 1.4.0 for 0000:02:00.0 on minor 2
[ 11.275846] nouveau 0000:02:00.0: [drm] Cannot find any crtc or sizes
[ 11.281363] nouveau 0000:02:00.0: [drm] Cannot find any crtc or sizes
[ 11.282470] nouveau 0000:02:00.0: [drm] Cannot find any crtc or sizes
[ 11.336539] Bluetooth: hci0: Waiting for firmware download to complete
[ 11.337238] Bluetooth: hci0: Firmware loaded in 1363446 usecs
[ 11.337292] Bluetooth: hci0: Waiting for device to boot
[ 11.353321] Bluetooth: hci0: Device booted in 15676 usecs
[ 11.353412] Bluetooth: hci0: Malformed MSFT vendor event: 0x02
[ 11.355593] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-1040-0041.ddc
[ 11.357464] Bluetooth: hci0: Applying Intel DDC parameters completed
[ 11.360345] Bluetooth: hci0: Firmware timestamp 2023.48 buildtype 1 build 75324
[ 11.360351] Bluetooth: hci0: Firmware SHA1: 0x23bac558
[ 11.364376] Bluetooth: hci0: Fseq status: Success (0x00)
[ 11.364388] Bluetooth: hci0: Fseq executed: 00.00.02.41
[ 11.364393] Bluetooth: hci0: Fseq BT Top: 00.00.02.41
[ 11.787454] i915 0000:00:02.0: [drm] Skipping intel_backlight registration
[ 11.787931] [drm] Initialized i915 1.6.0 for 0000:00:02.0 on minor 1
[ 11.788455] ACPI: video: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[ 11.788504] ACPI: video: Video Device [PEGP] (multi-head: yes rom: no post: no)
[ 11.788600] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:05/LNXVIDEO:00/input/input19
[ 11.791189] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 11.791669] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input20
[ 11.794597] fbcon: i915drmfb (fb0) is primary device
[ 11.794602] fbcon: Deferring console take-over
[ 11.794625] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[ 11.796558] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_fence_ops [i915])
[ 11.814796] vga_switcheroo: enabled
[ 11.832609] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC1220: line_outs=1 (0x1b/0x0/0x0/0x0/0x0) type:speaker
[ 11.832618] snd_hda_codec_realtek hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 11.832621] snd_hda_codec_realtek hdaudioC1D0: hp_outs=1 (0x14/0x0/0x0/0x0/0x0)
[ 11.832624] snd_hda_codec_realtek hdaudioC1D0: mono: mono_out=0x0
[ 11.832625] snd_hda_codec_realtek hdaudioC1D0: dig-out=0x1e/0x0
[ 11.832627] snd_hda_codec_realtek hdaudioC1D0: inputs:
[ 11.832629] snd_hda_codec_realtek hdaudioC1D0: Headset Mic=0x19
[ 11.832631] snd_hda_codec_realtek hdaudioC1D0: Mic=0x18
[ 11.832633] snd_hda_codec_realtek hdaudioC1D0: Internal Mic=0x12
[ 11.862547] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card1/input21
[ 11.862597] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card1/input22
[ 11.862630] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card1/input23
[ 11.862654] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card1/input24
[ 11.862681] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card1/input25
[ 11.862706] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card1/input26
[ 12.020790] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 12.020794] Bluetooth: BNEP filters: protocol multicast
[ 12.020797] Bluetooth: BNEP socket layer initialized
[ 12.021707] Bluetooth: MGMT ver 1.23
[ 12.027363] NET: Registered PF_ALG protocol family
[ 12.065399] loop9: detected capacity change from 0 to 8
[ 12.082321] NET: Registered PF_QIPCRTR protocol family
[ 12.592932] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[ 12.592962] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[ 12.592971] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[ 12.592980] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[ 12.594042] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
[ 12.694542] iwlwifi 0000:00:14.3: Registered PHC clock: iwlwifi-PTP, with index: 1
[ 15.333558] igc 0000:03:00.0 enp3s0: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[ 20.225673] thunderbolt 0000:06:00.0: 0: suspending switch
[ 20.225677] thunderbolt 0000:06:00.0: 0: enabling wakeup: 0x3f
[ 20.226784] thunderbolt 0000:06:00.0: stopping RX ring 0
[ 20.226797] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[ 20.226975] thunderbolt 0000:06:00.0: stopping TX ring 0
[ 20.226991] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[ 20.226998] thunderbolt 0000:06:00.0: control channel stopped
[ 25.388142] Bluetooth: RFCOMM TTY layer initialized
[ 25.388148] Bluetooth: RFCOMM socket layer initialized
[ 25.388150] Bluetooth: RFCOMM ver 1.11
[ 570.464648] thunderbolt 0000:06:00.0: control channel starting...
[ 570.464661] thunderbolt 0000:06:00.0: starting TX ring 0
[ 570.464679] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 570.464686] thunderbolt 0000:06:00.0: starting RX ring 0
[ 570.464696] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 570.464709] thunderbolt 0000:06:00.0: 0: resuming switch
[ 570.464713] thunderbolt 0000:06:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[ 570.465126] thunderbolt 0000:06:00.0: 0: disabling wakeup
[ 570.465468] thunderbolt 0000:06:00.0: acking hot plug event on 0:13
[ 570.465638] thunderbolt 0000:06:00.0: acking hot plug event on 0:14
[ 570.465703] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
[ 570.466117] xhci_hcd 0000:2d:00.0: xHC error in resume, USBSTS 0x401, Reinit
[ 570.466129] usb usb3: root hub lost power or was reset
[ 570.466134] usb usb4: root hub lost power or was reset
[ 570.474094] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
[ 570.474099] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
[ 570.474221] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
[ 570.474224] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[ 570.474733] thunderbolt 0000:06:00.0: 0: TMU: mode set to: bi-directional, HiFi
[ 570.476426] thunderbolt 0000:06:00.0: 0:13: DP IN resource available after hotplug
[ 570.476430] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 570.476534] thunderbolt 0000:06:00.0: 0:13: DP IN available
[ 570.476535] thunderbolt 0000:06:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[ 570.476662] thunderbolt 0000:06:00.0: 0:14: DP IN resource available after hotplug
[ 570.476664] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 570.476798] thunderbolt 0000:06:00.0: 0:13: DP IN available
[ 570.476803] thunderbolt 0000:06:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[ 570.476918] thunderbolt 0000:06:00.0: 0:14: DP IN available
[ 570.476919] thunderbolt 0000:06:00.0: 0:14: no suitable DP OUT adapter available, not tunneling
[ 588.718848] thunderbolt 0000:06:00.0: 0: suspending switch
[ 588.718866] thunderbolt 0000:06:00.0: 0: enabling wakeup: 0x3f
[ 588.720505] thunderbolt 0000:06:00.0: stopping RX ring 0
[ 588.720528] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[ 588.720569] thunderbolt 0000:06:00.0: stopping TX ring 0
[ 588.720583] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[ 588.720601] thunderbolt 0000:06:00.0: control channel stopped
[ 2853.849107] systemd-journald[821]: /var/log/journal/86d43f3761a64806a644a560706664c5/user-1000.journal: Journal file uses a different sequence number ID, rotating.
[ 2855.792552] warning: `kded5' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[ 2856.815169] thunderbolt 0000:06:00.0: control channel starting...
[ 2856.815174] thunderbolt 0000:06:00.0: starting TX ring 0
[ 2856.815190] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 2856.815194] thunderbolt 0000:06:00.0: starting RX ring 0
[ 2856.815200] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 2856.815206] thunderbolt 0000:06:00.0: 0: resuming switch
[ 2856.815208] thunderbolt 0000:06:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[ 2856.815386] thunderbolt 0000:06:00.0: acking hot plug event on 0:13
[ 2856.815559] thunderbolt 0000:06:00.0: acking hot plug event on 0:14
[ 2856.815626] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
[ 2856.815831] xhci_hcd 0000:2d:00.0: xHC error in resume, USBSTS 0x401, Reinit
[ 2856.815834] usb usb3: root hub lost power or was reset
[ 2856.815836] usb usb4: root hub lost power or was reset
[ 2856.816885] thunderbolt 0000:06:00.0: 0: disabling wakeup
[ 2856.826783] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
[ 2856.826790] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
[ 2856.826909] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
[ 2856.826913] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[ 2856.827423] thunderbolt 0000:06:00.0: 0: TMU: mode set to: bi-directional, HiFi
[ 2856.829241] thunderbolt 0000:06:00.0: 0:13: DP IN resource available after hotplug
[ 2856.829248] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 2856.829272] thunderbolt 0000:06:00.0: 0:13: DP IN available
[ 2856.829274] thunderbolt 0000:06:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[ 2856.829404] thunderbolt 0000:06:00.0: 0:14: DP IN resource available after hotplug
[ 2856.829406] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 2856.829528] thunderbolt 0000:06:00.0: 0:13: DP IN available
[ 2856.829530] thunderbolt 0000:06:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[ 2856.829659] thunderbolt 0000:06:00.0: 0:14: DP IN available
[ 2856.829663] thunderbolt 0000:06:00.0: 0:14: no suitable DP OUT adapter available, not tunneling
[ 2861.450869] wlp0s20f3: authenticate with a0:55:1f:2f:2c:93 (local address=dc:97:ba:75:8a:32)
[ 2861.452748] wlp0s20f3: send auth to a0:55:1f:2f:2c:93 (try 1/3)
[ 2861.497119] wlp0s20f3: authenticate with a0:55:1f:2f:2c:93 (local address=dc:97:ba:75:8a:32)
[ 2861.497589] wlp0s20f3: send auth to a0:55:1f:2f:2c:93 (try 1/3)
[ 2861.498980] wlp0s20f3: authenticated
[ 2861.499754] wlp0s20f3: associate with a0:55:1f:2f:2c:93 (try 1/3)
[ 2861.514163] wlp0s20f3: RX AssocResp from a0:55:1f:2f:2c:93 (capab=0x1011 status=0 aid=14)
[ 2861.521955] wlp0s20f3: associated
[ 2863.199657] workqueue: pm_runtime_work hogged CPU for >10000us 4 times, consider switching to WQ_UNBOUND
[ 2875.282349] thunderbolt 0000:06:00.0: 0: suspending switch
[ 2875.282359] thunderbolt 0000:06:00.0: 0: enabling wakeup: 0x3f
[ 2875.283649] thunderbolt 0000:06:00.0: stopping RX ring 0
[ 2875.283661] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[ 2875.283681] thunderbolt 0000:06:00.0: stopping TX ring 0
[ 2875.283698] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[ 2875.283708] thunderbolt 0000:06:00.0: control channel stopped
[ 2915.283167] workqueue: pm_runtime_work hogged CPU for >10000us 5 times, consider switching to WQ_UNBOUND
[ 2950.492372] usb 1-10: new full-speed USB device number 5 using xhci_hcd
[ 2950.630555] usb 1-10: not running at top speed; connect to a high speed hub
[ 2950.644806] usb 1-10: New USB device found, idVendor=2109, idProduct=0103, bcdDevice= 2.00
[ 2950.644820] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2950.644825] usb 1-10: Product: USB 2.0 BILLBOARD
[ 2950.644830] usb 1-10: Manufacturer: VIA Technologies Inc.
[ 2950.644834] usb 1-10: SerialNumber: 0000000000000001
[ 3044.625919] thunderbolt 0000:06:00.0: control channel starting...
[ 3044.625931] thunderbolt 0000:06:00.0: starting TX ring 0
[ 3044.625949] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 3044.625956] thunderbolt 0000:06:00.0: starting RX ring 0
[ 3044.625967] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 3044.625980] thunderbolt 0000:06:00.0: 0: resuming switch
[ 3044.625984] thunderbolt 0000:06:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[ 3044.626699] thunderbolt 0000:06:00.0: acking hot plug event on 0:14
[ 3044.626773] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
[ 3044.627010] xhci_hcd 0000:2d:00.0: xHC error in resume, USBSTS 0x401, Reinit
[ 3044.627020] usb usb3: root hub lost power or was reset
[ 3044.627027] usb usb4: root hub lost power or was reset
[ 3044.629043] thunderbolt 0000:06:00.0: 0: disabling wakeup
[ 3044.637977] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
[ 3044.637984] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
[ 3044.638102] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
[ 3044.638107] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[ 3044.638621] thunderbolt 0000:06:00.0: 0: TMU: mode set to: bi-directional, HiFi
[ 3044.640183] thunderbolt 0000:06:00.0: 0:13: enter redrive mode, keeping powered
[ 3044.641097] thunderbolt 0000:06:00.0: 0:14: DP IN resource available after hotplug
[ 3044.641108] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 3044.641143] thunderbolt 0000:06:00.0: 0:14: DP IN available
[ 3044.641146] thunderbolt 0000:06:00.0: 0:14: no suitable DP OUT adapter available, not tunneling
[ 3044.708463] workqueue: pm_runtime_work hogged CPU for >10000us 7 times, consider switching to WQ_UNBOUND
[ 3046.118445] fbcon: Deferring console take-over
[ 3046.118449] nouveau 0000:02:00.0: [drm] fb1: nouveaudrmfb frame buffer device
[ 3047.743654] i915 0000:00:02.0: Using 39-bit DMA addresses
[ 3129.398283] usb 1-9: new high-speed USB device number 6 using xhci_hcd
[ 3129.415685] thunderbolt 0000:06:00.0: acking hot unplug event on 0:14
[ 3129.415798] thunderbolt 0000:06:00.0: 0:14: DP IN resource unavailable
[ 3129.416442] thunderbolt 0000:06:00.0: 0:14: enter redrive mode, keeping powered
[ 3129.416458] thunderbolt 0000:06:00.0: bandwidth consumption changed, re-calculating estimated bandwidth
[ 3129.416465] thunderbolt 0000:06:00.0: bandwidth re-calculation done
[ 3129.416470] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 3129.416473] thunderbolt 0000:06:00.0: no suitable DP IN adapter available, not tunneling
[ 3129.542579] usb 1-9: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.49
[ 3129.542592] usb 1-9: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3129.542596] usb 1-9: Product: 4-Port USB 2.0 Hub
[ 3129.542599] usb 1-9: Manufacturer: Generic
[ 3129.546460] hub 1-9:1.0: USB hub found
[ 3129.547858] hub 1-9:1.0: 4 ports detected
[ 3130.778282] usb 1-9.3: new full-speed USB device number 7 using xhci_hcd
[ 3130.865790] usb 1-9.3: New USB device found, idVendor=043e, idProduct=9a39, bcdDevice= 4.11
[ 3130.865794] usb 1-9.3: New USB device strings: Mfr=1, Product=3, SerialNumber=4
[ 3130.865795] usb 1-9.3: Product: LG Monitor Controls
[ 3130.865795] usb 1-9.3: Manufacturer: LG Electronics Inc.
[ 3130.865796] usb 1-9.3: SerialNumber: 005INTX1F153
[ 3130.874624] hid-generic 0003:043E:9A39.0003: hiddev1,hidraw2: USB HID v1.11 Device [LG Electronics Inc. LG Monitor Controls] on usb-0000:00:14.0-9.3/input0
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-10-23 22:44 ` Aaron Rainbolt
@ 2024-10-24 15:43 ` Mika Westerberg
2024-10-31 14:55 ` Aaron Rainbolt
0 siblings, 1 reply; 29+ messages in thread
From: Mika Westerberg @ 2024-10-24 15:43 UTC (permalink / raw)
To: Aaron Rainbolt
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
Hi,
On Wed, Oct 23, 2024 at 05:44:13PM -0500, Aaron Rainbolt wrote:
> Hey, thanks for taking a look! Our tester re-did the tests with kernel
> 6.12~rc4, and reported the following results doing so, along with
> another dmesg log. I think your question about xrandr is answered in
> this report. The dmesg log is attached.
>
> With the vanilla rc4 kernel plus your patch from earlier:
>
> -----
>
> 1. Start with Laptop powered-off
> 2. Unplug all USB-C connectors.
> 3. Boot Kubuntu 24.04 with patched kernel 6.12.0-rc4, add cmdline
> parameter thunderbolt.dyndbg=+p. All other optional parameters were
> removed.
> 4. Log in to normal SDDM to KDE 5.27.11.
> 5. Open 'Display Settings KCM' to view display detection.
> 6. Plug in one UBC-C connector attached to 4k display.
> * Note these work with Kernel 6.1 and non-Barlow Ridge systems (TBT
> 4).
> * Display does not wake up.
> * Display never appears in 'Display Settings KCM.'
> * This is NOT desired behavior; display should show.
> * (Note: The test results I was given do not mention xrandr here,
> however as subsequent results mention it I believe that the
> monitor does *not* appear in xrandr here. I will double-check
> to be sure.)
> Notes:
>
> 1. With debug off, the recognition of screens is better, and previously
> "just worked", at least for one screen.
> 2. W11 updated works, as do kernels Kernels 6.1 and earlier.
> 3. W11 from Q4 2022 (pre-update) and kernels 6.5+ do not. With both,
> the screens usually initially attach and then time out after 15s.
Yea, they work because we added Barlow Ridge support later and this
problem is specific only on it. None of the integrated or Maple Ridge
suffers from this "feature".
Below is an updated patch. This one checks if the DP resource is
available before it adds it. I hope this covers the case where we get
the hotplugs even when you have Type-C cable plugged (it should not
happen, and does not happen on my test system but I have newer firmwre
so could be firmware related). I wonder if you can try that one too with
the same flow as above (up to step 6).
The checkerboard is unrelated issue so I would deal that separarely with
the nouveau folks. The Thunderbolt/USB4 driver has no visibility what is
going on with the redriven DP signaling except that it tries to keep the
thing powered as long as it is needed.
diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
index 07a66594e904..ee5c8ba75baa 100644
--- a/drivers/thunderbolt/tb.c
+++ b/drivers/thunderbolt/tb.c
@@ -2113,6 +2113,37 @@ static void tb_exit_redrive(struct tb_port *port)
}
}
+static void tb_switch_enter_redrive(struct tb_switch *sw)
+{
+ struct tb_port *port;
+
+ tb_switch_for_each_port(sw, port)
+ tb_enter_redrive(port);
+}
+
+/*
+ * Called during system and runtime suspend to forcefully exit redrive
+ * mode without querying whether the resource is available.
+ */
+static void tb_switch_exit_redrive(struct tb_switch *sw)
+{
+ struct tb_port *port;
+
+ if (!(sw->quirks & QUIRK_KEEP_POWER_IN_DP_REDRIVE))
+ return;
+
+ tb_switch_for_each_port(sw, port) {
+ if (!tb_port_is_dpin(port))
+ continue;
+
+ if (port->redrive) {
+ port->redrive = false;
+ pm_runtime_put(&sw->dev);
+ tb_port_dbg(port, "exit redrive mode\n");
+ }
+ }
+}
+
static void tb_dp_resource_unavailable(struct tb *tb, struct tb_port *port,
const char *reason)
{
@@ -2157,8 +2188,17 @@ static void tb_dp_resource_available(struct tb *tb, struct tb_port *port)
return;
}
- tb_port_dbg(port, "DP %s resource available after hotplug\n",
- tb_port_is_dpin(port) ? "IN" : "OUT");
+ if (tb_port_is_dpin(port)) {
+ /* Verify that the resource is really available */
+ if (!tb_switch_query_dp_resource(port->sw, port)) {
+ tb_port_info(port, "got hotplug but DP IN resource not available\n");
+ return;
+ }
+ tb_port_dbg(port, "DP IN resource available after hotplug\n");
+ } else {
+ tb_port_dbg(port, "DP OUT resource available after hotplug\n");
+ }
+
list_add_tail(&port->list, &tcm->dp_resources);
tb_exit_redrive(port);
@@ -2987,6 +3027,7 @@ static int tb_start(struct tb *tb, bool reset)
tb_create_usb3_tunnels(tb->root_switch);
/* Add DP IN resources for the root switch */
tb_add_dp_resources(tb->root_switch);
+ tb_switch_enter_redrive(tb->root_switch);
/* Make the discovered switches available to the userspace */
device_for_each_child(&tb->root_switch->dev, NULL,
tb_scan_finalize_switch);
@@ -3002,6 +3043,7 @@ static int tb_suspend_noirq(struct tb *tb)
tb_dbg(tb, "suspending...\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; /* signal tb_handle_hotplug to quit */
tb_dbg(tb, "suspend finished\n");
@@ -3094,6 +3136,7 @@ static int tb_resume_noirq(struct tb *tb)
tb_dbg(tb, "tunnels restarted, sleeping for 100ms\n");
msleep(100);
}
+ tb_switch_enter_redrive(tb->root_switch);
/* Allow tb_handle_hotplug to progress events */
tcm->hotplug_active = true;
tb_dbg(tb, "resume finished\n");
@@ -3157,6 +3200,8 @@ static int tb_runtime_suspend(struct tb *tb)
struct tb_cm *tcm = tb_priv(tb);
mutex_lock(&tb->lock);
+ tb_disconnect_and_release_dp(tb);
+ tb_switch_exit_redrive(tb->root_switch);
tb_switch_suspend(tb->root_switch, true);
tcm->hotplug_active = false;
mutex_unlock(&tb->lock);
@@ -3188,6 +3233,7 @@ static int tb_runtime_resume(struct tb *tb)
tb_restore_children(tb->root_switch);
list_for_each_entry_safe(tunnel, n, &tcm->tunnel_list, list)
tb_tunnel_activate(tunnel);
+ tb_switch_enter_redrive(tb->root_switch);
tcm->hotplug_active = true;
mutex_unlock(&tb->lock);
^ permalink raw reply related [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-10-24 15:43 ` Mika Westerberg
@ 2024-10-31 14:55 ` Aaron Rainbolt
2024-11-01 7:21 ` Mika Westerberg
0 siblings, 1 reply; 29+ messages in thread
From: Aaron Rainbolt @ 2024-10-31 14:55 UTC (permalink / raw)
To: Mika Westerberg
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
[-- Attachment #1: Type: text/plain, Size: 7221 bytes --]
On Thu, 24 Oct 2024 18:43:41 +0300
Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
> Hi,
>
> On Wed, Oct 23, 2024 at 05:44:13PM -0500, Aaron Rainbolt wrote:
> > Hey, thanks for taking a look! Our tester re-did the tests with
> > kernel 6.12~rc4, and reported the following results doing so, along
> > with another dmesg log. I think your question about xrandr is
> > answered in this report. The dmesg log is attached.
> >
> > With the vanilla rc4 kernel plus your patch from earlier:
> >
> > -----
> >
> > 1. Start with Laptop powered-off
> > 2. Unplug all USB-C connectors.
> > 3. Boot Kubuntu 24.04 with patched kernel 6.12.0-rc4, add cmdline
> > parameter thunderbolt.dyndbg=+p. All other optional parameters
> > were removed.
> > 4. Log in to normal SDDM to KDE 5.27.11.
> > 5. Open 'Display Settings KCM' to view display detection.
> > 6. Plug in one UBC-C connector attached to 4k display.
> > * Note these work with Kernel 6.1 and non-Barlow Ridge systems
> > (TBT 4).
> > * Display does not wake up.
> > * Display never appears in 'Display Settings KCM.'
> > * This is NOT desired behavior; display should show.
> > * (Note: The test results I was given do not mention xrandr here,
> > however as subsequent results mention it I believe that the
> > monitor does *not* appear in xrandr here. I will double-check
> > to be sure.)
> > Notes:
> >
> > 1. With debug off, the recognition of screens is better, and
> > previously "just worked", at least for one screen.
> > 2. W11 updated works, as do kernels Kernels 6.1 and earlier.
> > 3. W11 from Q4 2022 (pre-update) and kernels 6.5+ do not. With both,
> > the screens usually initially attach and then time out after
> > 15s.
>
> Yea, they work because we added Barlow Ridge support later and this
> problem is specific only on it. None of the integrated or Maple Ridge
> suffers from this "feature".
>
> Below is an updated patch. This one checks if the DP resource is
> available before it adds it. I hope this covers the case where we get
> the hotplugs even when you have Type-C cable plugged (it should not
> happen, and does not happen on my test system but I have newer firmwre
> so could be firmware related). I wonder if you can try that one too
> with the same flow as above (up to step 6).
>
> The checkerboard is unrelated issue so I would deal that separarely
> with the nouveau folks. The Thunderbolt/USB4 driver has no visibility
> what is going on with the redriven DP signaling except that it tries
> to keep the thing powered as long as it is needed.
>
> diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
> index 07a66594e904..ee5c8ba75baa 100644
> --- a/drivers/thunderbolt/tb.c
> +++ b/drivers/thunderbolt/tb.c
> @@ -2113,6 +2113,37 @@ static void tb_exit_redrive(struct tb_port
> *port) }
> }
>
> +static void tb_switch_enter_redrive(struct tb_switch *sw)
> +{
> + struct tb_port *port;
> +
> + tb_switch_for_each_port(sw, port)
> + tb_enter_redrive(port);
> +}
> +
> +/*
> + * Called during system and runtime suspend to forcefully exit
> redrive
> + * mode without querying whether the resource is available.
> + */
> +static void tb_switch_exit_redrive(struct tb_switch *sw)
> +{
> + struct tb_port *port;
> +
> + if (!(sw->quirks & QUIRK_KEEP_POWER_IN_DP_REDRIVE))
> + return;
> +
> + tb_switch_for_each_port(sw, port) {
> + if (!tb_port_is_dpin(port))
> + continue;
> +
> + if (port->redrive) {
> + port->redrive = false;
> + pm_runtime_put(&sw->dev);
> + tb_port_dbg(port, "exit redrive mode\n");
> + }
> + }
> +}
> +
> static void tb_dp_resource_unavailable(struct tb *tb, struct tb_port
> *port, const char *reason)
> {
> @@ -2157,8 +2188,17 @@ static void tb_dp_resource_available(struct tb
> *tb, struct tb_port *port) return;
> }
>
> - tb_port_dbg(port, "DP %s resource available after hotplug\n",
> - tb_port_is_dpin(port) ? "IN" : "OUT");
> + if (tb_port_is_dpin(port)) {
> + /* Verify that the resource is really available */
> + if (!tb_switch_query_dp_resource(port->sw, port)) {
> + tb_port_info(port, "got hotplug but DP IN
> resource not available\n");
> + return;
> + }
> + tb_port_dbg(port, "DP IN resource available after
> hotplug\n");
> + } else {
> + tb_port_dbg(port, "DP OUT resource available after
> hotplug\n");
> + }
> +
> list_add_tail(&port->list, &tcm->dp_resources);
> tb_exit_redrive(port);
>
> @@ -2987,6 +3027,7 @@ static int tb_start(struct tb *tb, bool reset)
> tb_create_usb3_tunnels(tb->root_switch);
> /* Add DP IN resources for the root switch */
> tb_add_dp_resources(tb->root_switch);
> + tb_switch_enter_redrive(tb->root_switch);
> /* Make the discovered switches available to the userspace */
> device_for_each_child(&tb->root_switch->dev, NULL,
> tb_scan_finalize_switch);
> @@ -3002,6 +3043,7 @@ static int tb_suspend_noirq(struct tb *tb)
>
> tb_dbg(tb, "suspending...\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; /* signal tb_handle_hotplug to
> quit */ tb_dbg(tb, "suspend finished\n");
> @@ -3094,6 +3136,7 @@ static int tb_resume_noirq(struct tb *tb)
> tb_dbg(tb, "tunnels restarted, sleeping for
> 100ms\n"); msleep(100);
> }
> + tb_switch_enter_redrive(tb->root_switch);
> /* Allow tb_handle_hotplug to progress events */
> tcm->hotplug_active = true;
> tb_dbg(tb, "resume finished\n");
> @@ -3157,6 +3200,8 @@ static int tb_runtime_suspend(struct tb *tb)
> struct tb_cm *tcm = tb_priv(tb);
>
> mutex_lock(&tb->lock);
> + tb_disconnect_and_release_dp(tb);
> + tb_switch_exit_redrive(tb->root_switch);
> tb_switch_suspend(tb->root_switch, true);
> tcm->hotplug_active = false;
> mutex_unlock(&tb->lock);
> @@ -3188,6 +3233,7 @@ static int tb_runtime_resume(struct tb *tb)
> tb_restore_children(tb->root_switch);
> list_for_each_entry_safe(tunnel, n, &tcm->tunnel_list, list)
> tb_tunnel_activate(tunnel);
> + tb_switch_enter_redrive(tb->root_switch);
> tcm->hotplug_active = true;
> mutex_unlock(&tb->lock);
>
Sorry for the delays, been working on testing the patch and had other
things taking priority.
I keep having to manually apply the patches you're sending "by hand" to
the latest mainline kernel because it doesn't apply cleanly. In
particular, I notice that in the very last "segment" of the patch (the
one that applies to tb_runtime_resume), the "list_for_each_entry_safe"
line shows that it's running "tb_tunnel_activate" in your tree, whereas
the upstream 6.12~rc5 code is running "tb_tunnel_restart" there. Would
it be too much of a hassle to ask for a patch that applies cleanly to
the 6.11.5 kernel? That would be very handy since that's the easiest
supported upstream kernel for us to test against, and would make sure
that we're not seeing any weird bugs as a result of kernel sources
mismatch.
I've attached the test results and dmesg logs from using the latest
patch with the 6.12~rc5 kernel. In summary, monitors aren't showing up
in xrandr when initially plugged in, but once "lspci -k" is run, they
are detected and remain powered on.
Thanks again for your help!
[-- Attachment #2: 2024-10-29_6.12.0-rc5_tbt-test-plan.md --]
[-- Type: text/markdown, Size: 9453 bytes --]
## Test 01
01. [x] Build kernel 6.12.0-rc5 with patch included.
02. [x] Remove all DKMS modules: All Nvidia, keyboard, etc.
03. [x] Ensure no peripherals are plugged in, including USB-C.
04. [x] Boot with thunderbolt.dyndbg=+p kernel parameter only.
- [x] Ensure dGPU is set in BIOS mux.
- [x] Default to Nouveau display driver.
05. [x] Sign in to SDDM to KDE 5.27.11 desktop
06. [x] Record `cat /proc/cmdline` here.
```bash
BOOT_IMAGE=/@boot/vmlinuz-6.12.0-rc5 root=UUID=aa8cb093-9cb3-4cc7-b44e-4bff76ca37fb ro rootflags=subvol=@ quiet cryptdevice=UUID=1a8d8cdb-8d8f-4689-b744-8f32d2067f56:luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 root=/dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 splash thunderbolt.dyndbg=+p vt.handoff=7
```
07. [x] Record `lsmod |grep -i nouveau` here.
```bash
lsmod |grep -i nouveau
#> nouveau 2678784 41
#> drm_gpuvm 36864 1 nouveau
#> drm_exec 12288 2 drm_gpuvm,nouveau
#> gpu_sched 49152 1 nouveau
#> drm_ttm_helper 12288 1 nouveau
#> ttm 94208 2 drm_ttm_helper,nouveau
#> drm_display_helper 225280 1 nouveau
#> mxm_wmi 12288 1 nouveau
#> i2c_algo_bit 16384 1 nouveau
#> video 69632 2 nvidia_wmi_ec_backlight,nouveau
#> wmi 24576 4 video,nvidia_wmi_ec_backlight,mxm_wmi,nouveau
glxinfo |grep -i mesa
#> GLX_INTEL_swap_event, GLX_MESA_copy_sub_buffer, GLX_OML_swap_method, client glx vendor string: Mesa Project and SGI
#> GLX_MESA_copy_sub_buffer, GLX_MESA_gl_interop, GLX_MESA_query_renderer,
#> GLX_MESA_swap_control, GLX_NV_float_buffer, GLX_OML_sync_control,
#> GLX_MESA_copy_sub_buffer, GLX_MESA_gl_interop, GLX_MESA_query_renderer,
#> GLX_MESA_swap_control, GLX_OML_sync_control, GLX_SGIS_multisample, Extended renderer info (GLX_MESA_query_renderer): Vendor: Mesa (0x10de) OpenGL vendor string: Mesa OpenGL core profile version string: 4.3 (Core Profile) Mesa 24.0.9-0ubuntu0.2
#> GL_KHR_texture_compression_astc_sliced_3d, GL_MESA_framebuffer_flip_y,
#> GL_MESA_pack_invert, GL_MESA_shader_integer_functions,
#> GL_MESA_texture_signed_rgba, GL_NVX_gpu_memory_info, OpenGL version string: 4.3 (Compatibility Profile) Mesa 24.0.9-0ubuntu0.2
#> GL_KHR_texture_compression_astc_sliced_3d, GL_MESA_framebuffer_flip_y,
#> GL_MESA_pack_invert, GL_MESA_shader_integer_functions,
#> GL_MESA_texture_signed_rgba, GL_MESA_window_pos, GL_NVX_gpu_memory_info, OpenGL ES profile version string: OpenGL ES 3.2 Mesa 24.0.9-0ubuntu0.2
#> GL_KHR_texture_compression_astc_sliced_3d, GL_MESA_bgra,
#> GL_MESA_framebuffer_flip_y, GL_MESA_sampler_objects,
#> GL_MESA_shader_integer_functions, GL_NV_conditional_render,
```
08. [x] Open Displays KCM (graphical display manager)
09. [x] Run `xrandr --listmonitors` and `--listactivemonitors` and record here.
```bash
xrandr --listmonitors
#> Monitors: 1
#> 0: +*eDP-1 2560/381x1440/214+0+0 eDP-1
#> xrandr --listactivemonitors
xrandr --listactivemonitors
#> Monitors: 1
#> 0: +*eDP-1 2560/381x1440/214+0+0 eDP-1
```
10. [x] Attach USB-C 01 to 4k monitor
11. [!] Does display show in KCM?
12. [!] Run `xrandr --listmonitors` and `--listactivemonitors` and record here.
```bash
xrandr --listmonitors
#> Monitors: 1
#> 0: +*eDP-1 2560/381x1440/214+0+0 eDP-1
xrandr --listactivemonitors
#> Monitors: 1
#> 0: +*eDP-1 2560/381x1440/214+0+0 eDP-1
```
13. [x] Attach USB-C 02 to 4k monitor
14. [!] Does display show in KCM?
15. [!] Run `xrandr --listmonitors` and `--listactivemonitors` and record here.
```bash
xrandr --listmonitors
#> Monitors: 1
#> 0: +*eDP-1 2560/381x1440/214+0+0 eDP-1
xrandr --listactivemonitors
#> Monitors: 1
#> 0: +*eDP-1 2560/381x1440/214+0+0 eDP-1
```
16. [x] If no montors showed earlier, does `lscpi -k` wake them up? YES
17. [x] Do displays show in KCM? YES
18. [x] Run `xrandr --listmonitors` and `--listactivemonitors` and record here.
```bash
xrandr --listmonitors
#> Monitors: 3
#> 0: +*eDP-1 2560/381x1440/214+1280+2160 eDP-1
#> 1: +DP-1 3840/600x2160/340+0+0 DP-1
#> 2: +DP-2 3840/600x2160/340+3840+0 DP-2
xrandr --listactivemonitors
#> Monitors: 3
#> 0: +*eDP-1 2560/381x1440/214+1280+2160 eDP-1
#> 1: +DP-1 3840/600x2160/340+0+0 DP-1
#> 2: +DP-2 3840/600x2160/340+3840+0 DP-2
```
19. [x] Run `sudo dmesg > 2024-10-29_6.12.0-rc5_tbt-barlow-ridge-01.dmesg`.
20. [x] Report assessment: Screens look great after lspci -k and are solid.
Hopefully, Nvidia will do better on wake.
## Test 02
01. [x] Build kernel 6.12.0-rc5 with patch included.
02. [x] Remove all DKMS modules: All Nvidia, keyboard, etc.
03. [x] Ensure no peripherals are plugged in, including USB-C.
04. [x] Boot WITHOUT thunderbolt.dyndbg=+p kernel parameter only.
- [x] Ensure dGPU is set in BIOS mux.
- [x] Default to Nouveau display driver.
05. [x] Sign in to SDDM to KDE 5.27.11 desktop
```bash
#> BOOT_IMAGE=/@boot/vmlinuz-6.12.0-rc5 root=UUID=aa8cb093-9cb3-4cc7-b44e-4bff76ca37fb ro rootflags=subvol=@ quiet cryptdevice=UUID=1a8d8cdb-8d8f-4689-b744-8f32d2067f56:luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 root=/dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 splash thunderbolt.dyndbg=+p vt.handoff=7
```
07. [x] Record `lsmod |grep -i nouveau` here.
```bash
lsmod |grep -i nouveau
#> nouveau 2678784 26
#> drm_gpuvm 36864 1 nouveau
#> drm_exec 12288 2 drm_gpuvm,nouveau
#> gpu_sched 49152 1 nouveau
#> drm_ttm_helper 12288 2 nouveau
#> ttm 94208 2 drm_ttm_helper,nouveau
#> drm_display_helper 225280 1 nouveau
#> mxm_wmi 12288 1 nouveau
#> i2c_algo_bit 16384 1 nouveau
#> video 69632 2 nvidia_wmi_ec_backlight,nouveau
#> wmi 24576 4 video,nvidia_wmi_ec_backlight,mxm_wmi,nouveau
glxinfo |grep -i mesa
#> GLX_INTEL_swap_event, GLX_MESA_copy_sub_buffer, GLX_OML_swap_method, client glx vendor string: Mesa Project and SGI
#> GLX_MESA_copy_sub_buffer, GLX_MESA_gl_interop, GLX_MESA_query_renderer,
#> GLX_MESA_swap_control, GLX_NV_float_buffer, GLX_OML_sync_control,
#> GLX_MESA_copy_sub_buffer, GLX_MESA_gl_interop, GLX_MESA_query_renderer,
#> GLX_MESA_swap_control, GLX_OML_sync_control, GLX_SGIS_multisample, Extended renderer info (GLX_MESA_query_renderer):
#> Vendor: Mesa (0x10de) OpenGL vendor string: Mesa OpenGL core profile version string: 4.3 (Core Profile) Mesa 24.0.9-0ubuntu0.2
#> GL_KHR_texture_compression_astc_sliced_3d, GL_MESA_framebuffer_flip_y,
#> GL_MESA_pack_invert, GL_MESA_shader_integer_functions,
#> GL_MESA_texture_signed_rgba, GL_NVX_gpu_memory_info, OpenGL version string: 4.3 (Compatibility Profile) Mesa 24.0.9-0ubuntu0.2
#> GL_KHR_texture_compression_astc_sliced_3d, GL_MESA_framebuffer_flip_y,
#> GL_MESA_pack_invert, GL_MESA_shader_integer_functions,
#> GL_MESA_texture_signed_rgba, GL_MESA_window_pos, GL_NVX_gpu_memory_info, OpenGL ES profile version string: OpenGL ES 3.2 Mesa 24.0.9-0ubuntu0.2
#> GL_KHR_texture_compression_astc_sliced_3d, GL_MESA_bgra,
#> GL_MESA_framebuffer_flip_y, GL_MESA_sampler_objects,
#> GL_MESA_shader_integer_functions, GL_NV_conditional_render,
```
08. [x] Open Displays KCM (graphical display manager)
09. [!] Run `xrandr --listmonitors` and `--listactivemonitors` and record here.
```bash
xrandr --listmonitors
#> Monitors: 1
#> 0: +*eDP-1 2560/381x1440/214+0+0 eDP-1
xrandr --listactivemonitors
#> Monitors: 1
#> 0: +*eDP-1 2560/381x1440/214+0+0 eDP-1
```
10. [x] Attach USB-C 01 to 4k monitor
11. [!] Does display show in KCM?
12. [!] Run `xrandr --listmonitors` and `--listactivemonitors` and record here.
```bash
xrandr --listmonitors
#> Monitors: 1
#> 0: +*eDP-1 2560/381x1440/214+0+0 eDP-1
xrandr --listactivemonitors
#> Monitors: 1
#> 0: +*eDP-1 2560/381x1440/214+0+0 eDP-1
```
13. [x] Attach USB-C 02 to 4k monitor
14. [!] Does display show in KCM?
15. [!] Run `xrandr --listmonitors` and `--listactivemonitors` and record here.
```bash
xrandr --listmonitors
#> Monitors: 1
#> 0: +*eDP-1 2560/381x1440/214+0+0 eDP-1
xrandr --listactivemonitors
#> Monitors: 1
#> 0: +*eDP-1 2560/381x1440/214+0+0 eDP-1
```
16. [x] If no montors showed earlier, does `lscpi -k` wake them up? YES
17. [x] Do displays show in KCM? YES
18. [x] Run `xrandr --listmonitors` and `--listactivemonitors` and record here.
```bash
xrandr --listmonitors
#> Monitors: 3
#> 0: +*eDP-1 2560/381x1440/214+1280+2160 eDP-1
#> 1: +DP-1 3840/600x2160/340+0+0 DP-1
#> 2: +DP-2 3840/600x2160/340+3840+0 DP-2
xrandr --listactivemonitors
#> Monitors: 3
#> 0: +*eDP-1 2560/381x1440/214+1280+2160 eDP-1
#> 1: +DP-1 3840/600x2160/340+0+0 DP-1
#> 2: +DP-2 3840/600x2160/340+3840+0 DP-2
```
19. [x] Run `sudo dmesg > 2024-10-29_6.12.0-rc5_tbt-barlow-ridge-02.dmesg`.
20. [x] Report assessment: Screens look great after lspci -k and are solid.
Hopefully, Nvidia proprietary drivers will do better on wake.
[-- Attachment #3: 2024-10-29_6.12.0-rc5_tbt-barlow-ridge-01-dmesg.txt --]
[-- Type: text/plain, Size: 128390 bytes --]
[ 0.000000] Linux version 6.12.0-rc5 (qa@qa-m2) (gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #1 SMP PREEMPT_DYNAMIC Tue Oct 29 09:14:25 PDT 2024
[ 0.000000] Command line: BOOT_IMAGE=/@boot/vmlinuz-6.12.0-rc5 root=UUID=aa8cb093-9cb3-4cc7-b44e-4bff76ca37fb ro rootflags=subvol=@ quiet cryptdevice=UUID=1a8d8cdb-8d8f-4689-b744-8f32d2067f56:luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 root=/dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 splash thunderbolt.dyndbg=+p vt.handoff=7
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Hygon HygonGenuine
[ 0.000000] Centaur CentaurHauls
[ 0.000000] zhaoxin Shanghai
[ 0.000000] x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000030228fff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000030229000-0x0000000030b28fff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000030b29000-0x000000003293efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000003293f000-0x00000000349defff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000349df000-0x000000003798efff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000003798f000-0x0000000037afefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x0000000037aff000-0x0000000037afffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000037b00000-0x000000003bffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000003c800000-0x000000003cbfffff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000003ce00000-0x000000003fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000008bfffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] e820: update [mem 0x2b927018-0x2b94be57] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000002b927017] usable
[ 0.000000] reserve setup_data: [mem 0x000000002b927018-0x000000002b94be57] usable
[ 0.000000] reserve setup_data: [mem 0x000000002b94be58-0x0000000030228fff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000030229000-0x0000000030b28fff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000030b29000-0x000000003293efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000003293f000-0x00000000349defff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000349df000-0x000000003798efff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x000000003798f000-0x0000000037afefff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x0000000037aff000-0x0000000037afffff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000037b00000-0x000000003bffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000003c800000-0x000000003cbfffff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000003ce00000-0x000000003fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x00000008bfffffff] usable
[ 0.000000] efi: EFI v2.8 by INSYDE Corp.
[ 0.000000] efi: ACPI=0x37afe000 ACPI 2.0=0x37afe014 TPMFinalLog=0x37866000 SMBIOS=0x32fda000 MEMATTR=0x2ba43518 ESRT=0x2ca20798 MOKvar=0x32f86000 INITRD=0x2bd96398 RNG=0x37a24018 TPMEventLog=0x37a18018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem88: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0xc0000000-0xcfffffff] reserved
[ 0.000000] efi: Remove mem90: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] SMBIOS 3.4 present.
[ 0.000000] DMI: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 0.000000] DMI: Memory slots populated: 2/2
[ 0.000000] tsc: Detected 2400.000 MHz processor
[ 0.000000] tsc: Detected 2419.200 MHz TSC
[ 0.000008] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000011] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000021] last_pfn = 0x8c0000 max_arch_pfn = 0x400000000
[ 0.000026] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
[ 0.000028] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000759] last_pfn = 0x37b00 max_arch_pfn = 0x400000000
[ 0.010767] esrt: Reserving ESRT space from 0x000000002ca20798 to 0x000000002ca20820.
[ 0.010775] e820: update [mem 0x2ca20000-0x2ca20fff] usable ==> reserved
[ 0.010799] Using GB pages for direct mapping
[ 0.010800] Incomplete global flushes, disabling PCID
[ 0.011477] Secure boot disabled
[ 0.011478] RAMDISK: [mem 0x1af2b000-0x1f81cfff]
[ 0.011562] ACPI: Early table checksum verification disabled
[ 0.011567] ACPI: RSDP 0x0000000037AFE014 000024 (v02 INSYDE)
[ 0.011573] ACPI: XSDT 0x0000000037A38188 00012C (v01 INSYDE ADL 00000002 01000013)
[ 0.011582] ACPI: FACP 0x0000000037ADB000 000114 (v06 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011591] ACPI: DSDT 0x0000000037A4E000 089652 (v02 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011596] ACPI: FACS 0x000000003783E000 000040
[ 0.011600] ACPI: UEFI 0x000000003798E000 0001CF (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
[ 0.011604] ACPI: SSDT 0x0000000037AF3000 00908F (v02 DptfTb DptfTabl 00001000 INTL 20200717)
[ 0.011608] ACPI: SSDT 0x0000000037AED000 005D34 (v02 CpuRef CpuSsdt 00003000 INTL 20200717)
[ 0.011612] ACPI: SSDT 0x0000000037AEA000 00276F (v02 SaSsdt SaSsdt 00003000 INTL 20200717)
[ 0.011616] ACPI: SSDT 0x0000000037AE6000 00328B (v02 INTEL IgfxSsdt 00003000 INTL 20200717)
[ 0.011620] ACPI: SSDT 0x0000000037AE5000 00077B (v02 INSYDE Tpm2Tabl 00001000 INTL 20200717)
[ 0.011624] ACPI: TPM2 0x0000000037AE4000 00004C (v04 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011629] ACPI: SSDT 0x0000000037ADF000 003249 (v02 INTEL DTbtSsdt 00001000 INTL 20200717)
[ 0.011633] ACPI: SSDT 0x0000000037ADD000 0016A6 (v02 INSYDE UsbCTabl 00001000 INTL 20200717)
[ 0.011637] ACPI: NHLT 0x0000000037ADC000 00002D (v00 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011640] ACPI: HPET 0x0000000037ADA000 000038 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011644] ACPI: APIC 0x0000000037AD9000 0001DC (v05 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011648] ACPI: MCFG 0x0000000037AD8000 00003C (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011652] ACPI: SSDT 0x0000000037A48000 0054E4 (v02 INSYDE ADL 00000002 01000013)
[ 0.011656] ACPI: WSMT 0x0000000037A47000 000028 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011660] ACPI: SSDT 0x0000000037A45000 0015FD (v02 INSYDE PtidDevc 00001000 INTL 20200717)
[ 0.011665] ACPI: SSDT 0x0000000037A3B000 009573 (v02 INSYDE TbtTypeC 00000000 INTL 20200717)
[ 0.011669] ACPI: DBGP 0x0000000037A3A000 000034 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011672] ACPI: DBG2 0x0000000037A39000 000054 (v00 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011675] ACPI: DMAR 0x0000000037AFD000 000050 (v01 INTEL ICL 00000002 ACPI 00040000)
[ 0.011678] ACPI: SSDT 0x0000000037A35000 002EE7 (v01 NvdRef NvdTabl 00001000 INTL 20200717)
[ 0.011682] ACPI: SSDT 0x0000000037A34000 00020D (v01 NvdRef NvdDiscr 00001000 INTL 20200717)
[ 0.011685] ACPI: SSDT 0x0000000037A33000 00064F (v01 NvdRef NvDisDds 00001000 INTL 20200717)
[ 0.011688] ACPI: UEFI 0x000000003783B000 00063A (v01 INTEL RstVmdE 00000000 ACPI 00040000)
[ 0.011692] ACPI: UEFI 0x000000003783A000 00005C (v01 INTEL RstVmdV 00000000 ACPI 00040000)
[ 0.011695] ACPI: SSDT 0x0000000037A31000 001057 (v02 INTEL xh_rplsb 00000000 INTL 20200717)
[ 0.011698] ACPI: SSDT 0x0000000037A2D000 0039DA (v02 SocGpe SocGpe 00003000 INTL 20200717)
[ 0.011702] ACPI: SSDT 0x0000000037A29000 0039DA (v02 SocCmn SocCmn 00003000 INTL 20200717)
[ 0.011705] ACPI: SSDT 0x0000000037A28000 0000F8 (v02 INSYDE PcdTabl 00001000 INTL 20200717)
[ 0.011708] ACPI: FPDT 0x0000000037A27000 000044 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011712] ACPI: PHAT 0x0000000037A25000 0005ED (v01 INSYDE ADL 00000005 ACPI 00040000)
[ 0.011715] ACPI: BGRT 0x0000000037A26000 000038 (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
[ 0.011718] ACPI: Reserving FACP table memory at [mem 0x37adb000-0x37adb113]
[ 0.011719] ACPI: Reserving DSDT table memory at [mem 0x37a4e000-0x37ad7651]
[ 0.011720] ACPI: Reserving FACS table memory at [mem 0x3783e000-0x3783e03f]
[ 0.011721] ACPI: Reserving UEFI table memory at [mem 0x3798e000-0x3798e1ce]
[ 0.011722] ACPI: Reserving SSDT table memory at [mem 0x37af3000-0x37afc08e]
[ 0.011723] ACPI: Reserving SSDT table memory at [mem 0x37aed000-0x37af2d33]
[ 0.011724] ACPI: Reserving SSDT table memory at [mem 0x37aea000-0x37aec76e]
[ 0.011725] ACPI: Reserving SSDT table memory at [mem 0x37ae6000-0x37ae928a]
[ 0.011726] ACPI: Reserving SSDT table memory at [mem 0x37ae5000-0x37ae577a]
[ 0.011727] ACPI: Reserving TPM2 table memory at [mem 0x37ae4000-0x37ae404b]
[ 0.011728] ACPI: Reserving SSDT table memory at [mem 0x37adf000-0x37ae2248]
[ 0.011729] ACPI: Reserving SSDT table memory at [mem 0x37add000-0x37ade6a5]
[ 0.011729] ACPI: Reserving NHLT table memory at [mem 0x37adc000-0x37adc02c]
[ 0.011730] ACPI: Reserving HPET table memory at [mem 0x37ada000-0x37ada037]
[ 0.011731] ACPI: Reserving APIC table memory at [mem 0x37ad9000-0x37ad91db]
[ 0.011732] ACPI: Reserving MCFG table memory at [mem 0x37ad8000-0x37ad803b]
[ 0.011733] ACPI: Reserving SSDT table memory at [mem 0x37a48000-0x37a4d4e3]
[ 0.011734] ACPI: Reserving WSMT table memory at [mem 0x37a47000-0x37a47027]
[ 0.011735] ACPI: Reserving SSDT table memory at [mem 0x37a45000-0x37a465fc]
[ 0.011735] ACPI: Reserving SSDT table memory at [mem 0x37a3b000-0x37a44572]
[ 0.011736] ACPI: Reserving DBGP table memory at [mem 0x37a3a000-0x37a3a033]
[ 0.011737] ACPI: Reserving DBG2 table memory at [mem 0x37a39000-0x37a39053]
[ 0.011738] ACPI: Reserving DMAR table memory at [mem 0x37afd000-0x37afd04f]
[ 0.011739] ACPI: Reserving SSDT table memory at [mem 0x37a35000-0x37a37ee6]
[ 0.011740] ACPI: Reserving SSDT table memory at [mem 0x37a34000-0x37a3420c]
[ 0.011741] ACPI: Reserving SSDT table memory at [mem 0x37a33000-0x37a3364e]
[ 0.011742] ACPI: Reserving UEFI table memory at [mem 0x3783b000-0x3783b639]
[ 0.011742] ACPI: Reserving UEFI table memory at [mem 0x3783a000-0x3783a05b]
[ 0.011743] ACPI: Reserving SSDT table memory at [mem 0x37a31000-0x37a32056]
[ 0.011744] ACPI: Reserving SSDT table memory at [mem 0x37a2d000-0x37a309d9]
[ 0.011745] ACPI: Reserving SSDT table memory at [mem 0x37a29000-0x37a2c9d9]
[ 0.011746] ACPI: Reserving SSDT table memory at [mem 0x37a28000-0x37a280f7]
[ 0.011747] ACPI: Reserving FPDT table memory at [mem 0x37a27000-0x37a27043]
[ 0.011748] ACPI: Reserving PHAT table memory at [mem 0x37a25000-0x37a255ec]
[ 0.011749] ACPI: Reserving BGRT table memory at [mem 0x37a26000-0x37a26037]
[ 0.012004] No NUMA configuration found
[ 0.012005] Faking a node at [mem 0x0000000000000000-0x00000008bfffffff]
[ 0.012015] NODE_DATA(0) allocated [mem 0x8bffd5680-0x8bfffffff]
[ 0.012276] Zone ranges:
[ 0.012278] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.012280] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.012282] Normal [mem 0x0000000100000000-0x00000008bfffffff]
[ 0.012283] Device empty
[ 0.012284] Movable zone start for each node
[ 0.012286] Early memory node ranges
[ 0.012287] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.012289] node 0: [mem 0x0000000000100000-0x0000000030228fff]
[ 0.012290] node 0: [mem 0x0000000030b29000-0x000000003293efff]
[ 0.012291] node 0: [mem 0x0000000037aff000-0x0000000037afffff]
[ 0.012292] node 0: [mem 0x0000000100000000-0x00000008bfffffff]
[ 0.012295] Initmem setup node 0 [mem 0x0000000000001000-0x00000008bfffffff]
[ 0.012302] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.012332] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.013903] On node 0, zone DMA32: 2304 pages in unavailable ranges
[ 0.014127] On node 0, zone DMA32: 20928 pages in unavailable ranges
[ 0.056325] On node 0, zone Normal: 1280 pages in unavailable ranges
[ 0.057010] ACPI: PM-Timer IO Port: 0x1808
[ 0.057023] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.057026] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.057026] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.057027] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.057028] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.057029] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.057029] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.057030] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.057030] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[ 0.057031] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[ 0.057032] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[ 0.057033] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[ 0.057033] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[ 0.057034] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[ 0.057034] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[ 0.057035] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[ 0.057036] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[ 0.057037] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[ 0.057037] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[ 0.057038] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[ 0.057039] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[ 0.057039] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[ 0.057040] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[ 0.057041] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.057081] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.057089] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.057091] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.057096] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.057097] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.057107] e820: update [mem 0x2b43a000-0x2b4f4fff] usable ==> reserved
[ 0.057122] TSC deadline timer available
[ 0.057125] CPU topo: Max. logical packages: 1
[ 0.057126] CPU topo: Max. logical dies: 1
[ 0.057126] CPU topo: Max. dies per package: 1
[ 0.057129] CPU topo: Max. threads per core: 2
[ 0.057130] CPU topo: Num. cores per package: 24
[ 0.057131] CPU topo: Num. threads per package: 32
[ 0.057132] CPU topo: Allowing 32 present CPUs plus 0 hotplug CPUs
[ 0.057149] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.057151] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[ 0.057153] PM: hibernation: Registered nosave memory: [mem 0x2b43a000-0x2b4f4fff]
[ 0.057154] PM: hibernation: Registered nosave memory: [mem 0x2b927000-0x2b927fff]
[ 0.057156] PM: hibernation: Registered nosave memory: [mem 0x2b94b000-0x2b94bfff]
[ 0.057157] PM: hibernation: Registered nosave memory: [mem 0x2ca20000-0x2ca20fff]
[ 0.057159] PM: hibernation: Registered nosave memory: [mem 0x30229000-0x30b28fff]
[ 0.057160] PM: hibernation: Registered nosave memory: [mem 0x3293f000-0x349defff]
[ 0.057161] PM: hibernation: Registered nosave memory: [mem 0x349df000-0x3798efff]
[ 0.057162] PM: hibernation: Registered nosave memory: [mem 0x3798f000-0x37afefff]
[ 0.057163] PM: hibernation: Registered nosave memory: [mem 0x37b00000-0x3bffffff]
[ 0.057164] PM: hibernation: Registered nosave memory: [mem 0x3c000000-0x3c7fffff]
[ 0.057165] PM: hibernation: Registered nosave memory: [mem 0x3c800000-0x3cbfffff]
[ 0.057165] PM: hibernation: Registered nosave memory: [mem 0x3cc00000-0x3cdfffff]
[ 0.057166] PM: hibernation: Registered nosave memory: [mem 0x3ce00000-0x3fffffff]
[ 0.057167] PM: hibernation: Registered nosave memory: [mem 0x40000000-0xfed1ffff]
[ 0.057167] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
[ 0.057168] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xffffffff]
[ 0.057170] [mem 0x40000000-0xfed1ffff] available for PCI devices
[ 0.057171] Booting paravirtualized kernel on bare hardware
[ 0.057174] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.057189] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1
[ 0.059000] percpu: Embedded 88 pages/cpu s237568 r8192 d114688 u524288
[ 0.059006] pcpu-alloc: s237568 r8192 d114688 u524288 alloc=1*2097152
[ 0.059008] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07
[ 0.059013] pcpu-alloc: [0] 08 09 10 11 [0] 12 13 14 15
[ 0.059017] pcpu-alloc: [0] 16 17 18 19 [0] 20 21 22 23
[ 0.059021] pcpu-alloc: [0] 24 25 26 27 [0] 28 29 30 31
[ 0.059052] Kernel command line: BOOT_IMAGE=/@boot/vmlinuz-6.12.0-rc5 root=UUID=aa8cb093-9cb3-4cc7-b44e-4bff76ca37fb ro rootflags=subvol=@ quiet cryptdevice=UUID=1a8d8cdb-8d8f-4689-b744-8f32d2067f56:luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 root=/dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 splash thunderbolt.dyndbg=+p vt.handoff=7
[ 0.059153] Unknown kernel command line parameters "splash BOOT_IMAGE=/@boot/vmlinuz-6.12.0-rc5 cryptdevice=UUID=1a8d8cdb-8d8f-4689-b744-8f32d2067f56:luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56", will be passed to user space.
[ 0.061757] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[ 0.063059] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.063481] Fallback order for Node 0: 0
[ 0.063486] Built 1 zonelists, mobility grouping on. Total pages: 8331230
[ 0.063487] Policy zone: Normal
[ 0.063494] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.063502] software IO TLB: area num 32.
[ 0.134507] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[ 0.134587] ftrace: allocating 56189 entries in 220 pages
[ 0.144543] ftrace: allocated 220 pages with 5 groups
[ 0.145366] Dynamic Preempt: voluntary
[ 0.145554] rcu: Preemptible hierarchical RCU implementation.
[ 0.145555] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=32.
[ 0.145557] Trampoline variant of Tasks RCU enabled.
[ 0.145557] Rude variant of Tasks RCU enabled.
[ 0.145558] Tracing variant of Tasks RCU enabled.
[ 0.145558] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[ 0.145559] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[ 0.145581] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
[ 0.145585] RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
[ 0.145587] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
[ 0.148597] NR_IRQS: 524544, nr_irqs: 2312, preallocated irqs: 16
[ 0.148954] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.149224] Console: colour dummy device 80x25
[ 0.149227] printk: legacy console [tty0] enabled
[ 0.149292] ACPI: Core revision 20240827
[ 0.149782] hpet: HPET dysfunctional in PC10. Force disabled.
[ 0.149837] APIC: Switch to symmetric I/O mode setup
[ 0.149839] DMAR: Host address width 39
[ 0.149840] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.149849] DMAR: dmar0: reg_base_addr fed91000 ver 5:0 cap d2008c40660462 ecap f050da
[ 0.149853] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 0
[ 0.149855] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.149856] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.151575] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.151577] x2apic enabled
[ 0.151648] APIC: Switched APIC routing to: cluster x2apic
[ 0.156582] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
[ 0.156590] Calibrating delay loop (skipped), value calculated using timer frequency.. 4838.40 BogoMIPS (lpj=2419200)
[ 0.156660] CPU0: Thermal monitoring enabled (TM1)
[ 0.156662] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[ 0.156818] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[ 0.156820] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[ 0.156823] process: using mwait in idle threads
[ 0.156826] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.156829] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[ 0.156831] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.156832] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[ 0.156834] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.156836] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.156837] Register File Data Sampling: Mitigation: Clear Register File
[ 0.156849] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.156850] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.156852] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.156853] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[ 0.156854] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[ 0.156855] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.156857] x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8
[ 0.156858] x86/fpu: xstate_offset[11]: 840, xstate_sizes[11]: 16
[ 0.156859] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[ 0.157587] Freeing SMP alternatives memory: 48K
[ 0.157587] pid_max: default: 32768 minimum: 301
[ 0.157587] LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,ima,evm
[ 0.157587] landlock: Up and running.
[ 0.157587] Yama: becoming mindful.
[ 0.157587] AppArmor: AppArmor initialized
[ 0.157587] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.157587] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.157587] smpboot: CPU0: Intel(R) Core(TM) i9-14900HX (family: 0x6, model: 0xb7, stepping: 0x1)
[ 0.157587] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline, AnyThread deprecated, Alderlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.157587] core: cpu_core PMU driver:
[ 0.157587] ... version: 5
[ 0.157587] ... bit width: 48
[ 0.157587] ... generic registers: 8
[ 0.157587] ... value mask: 0000ffffffffffff
[ 0.157587] ... max period: 00007fffffffffff
[ 0.157587] ... fixed-purpose events: 4
[ 0.157587] ... event mask: 0001000f000000ff
[ 0.157587] signal: max sigframe size: 3632
[ 0.157587] Estimated ratio of average max frequency by base frequency (times 1024): 2218
[ 0.157587] rcu: Hierarchical SRCU implementation.
[ 0.157587] rcu: Max phase no-delay instances is 400.
[ 0.157587] Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
[ 0.159423] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.160602] smp: Bringing up secondary CPUs ...
[ 0.160748] smpboot: x86: Booting SMP configuration:
[ 0.160750] .... node #0, CPUs: #2 #4 #6 #8 #10 #12 #14 #16 #17 #18 #19 #20 #21 #22 #23 #24 #25 #26 #27 #28 #29 #30 #31
[ 0.008452] core: cpu_atom PMU driver: PEBS-via-PT
[ 0.008452] ... version: 5
[ 0.008452] ... bit width: 48
[ 0.008452] ... generic registers: 6
[ 0.008452] ... value mask: 0000ffffffffffff
[ 0.008452] ... max period: 00007fffffffffff
[ 0.008452] ... fixed-purpose events: 3
[ 0.008452] ... event mask: 000000070000003f
[ 0.197616] #1 #3 #5 #7 #9 #11 #13 #15
[ 0.206680] smp: Brought up 1 node, 32 CPUs
[ 0.206680] smpboot: Total of 32 processors activated (154828.80 BogoMIPS)
[ 0.207957] Memory: 32501920K/33324920K available (22528K kernel code, 4585K rwdata, 14292K rodata, 5064K init, 4492K bss, 776924K reserved, 0K cma-reserved)
[ 0.209075] devtmpfs: initialized
[ 0.209075] x86/mm: Memory block size: 128MB
[ 0.212416] ACPI: PM: Registering ACPI NVS region [mem 0x349df000-0x3798efff] (50003968 bytes)
[ 0.212961] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.213011] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[ 0.213133] pinctrl core: initialized pinctrl subsystem
[ 0.213384] PM: RTC time: 20:08:48, date: 2024-10-29
[ 0.213930] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.214463] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[ 0.214822] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.215183] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.215193] audit: initializing netlink subsys (disabled)
[ 0.215214] audit: type=2000 audit(1730232528.058:1): state=initialized audit_enabled=0 res=1
[ 0.215214] thermal_sys: Registered thermal governor 'fair_share'
[ 0.215214] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.215214] thermal_sys: Registered thermal governor 'step_wise'
[ 0.215214] thermal_sys: Registered thermal governor 'user_space'
[ 0.215214] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.215214] EISA bus registered
[ 0.215214] cpuidle: using governor ladder
[ 0.215214] cpuidle: using governor menu
[ 0.215621] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.215753] PCI: ECAM [mem 0xc0000000-0xce0fffff] (base 0xc0000000) for domain 0000 [bus 00-e0]
[ 0.215769] PCI: Using configuration type 1 for base access
[ 0.215947] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.219674] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.219674] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.219674] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.219674] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.220788] ACPI: Added _OSI(Module Device)
[ 0.220790] ACPI: Added _OSI(Processor Device)
[ 0.220792] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.220793] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.363461] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.MHBR], AE_NOT_FOUND (20240827/psargs-332)
[ 0.363478] ACPI: Ignoring error and continuing table load
[ 0.363502] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PTID.PBAR], AE_NOT_FOUND (20240827/dsfield-500)
[ 0.371587] ACPI: 18 ACPI AML tables successfully acquired and loaded
[ 0.391461] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
[ 0.391464] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
[ 0.393367] ACPI: Dynamic OEM Table Load:
[ 0.393381] ACPI: SSDT 0xFFFF8F99841A7800 000394 (v02 PmRef Cpu0Cst 00003001 INTL 20200717)
[ 0.395249] ACPI: Dynamic OEM Table Load:
[ 0.395258] ACPI: SSDT 0xFFFF8F99841DB800 00053F (v02 PmRef Cpu0Ist 00003000 INTL 20200717)
[ 0.397166] ACPI: Dynamic OEM Table Load:
[ 0.397173] ACPI: SSDT 0xFFFF8F9984160000 0001AB (v02 PmRef Cpu0Psd 00003000 INTL 20200717)
[ 0.398967] ACPI: Dynamic OEM Table Load:
[ 0.398974] ACPI: SSDT 0xFFFF8F99841D9000 0004B5 (v02 PmRef Cpu0Hwp 00003000 INTL 20200717)
[ 0.401383] ACPI: Dynamic OEM Table Load:
[ 0.401403] ACPI: SSDT 0xFFFF8F99841E4000 001BAF (v02 PmRef ApIst 00003000 INTL 20200717)
[ 0.404215] ACPI: Dynamic OEM Table Load:
[ 0.404223] ACPI: SSDT 0xFFFF8F99841E6000 001038 (v02 PmRef ApHwp 00003000 INTL 20200717)
[ 0.406738] ACPI: Dynamic OEM Table Load:
[ 0.406747] ACPI: SSDT 0xFFFF8F99841E0000 001349 (v02 PmRef ApPsd 00003000 INTL 20200717)
[ 0.409297] ACPI: Dynamic OEM Table Load:
[ 0.409306] ACPI: SSDT 0xFFFF8F99841F1000 000FBB (v02 PmRef ApCst 00003000 INTL 20200717)
[ 0.428689] ACPI: EC: EC started
[ 0.428691] ACPI: EC: interrupt blocked
[ 0.446056] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.446059] ACPI: \_SB_.PC00.LPCB.EC__: Boot DSDT EC used to handle transactions
[ 0.446061] ACPI: Interpreter enabled
[ 0.446151] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.446152] ACPI: Using IOAPIC for interrupt routing
[ 0.448550] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.448552] PCI: Ignoring E820 reservations for host bridge windows
[ 0.450408] ACPI: Enabled 11 GPEs in block 00 to 7F
[ 0.452885] ACPI: \_SB_.PC00.PEG2.PG00: New power resource
[ 0.483842] ACPI: \_SB_.PC00.XHCI.RHUB.HS14.BTRT: New power resource
[ 0.483868] ACPI: \_SB_.PC00.XHCI.RHUB.HS14.DBTR: New power resource
[ 0.494338] ACPI: \_SB_.PC00.CNVW.WRST: New power resource
[ 0.500092] ACPI: \_SB_.PC00.RP09.PXP_: New power resource
[ 0.526944] ACPI: \PIN_: New power resource
[ 0.527840] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
[ 0.527850] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.531696] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[ 0.537785] PCI host bridge to bus 0000:00
[ 0.537789] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.537792] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.537793] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.537795] pci_bus 0000:00: root bus resource [mem 0x40000000-0xbfffffff window]
[ 0.537797] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[ 0.537799] pci_bus 0000:00: root bus resource [bus 00-e0]
[ 0.537846] pci 0000:00:00.0: [8086:a702] type 00 class 0x060000 conventional PCI endpoint
[ 0.537998] pci 0000:00:01.0: [8086:a70d] type 01 class 0x060400 PCIe Root Port
[ 0.538015] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.538078] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.538104] pci 0000:00:01.0: PTM enabled (root), 4ns granularity
[ 0.538910] pci 0000:00:01.1: [8086:a72d] type 01 class 0x060400 PCIe Root Port
[ 0.538927] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 0.538931] pci 0000:00:01.1: bridge window [io 0x3000-0x3fff]
[ 0.538933] pci 0000:00:01.1: bridge window [mem 0x4a000000-0x4b0fffff]
[ 0.538940] pci 0000:00:01.1: bridge window [mem 0x4000000000-0x4401ffffff 64bit pref]
[ 0.538992] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[ 0.539016] pci 0000:00:01.1: PTM enabled (root), 4ns granularity
[ 0.539797] pci 0000:00:04.0: [8086:a71d] type 00 class 0x118000 conventional PCI endpoint
[ 0.539815] pci 0000:00:04.0: BAR 0 [mem 0x4404200000-0x440421ffff 64bit]
[ 0.540183] pci 0000:00:08.0: [8086:a74f] type 00 class 0x088000 conventional PCI endpoint
[ 0.540195] pci 0000:00:08.0: BAR 0 [mem 0x4404241000-0x4404241fff 64bit]
[ 0.540309] pci 0000:00:0a.0: [8086:a77d] type 00 class 0x118000 PCIe Root Complex Integrated Endpoint
[ 0.540318] pci 0000:00:0a.0: BAR 0 [mem 0x4404220000-0x4404227fff 64bit]
[ 0.540338] pci 0000:00:0a.0: enabling Extended Tags
[ 0.540450] pci 0000:00:0e.0: [8086:a77f] type 00 class 0x010400 PCIe Root Complex Integrated Endpoint
[ 0.540465] pci 0000:00:0e.0: BAR 0 [mem 0x4402000000-0x4403ffffff 64bit]
[ 0.540472] pci 0000:00:0e.0: BAR 2 [mem 0x48000000-0x49ffffff]
[ 0.540488] pci 0000:00:0e.0: BAR 4 [mem 0x4404100000-0x44041fffff 64bit]
[ 0.540823] pci 0000:00:14.0: [8086:7a60] type 00 class 0x0c0330 conventional PCI endpoint
[ 0.540844] pci 0000:00:14.0: BAR 0 [mem 0x4b380000-0x4b38ffff 64bit]
[ 0.540928] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.541545] pci 0000:00:14.2: [8086:7a27] type 00 class 0x050000 conventional PCI endpoint
[ 0.541570] pci 0000:00:14.2: BAR 0 [mem 0x4404238000-0x440423bfff 64bit]
[ 0.541587] pci 0000:00:14.2: BAR 2 [mem 0x4404240000-0x4404240fff 64bit]
[ 0.541746] pci 0000:00:14.3: [8086:7a70] type 00 class 0x028000 PCIe Root Complex Integrated Endpoint
[ 0.541793] pci 0000:00:14.3: BAR 0 [mem 0x4404234000-0x4404237fff 64bit]
[ 0.541961] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
[ 0.542386] pci 0000:00:15.0: [8086:7a4c] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.542454] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.543066] pci 0000:00:15.1: [8086:7a4d] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.543141] pci 0000:00:15.1: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.543646] pci 0000:00:16.0: [8086:7a68] type 00 class 0x078000 conventional PCI endpoint
[ 0.543669] pci 0000:00:16.0: BAR 0 [mem 0x440423d000-0x440423dfff 64bit]
[ 0.543754] pci 0000:00:16.0: PME# supported from D3hot
[ 0.544338] pci 0000:00:1c.0: [8086:7a3e] type 01 class 0x060400 PCIe Root Port
[ 0.544371] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.544378] pci 0000:00:1c.0: bridge window [mem 0x4b100000-0x4b2fffff]
[ 0.544475] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.544516] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
[ 0.545406] pci 0000:00:1d.0: [8086:7a30] type 01 class 0x060400 PCIe Root Port
[ 0.545438] pci 0000:00:1d.0: PCI bridge to [bus 04-54]
[ 0.545445] pci 0000:00:1d.0: bridge window [mem 0x40000000-0x47ffffff]
[ 0.545455] pci 0000:00:1d.0: bridge window [mem 0x4410000000-0x54100fffff 64bit pref]
[ 0.545601] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.546521] pci 0000:00:1f.0: [8086:7a0c] type 00 class 0x060100 conventional PCI endpoint
[ 0.546962] pci 0000:00:1f.3: [8086:7a50] type 00 class 0x040300 conventional PCI endpoint
[ 0.547006] pci 0000:00:1f.3: BAR 0 [mem 0x4404230000-0x4404233fff 64bit]
[ 0.547061] pci 0000:00:1f.3: BAR 4 [mem 0x4404000000-0x44040fffff 64bit]
[ 0.547169] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.547284] pci 0000:00:1f.4: [8086:7a23] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.547311] pci 0000:00:1f.4: BAR 0 [mem 0x440423c000-0x440423c0ff 64bit]
[ 0.547342] pci 0000:00:1f.4: BAR 4 [io 0xefa0-0xefbf]
[ 0.547665] pci 0000:00:1f.5: [8086:7a24] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.547686] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[ 0.547839] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.547903] pci 0000:02:00.0: [10de:27e0] type 00 class 0x030000 PCIe Legacy Endpoint
[ 0.547920] pci 0000:02:00.0: BAR 0 [mem 0x4a000000-0x4affffff]
[ 0.547934] pci 0000:02:00.0: BAR 1 [mem 0x4000000000-0x43ffffffff 64bit pref]
[ 0.547947] pci 0000:02:00.0: BAR 3 [mem 0x4400000000-0x4401ffffff 64bit pref]
[ 0.547956] pci 0000:02:00.0: BAR 5 [io 0x3000-0x307f]
[ 0.547966] pci 0000:02:00.0: ROM [mem 0xfff80000-0xffffffff pref]
[ 0.548054] pci 0000:02:00.0: PME# supported from D0 D3hot
[ 0.548178] pci 0000:02:00.0: 16.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x8 link at 0000:00:01.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.548498] pci 0000:02:00.1: [10de:22bc] type 00 class 0x040300 PCIe Endpoint
[ 0.548513] pci 0000:02:00.1: BAR 0 [mem 0x4b000000-0x4b003fff]
[ 0.548705] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 0.548844] pci 0000:03:00.0: [8086:3102] type 00 class 0x020000 PCIe Endpoint
[ 0.548869] pci 0000:03:00.0: BAR 0 [mem 0x4b100000-0x4b1fffff]
[ 0.548908] pci 0000:03:00.0: BAR 3 [mem 0x4b200000-0x4b203fff]
[ 0.549069] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[ 0.549379] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.549488] pci 0000:04:00.0: [8086:5780] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.549529] pci 0000:04:00.0: PCI bridge to [bus 05-54]
[ 0.549541] pci 0000:04:00.0: bridge window [mem 0x40000000-0x47efffff]
[ 0.549555] pci 0000:04:00.0: bridge window [mem 0x4410000000-0x54100fffff 64bit pref]
[ 0.549572] pci 0000:04:00.0: enabling Extended Tags
[ 0.549711] pci 0000:04:00.0: supports D1 D2
[ 0.549713] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.550124] pci 0000:00:1d.0: PCI bridge to [bus 04-54]
[ 0.550252] pci 0000:05:00.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.550293] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.550317] pci 0000:05:00.0: bridge window [mem 0x5410000000-0x54100fffff 64bit pref]
[ 0.550336] pci 0000:05:00.0: enabling Extended Tags
[ 0.550466] pci 0000:05:00.0: supports D1 D2
[ 0.550467] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.550797] pci 0000:05:01.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.550838] pci 0000:05:01.0: PCI bridge to [bus 07-2c]
[ 0.550850] pci 0000:05:01.0: bridge window [mem 0x44000000-0x47efffff]
[ 0.550881] pci 0000:05:01.0: enabling Extended Tags
[ 0.551020] pci 0000:05:01.0: supports D1 D2
[ 0.551021] pci 0000:05:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.551345] pci 0000:05:02.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.551386] pci 0000:05:02.0: PCI bridge to [bus 2d]
[ 0.551398] pci 0000:05:02.0: bridge window [mem 0x43f00000-0x43ffffff]
[ 0.551428] pci 0000:05:02.0: enabling Extended Tags
[ 0.551559] pci 0000:05:02.0: supports D1 D2
[ 0.551560] pci 0000:05:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.551883] pci 0000:05:03.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.551925] pci 0000:05:03.0: PCI bridge to [bus 2e-54]
[ 0.551936] pci 0000:05:03.0: bridge window [mem 0x40000000-0x43efffff]
[ 0.551967] pci 0000:05:03.0: enabling Extended Tags
[ 0.552106] pci 0000:05:03.0: supports D1 D2
[ 0.552107] pci 0000:05:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.552438] pci 0000:04:00.0: PCI bridge to [bus 05-54]
[ 0.552548] pci 0000:06:00.0: [8086:5781] type 00 class 0x0c0340 PCIe Endpoint
[ 0.552576] pci 0000:06:00.0: BAR 0 [mem 0x5410000000-0x541003ffff 64bit pref]
[ 0.552594] pci 0000:06:00.0: BAR 2 [mem 0x5410040000-0x5410040fff 64bit pref]
[ 0.552636] pci 0000:06:00.0: enabling Extended Tags
[ 0.552754] pci 0000:06:00.0: supports D1 D2
[ 0.552755] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.553033] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.553108] pci 0000:05:01.0: PCI bridge to [bus 07-2c]
[ 0.553216] pci 0000:2d:00.0: [8086:5782] type 00 class 0x0c0330 PCIe Endpoint
[ 0.553240] pci 0000:2d:00.0: BAR 0 [mem 0x43f00000-0x43f0ffff 64bit]
[ 0.553289] pci 0000:2d:00.0: enabling Extended Tags
[ 0.553374] pci 0000:2d:00.0: PME# supported from D3hot D3cold
[ 0.553413] pci 0000:2d:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x4 link at 0000:05:02.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[ 0.553562] pci 0000:05:02.0: PCI bridge to [bus 2d]
[ 0.553636] pci 0000:05:03.0: PCI bridge to [bus 2e-54]
[ 0.578223] ACPI: EC: interrupt unblocked
[ 0.578225] ACPI: EC: event unblocked
[ 0.578240] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.578241] ACPI: EC: GPE=0x6e
[ 0.578243] ACPI: \_SB_.PC00.LPCB.EC__: Boot DSDT EC initialization complete
[ 0.578245] ACPI: \_SB_.PC00.LPCB.EC__: EC: Used to handle transactions and events
[ 0.578663] iommu: Default domain type: Translated
[ 0.578663] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.578714] SCSI subsystem initialized
[ 0.578731] libata version 3.00 loaded.
[ 0.578731] ACPI: bus type USB registered
[ 0.578731] usbcore: registered new interface driver usbfs
[ 0.578731] usbcore: registered new interface driver hub
[ 0.578731] usbcore: registered new device driver usb
[ 0.578731] pps_core: LinuxPPS API ver. 1 registered
[ 0.578731] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.578731] PTP clock support registered
[ 0.578731] EDAC MC: Ver: 3.0.0
[ 0.580259] efivars: Registered efivars operations
[ 0.580259] NetLabel: Initializing
[ 0.580259] NetLabel: domain hash size = 128
[ 0.580259] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.580259] NetLabel: unlabeled traffic allowed by default
[ 0.580603] mctp: management component transport protocol core
[ 0.580603] NET: Registered PF_MCTP protocol family
[ 0.580603] PCI: Using ACPI for IRQ routing
[ 0.596463] PCI: pci_cache_line_size set to 64 bytes
[ 0.596611] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
[ 0.596757] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 0.596760] e820: reserve RAM buffer [mem 0x2b43a000-0x2bffffff]
[ 0.596761] e820: reserve RAM buffer [mem 0x2b927018-0x2bffffff]
[ 0.596763] e820: reserve RAM buffer [mem 0x2ca20000-0x2fffffff]
[ 0.596764] e820: reserve RAM buffer [mem 0x30229000-0x33ffffff]
[ 0.596765] e820: reserve RAM buffer [mem 0x3293f000-0x33ffffff]
[ 0.596766] e820: reserve RAM buffer [mem 0x37b00000-0x37ffffff]
[ 0.596801] pci 0000:02:00.0: vgaarb: setting as boot VGA device
[ 0.596801] pci 0000:02:00.0: vgaarb: bridge control possible
[ 0.596801] pci 0000:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.596801] vgaarb: loaded
[ 0.596801] clocksource: Switched to clocksource tsc-early
[ 0.597236] VFS: Disk quotas dquot_6.6.0
[ 0.597250] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.597389] AppArmor: AppArmor Filesystem Enabled
[ 0.597427] pnp: PnP ACPI init
[ 0.597729] pnp 00:00: disabling [io 0x3322-0x3323] because it overlaps 0000:00:01.1 BAR 13 [io 0x3000-0x3fff]
[ 0.597953] system 00:02: [io 0x1854-0x1857] has been reserved
[ 0.616252] system 00:05: [mem 0xfedc0000-0xfedc7fff] has been reserved
[ 0.616256] system 00:05: [mem 0xfeda0000-0xfeda0fff] has been reserved
[ 0.616258] system 00:05: [mem 0xfeda1000-0xfeda1fff] has been reserved
[ 0.616260] system 00:05: [mem 0xc0000000-0xcfffffff] has been reserved
[ 0.616263] system 00:05: [mem 0xfed20000-0xfed7ffff] could not be reserved
[ 0.616265] system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 0.616267] system 00:05: [mem 0xfed45000-0xfed8ffff] could not be reserved
[ 0.616269] system 00:05: [mem 0xfee00000-0xfeefffff] has been reserved
[ 0.616741] system 00:06: [io 0x2000-0x20fe] has been reserved
[ 0.618202] pnp: PnP ACPI: found 8 devices
[ 0.624578] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.624669] NET: Registered PF_INET protocol family
[ 0.625160] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.644629] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[ 0.644673] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.644928] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.645483] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.645616] TCP: Hash tables configured (established 262144 bind 65536)
[ 0.645880] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
[ 0.645969] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[ 0.646097] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[ 0.646215] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.646223] NET: Registered PF_XDP protocol family
[ 0.646226] pci 0000:02:00.0: ROM [mem 0xfff80000-0xffffffff pref]: can't claim; no compatible bridge window
[ 0.646236] pci 0000:05:01.0: bridge window [io 0x1000-0x0fff] to [bus 07-2c] add_size 1000
[ 0.646240] pci 0000:05:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 07-2c] add_size 200000 add_align 100000
[ 0.646243] pci 0000:05:03.0: bridge window [io 0x1000-0x0fff] to [bus 2e-54] add_size 1000
[ 0.646245] pci 0000:05:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 2e-54] add_size 200000 add_align 100000
[ 0.646248] pci 0000:04:00.0: bridge window [io 0x1000-0x0fff] to [bus 05-54] add_size 2000
[ 0.646251] pci 0000:00:1d.0: bridge window [io 0x1000-0x0fff] to [bus 04-54] add_size 3000
[ 0.646260] pci 0000:00:15.0: BAR 0 [mem 0x4404228000-0x4404228fff 64bit]: assigned
[ 0.646323] pci 0000:00:15.1: BAR 0 [mem 0x4404229000-0x4404229fff 64bit]: assigned
[ 0.646383] pci 0000:00:1d.0: bridge window [io 0x4000-0x6fff]: assigned
[ 0.646385] pci 0000:00:1f.5: BAR 0 [mem 0x4b300000-0x4b300fff]: assigned
[ 0.646397] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.646405] pci 0000:02:00.0: ROM [mem 0x4b080000-0x4b0fffff pref]: assigned
[ 0.646407] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 0.646409] pci 0000:00:01.1: bridge window [io 0x3000-0x3fff]
[ 0.646412] pci 0000:00:01.1: bridge window [mem 0x4a000000-0x4b0fffff]
[ 0.646415] pci 0000:00:01.1: bridge window [mem 0x4000000000-0x4401ffffff 64bit pref]
[ 0.646420] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.646430] pci 0000:00:1c.0: bridge window [mem 0x4b100000-0x4b2fffff]
[ 0.646439] pci 0000:04:00.0: bridge window [io 0x4000-0x5fff]: assigned
[ 0.646442] pci 0000:05:01.0: bridge window [mem 0x4410000000-0x44101fffff 64bit pref]: assigned
[ 0.646444] pci 0000:05:03.0: bridge window [mem 0x4410200000-0x44103fffff 64bit pref]: assigned
[ 0.646446] pci 0000:05:01.0: bridge window [io 0x4000-0x4fff]: assigned
[ 0.646448] pci 0000:05:03.0: bridge window [io 0x5000-0x5fff]: assigned
[ 0.646450] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.646476] pci 0000:05:00.0: bridge window [mem 0x5410000000-0x54100fffff 64bit pref]
[ 0.646484] pci 0000:05:01.0: PCI bridge to [bus 07-2c]
[ 0.646487] pci 0000:05:01.0: bridge window [io 0x4000-0x4fff]
[ 0.646493] pci 0000:05:01.0: bridge window [mem 0x44000000-0x47efffff]
[ 0.646497] pci 0000:05:01.0: bridge window [mem 0x4410000000-0x44101fffff 64bit pref]
[ 0.646505] pci 0000:05:02.0: PCI bridge to [bus 2d]
[ 0.646511] pci 0000:05:02.0: bridge window [mem 0x43f00000-0x43ffffff]
[ 0.646521] pci 0000:05:03.0: PCI bridge to [bus 2e-54]
[ 0.646524] pci 0000:05:03.0: bridge window [io 0x5000-0x5fff]
[ 0.646529] pci 0000:05:03.0: bridge window [mem 0x40000000-0x43efffff]
[ 0.646534] pci 0000:05:03.0: bridge window [mem 0x4410200000-0x44103fffff 64bit pref]
[ 0.646541] pci 0000:04:00.0: PCI bridge to [bus 05-54]
[ 0.646544] pci 0000:04:00.0: bridge window [io 0x4000-0x5fff]
[ 0.646549] pci 0000:04:00.0: bridge window [mem 0x40000000-0x47efffff]
[ 0.646554] pci 0000:04:00.0: bridge window [mem 0x4410000000-0x54100fffff 64bit pref]
[ 0.646561] pci 0000:00:1d.0: PCI bridge to [bus 04-54]
[ 0.646563] pci 0000:00:1d.0: bridge window [io 0x4000-0x6fff]
[ 0.646568] pci 0000:00:1d.0: bridge window [mem 0x40000000-0x47ffffff]
[ 0.646571] pci 0000:00:1d.0: bridge window [mem 0x4410000000-0x54100fffff 64bit pref]
[ 0.646578] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.646580] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.646582] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.646583] pci_bus 0000:00: resource 7 [mem 0x40000000-0xbfffffff window]
[ 0.646585] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
[ 0.646587] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
[ 0.646588] pci_bus 0000:02: resource 1 [mem 0x4a000000-0x4b0fffff]
[ 0.646590] pci_bus 0000:02: resource 2 [mem 0x4000000000-0x4401ffffff 64bit pref]
[ 0.646591] pci_bus 0000:03: resource 1 [mem 0x4b100000-0x4b2fffff]
[ 0.646593] pci_bus 0000:04: resource 0 [io 0x4000-0x6fff]
[ 0.646594] pci_bus 0000:04: resource 1 [mem 0x40000000-0x47ffffff]
[ 0.646596] pci_bus 0000:04: resource 2 [mem 0x4410000000-0x54100fffff 64bit pref]
[ 0.646597] pci_bus 0000:05: resource 0 [io 0x4000-0x5fff]
[ 0.646599] pci_bus 0000:05: resource 1 [mem 0x40000000-0x47efffff]
[ 0.646600] pci_bus 0000:05: resource 2 [mem 0x4410000000-0x54100fffff 64bit pref]
[ 0.646602] pci_bus 0000:06: resource 2 [mem 0x5410000000-0x54100fffff 64bit pref]
[ 0.646604] pci_bus 0000:07: resource 0 [io 0x4000-0x4fff]
[ 0.646605] pci_bus 0000:07: resource 1 [mem 0x44000000-0x47efffff]
[ 0.646606] pci_bus 0000:07: resource 2 [mem 0x4410000000-0x44101fffff 64bit pref]
[ 0.646608] pci_bus 0000:2d: resource 1 [mem 0x43f00000-0x43ffffff]
[ 0.646609] pci_bus 0000:2e: resource 0 [io 0x5000-0x5fff]
[ 0.646611] pci_bus 0000:2e: resource 1 [mem 0x40000000-0x43efffff]
[ 0.646612] pci_bus 0000:2e: resource 2 [mem 0x4410200000-0x44103fffff 64bit pref]
[ 0.648796] pci 0000:02:00.1: extending delay after power-on from D3hot to 20 msec
[ 0.648825] pci 0000:02:00.1: D0 power state depends on 0000:02:00.0
[ 0.649277] pci 0000:2d:00.0: enabling device (0000 -> 0002)
[ 0.649315] PCI: CLS 64 bytes, default 64
[ 0.649355] DMAR: No RMRR found
[ 0.649356] DMAR: No ATSR found
[ 0.649357] DMAR: No SATC found
[ 0.649358] DMAR: dmar0: Using Queued invalidation
[ 0.649410] Trying to unpack rootfs image as initramfs...
[ 0.649438] pci 0000:00:00.0: Adding to iommu group 0
[ 0.649508] pci 0000:00:01.0: Adding to iommu group 1
[ 0.649524] pci 0000:00:01.1: Adding to iommu group 2
[ 0.649536] pci 0000:00:04.0: Adding to iommu group 3
[ 0.649546] pci 0000:00:08.0: Adding to iommu group 4
[ 0.649555] pci 0000:00:0a.0: Adding to iommu group 5
[ 0.649565] pci 0000:00:0e.0: Adding to iommu group 6
[ 0.649586] pci 0000:00:14.0: Adding to iommu group 7
[ 0.649595] pci 0000:00:14.2: Adding to iommu group 7
[ 0.649605] pci 0000:00:14.3: Adding to iommu group 8
[ 0.649624] pci 0000:00:15.0: Adding to iommu group 9
[ 0.649635] pci 0000:00:15.1: Adding to iommu group 9
[ 0.649651] pci 0000:00:16.0: Adding to iommu group 10
[ 0.649663] pci 0000:00:1c.0: Adding to iommu group 11
[ 0.649681] pci 0000:00:1d.0: Adding to iommu group 12
[ 0.649710] pci 0000:00:1f.0: Adding to iommu group 13
[ 0.649721] pci 0000:00:1f.3: Adding to iommu group 13
[ 0.649731] pci 0000:00:1f.4: Adding to iommu group 13
[ 0.649742] pci 0000:00:1f.5: Adding to iommu group 13
[ 0.649761] pci 0000:02:00.0: Adding to iommu group 14
[ 0.649773] pci 0000:02:00.1: Adding to iommu group 14
[ 0.649793] pci 0000:03:00.0: Adding to iommu group 15
[ 0.649809] pci 0000:04:00.0: Adding to iommu group 16
[ 0.649822] pci 0000:05:00.0: Adding to iommu group 17
[ 0.649840] pci 0000:05:01.0: Adding to iommu group 18
[ 0.649854] pci 0000:05:02.0: Adding to iommu group 19
[ 0.649870] pci 0000:05:03.0: Adding to iommu group 20
[ 0.649884] pci 0000:06:00.0: Adding to iommu group 21
[ 0.649906] pci 0000:2d:00.0: Adding to iommu group 22
[ 0.655434] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 0.655438] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.655439] software IO TLB: mapped [mem 0x0000000025ec9000-0x0000000029ec9000] (64MB)
[ 0.656488] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
[ 0.656912] clocksource: Switched to clocksource tsc
[ 0.658922] Initialise system trusted keyrings
[ 0.658934] Key type blacklist registered
[ 0.658993] workingset: timestamp_bits=36 max_order=23 bucket_order=0
[ 0.659006] zbud: loaded
[ 0.659370] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.659525] fuse: init (API version 7.41)
[ 0.659716] integrity: Platform Keyring initialized
[ 0.659721] integrity: Machine keyring initialized
[ 0.673483] Key type asymmetric registered
[ 0.673486] Asymmetric key parser 'x509' registered
[ 0.673517] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[ 0.673587] io scheduler mq-deadline registered
[ 0.674618] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.674969] pcieport 0000:00:01.0: PME: Signaling with IRQ 121
[ 0.675269] pcieport 0000:00:01.1: PME: Signaling with IRQ 122
[ 0.675597] pcieport 0000:00:1c.0: PME: Signaling with IRQ 123
[ 0.675706] pcieport 0000:00:1c.0: AER: enabled with IRQ 123
[ 0.675904] pcieport 0000:00:1d.0: PME: Signaling with IRQ 124
[ 0.675996] pcieport 0000:00:1d.0: AER: enabled with IRQ 124
[ 0.676025] pcieport 0000:00:1d.0: pciehp: Slot #8 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.676966] pcieport 0000:05:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.677632] pcieport 0000:05:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.677882] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.678240] Monitor-Mwait will be used to enter C-1 state
[ 0.678256] Monitor-Mwait will be used to enter C-2 state
[ 0.678267] Monitor-Mwait will be used to enter C-3 state
[ 0.681432] ACPI: AC: AC Adapter [AC] (on-line)
[ 0.681519] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 0.681801] ACPI: button: Power Button [PWRB]
[ 0.681867] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[ 0.681927] ACPI: button: Sleep Button [SLPB]
[ 0.681957] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
[ 0.681995] ACPI: button: Lid Switch [LID0]
[ 0.682045] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[ 0.682141] ACPI: button: Power Button [PWRF]
[ 0.756786] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.756791] ACPI: thermal: Thermal Zone [TZ0] (25 C)
[ 0.757202] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.757872] ACPI: battery: Slot [BAT0] (battery present)
[ 0.759678] hpet_acpi_add: no address or irqs in _CRS
[ 0.759717] Linux agpgart interface v0.103
[ 0.761648] tpm_tis IFX1523:00: 2.0 TPM (device-id 0x1D, rev-id 54)
[ 0.878972] ACPI: bus type drm_connector registered
[ 0.886052] loop: module loaded
[ 0.886384] tun: Universal TUN/TAP device driver, 1.6
[ 0.886417] PPP generic driver version 2.4.2
[ 0.886751] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.886757] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 0.887957] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[ 0.888395] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.888398] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 0.888401] xhci_hcd 0000:00:14.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 0.888456] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
[ 0.888460] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.888461] usb usb1: Product: xHCI Host Controller
[ 0.888463] usb usb1: Manufacturer: Linux 6.12.0-rc5 xhci-hcd
[ 0.888464] usb usb1: SerialNumber: 0000:00:14.0
[ 0.888619] hub 1-0:1.0: USB hub found
[ 0.888648] hub 1-0:1.0: 16 ports detected
[ 0.892386] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.12
[ 0.892389] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.892390] usb usb2: Product: xHCI Host Controller
[ 0.892392] usb usb2: Manufacturer: Linux 6.12.0-rc5 xhci-hcd
[ 0.892393] usb usb2: SerialNumber: 0000:00:14.0
[ 0.892590] hub 2-0:1.0: USB hub found
[ 0.892608] hub 2-0:1.0: 10 ports detected
[ 0.894737] xhci_hcd 0000:2d:00.0: xHCI Host Controller
[ 0.894741] xhci_hcd 0000:2d:00.0: new USB bus registered, assigned bus number 3
[ 0.895940] xhci_hcd 0000:2d:00.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[ 0.896332] xhci_hcd 0000:2d:00.0: xHCI Host Controller
[ 0.896334] xhci_hcd 0000:2d:00.0: new USB bus registered, assigned bus number 4
[ 0.896337] xhci_hcd 0000:2d:00.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 0.896366] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
[ 0.896369] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.896370] usb usb3: Product: xHCI Host Controller
[ 0.896372] usb usb3: Manufacturer: Linux 6.12.0-rc5 xhci-hcd
[ 0.896373] usb usb3: SerialNumber: 0000:2d:00.0
[ 0.896576] hub 3-0:1.0: USB hub found
[ 0.896584] hub 3-0:1.0: 2 ports detected
[ 0.897831] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.12
[ 0.897832] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.897834] usb usb4: Product: xHCI Host Controller
[ 0.897835] usb usb4: Manufacturer: Linux 6.12.0-rc5 xhci-hcd
[ 0.897836] usb usb4: SerialNumber: 0000:2d:00.0
[ 0.898008] hub 4-0:1.0: USB hub found
[ 0.898021] hub 4-0:1.0: 2 ports detected
[ 0.899837] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 0.903228] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.903232] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.903438] mousedev: PS/2 mouse device common for all mice
[ 0.903863] rtc_cmos 00:01: RTC can wake from S4
[ 0.904642] rtc_cmos 00:01: registered as rtc0
[ 0.904823] rtc_cmos 00:01: setting system clock to 2024-10-29T20:08:49 UTC (1730232529)
[ 0.904856] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
[ 0.904863] i2c_dev: i2c /dev entries driver
[ 0.908197] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 0.908226] device-mapper: uevent: version 1.0.3
[ 0.908436] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[ 0.908489] platform eisa.0: Probing EISA bus 0
[ 0.908496] platform eisa.0: EISA: Cannot allocate resource for mainboard
[ 0.908498] platform eisa.0: Cannot allocate resource for EISA slot 1
[ 0.908500] platform eisa.0: Cannot allocate resource for EISA slot 2
[ 0.908501] platform eisa.0: Cannot allocate resource for EISA slot 3
[ 0.908502] platform eisa.0: Cannot allocate resource for EISA slot 4
[ 0.908503] platform eisa.0: Cannot allocate resource for EISA slot 5
[ 0.908504] platform eisa.0: Cannot allocate resource for EISA slot 6
[ 0.908505] platform eisa.0: Cannot allocate resource for EISA slot 7
[ 0.908507] platform eisa.0: Cannot allocate resource for EISA slot 8
[ 0.908508] platform eisa.0: EISA: Detected 0 cards
[ 0.908511] intel_pstate: Intel P-state driver initializing
[ 0.909180] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[ 0.912586] intel_pstate: HWP enabled
[ 0.912721] [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
[ 0.914911] fbcon: Deferring console take-over
[ 0.914913] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[ 0.914994] drop_monitor: Initializing network drop monitor service
[ 0.915081] NET: Registered PF_INET6 protocol family
[ 0.983935] Freeing initrd memory: 74696K
[ 0.990287] Segment Routing with IPv6
[ 0.990296] In-situ OAM (IOAM) with IPv6
[ 0.990320] NET: Registered PF_PACKET protocol family
[ 0.990452] Key type dns_resolver registered
[ 0.994724] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.996548] microcode: Current revision: 0x00000129
[ 0.998381] IPI shorthand broadcast: enabled
[ 0.999286] sched_clock: Marking stable (991000794, 7452213)->(1070008272, -71555265)
[ 0.999865] registered taskstats version 1
[ 1.003265] Loading compiled-in X.509 certificates
[ 1.003617] Loaded X.509 cert 'Build time autogenerated kernel key: b9e32a74847b4505d53d500d44fb60761632a017'
[ 1.005667] Demotion targets for Node 0: null
[ 1.005722] Key type .fscrypt registered
[ 1.005723] Key type fscrypt-provisioning registered
[ 1.005764] Key type trusted registered
[ 1.010776] cryptd: module verification failed: signature and/or required key missing - tainting kernel
[ 1.011263] cryptd: max_cpu_qlen set to 1000
[ 1.011831] AES CTR mode by8 optimization enabled
[ 1.019724] Key type encrypted registered
[ 1.019731] AppArmor: AppArmor sha256 policy hashing enabled
[ 1.023753] integrity: Loading X.509 certificate: UEFI:db
[ 1.023781] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 1.023783] integrity: Loading X.509 certificate: UEFI:db
[ 1.023799] integrity: Loaded X.509 cert 'Microsoft Corporation: Windows UEFI CA 2023: aefc5fbbbe055d8f8daa585473499417ab5a5272'
[ 1.023800] integrity: Loading X.509 certificate: UEFI:db
[ 1.023817] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 1.023818] integrity: Loading X.509 certificate: UEFI:db
[ 1.023832] integrity: Loaded X.509 cert 'Microsoft UEFI CA 2023: 81aa6b3244c935bce0d6628af39827421e32497d'
[ 1.023833] integrity: Loading X.509 certificate: UEFI:db
[ 1.024059] integrity: Loaded X.509 cert 'Secure Certificate: 01dcc89619884ca147983429f8a4a1a0'
[ 1.024060] integrity: Loading X.509 certificate: UEFI:db
[ 1.024208] integrity: Loaded X.509 cert 'Cus CA: d6136d376b87ef934511c12ce2c3880c'
[ 1.031513] Loading compiled-in module X.509 certificates
[ 1.031978] Loaded X.509 cert 'Build time autogenerated kernel key: b9e32a74847b4505d53d500d44fb60761632a017'
[ 1.031980] ima: Allocated hash algorithm: sha256
[ 1.132582] usb 1-6: new high-speed USB device number 2 using xhci_hcd
[ 1.195188] ima: No architecture policies found
[ 1.195234] evm: Initialising EVM extended attributes:
[ 1.195237] evm: security.selinux
[ 1.195239] evm: security.SMACK64
[ 1.195241] evm: security.SMACK64EXEC
[ 1.195244] evm: security.SMACK64TRANSMUTE
[ 1.195246] evm: security.SMACK64MMAP
[ 1.195248] evm: security.apparmor
[ 1.195250] evm: security.ima
[ 1.195251] evm: security.capability
[ 1.195253] evm: HMAC attrs: 0x1
[ 1.196192] PM: Magic number: 12:392:145
[ 1.196385] acpi device:16: hash matches
[ 1.203673] RAS: Correctable Errors collector initialized.
[ 1.212562] clk: Disabling unused clocks
[ 1.212564] PM: genpd: Disabling unused power domains
[ 1.218804] Freeing unused decrypted memory: 2028K
[ 1.219794] Freeing unused kernel image (initmem) memory: 5064K
[ 1.219814] Write protecting the kernel read-only data: 36864k
[ 1.220531] Freeing unused kernel image (rodata/data gap) memory: 44K
[ 1.227703] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.227762] Run /init as init process
[ 1.227763] with arguments:
[ 1.227764] /init
[ 1.227765] splash
[ 1.227765] with environment:
[ 1.227766] HOME=/
[ 1.227766] TERM=linux
[ 1.227767] BOOT_IMAGE=/@boot/vmlinuz-6.12.0-rc5
[ 1.227768] cryptdevice=UUID=1a8d8cdb-8d8f-4689-b744-8f32d2067f56:luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56
[ 1.287679] usb 1-6: New USB device found, idVendor=04f2, idProduct=b7e7, bcdDevice= 0.04
[ 1.287693] usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.287695] usb 1-6: Product: Chicony USB2.0 Camera
[ 1.287697] usb 1-6: Manufacturer: SunplusIT Inc
[ 1.287698] usb 1-6: SerialNumber: 01.00.00
[ 1.313619] wmi_bus wmi_bus-PNP0C14:01: [Firmware Bug]: WQ00 data block query control method not found
[ 1.314588] ACPI: video: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[ 1.314614] ACPI: video: Video Device [PEGP] (multi-head: yes rom: no post: no)
[ 1.314657] hid: raw HID events driver (C) Jiri Kosina
[ 1.319904] vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
[ 1.319907] pci_bus 10000:e0: root bus resource [bus e0-ff]
[ 1.319909] pci_bus 10000:e0: root bus resource [mem 0x48000000-0x49ffffff]
[ 1.319910] pci_bus 10000:e0: root bus resource [mem 0x4404102000-0x44041fffff 64bit]
[ 1.319927] pci 10000:e0:1b.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 1.319935] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:05/LNXVIDEO:00/input/input6
[ 1.320543] Intel(R) 2.5G Ethernet Linux Driver
[ 1.320545] Copyright(c) 2018 Intel Corporation.
[ 1.321162] pci 10000:e0:1b.0: Adding to iommu group 6
[ 1.321192] pci 10000:e0:1b.4: [8086:7a44] type 01 class 0x060400 PCIe Root Port
[ 1.321361] pci 10000:e0:1b.4: PCI bridge to [bus e1]
[ 1.321368] pci 10000:e0:1b.4: bridge window [io 0x0000-0x0fff]
[ 1.321370] pci 10000:e0:1b.4: bridge window [mem 0x48000000-0x480fffff]
[ 1.321392] igc 0000:03:00.0: PTM enabled, 4ns granularity
[ 1.321492] pci 10000:e0:1b.4: PME# supported from D0 D3hot D3cold
[ 1.321555] pci 10000:e0:1b.4: PTM enabled (root), 4ns granularity
[ 1.321701] pci 10000:e0:1b.4: Adding to iommu group 6
[ 1.321714] pci 10000:e0:1b.4: Primary bus is hard wired to 0
[ 1.321779] pci 10000:e1:00.0: [144d:a808] type 00 class 0x010802 PCIe Endpoint
[ 1.321810] pci 10000:e1:00.0: BAR 0 [mem 0x48000000-0x48003fff 64bit]
[ 1.322191] pci 10000:e1:00.0: Adding to iommu group 6
[ 1.322205] pci 10000:e0:1b.4: PCI bridge to [bus e1]
[ 1.322219] pci 10000:e0:1b.4: Primary bus is hard wired to 0
[ 1.327082] ACPI: bus type thunderbolt registered
[ 1.327313] thunderbolt 0000:06:00.0: total paths: 12
[ 1.327319] thunderbolt 0000:06:00.0: IOMMU DMA protection is enabled
[ 1.332483] intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
[ 1.332934] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 1.373846] pps pps0: new PPS source ptp0
[ 1.373893] igc 0000:03:00.0 (unnamed net_device) (uninitialized): PHC added
[ 1.401853] igc 0000:03:00.0: 4.000 Gb/s available PCIe bandwidth (5.0 GT/s PCIe x1 link)
[ 1.401857] igc 0000:03:00.0 eth0: MAC: d4:93:90:44:67:64
[ 1.403672] igc 0000:03:00.0 enp3s0: renamed from eth0
[ 1.415659] usb 1-7: new full-speed USB device number 3 using xhci_hcd
[ 1.428577] thunderbolt 0000:06:00.0: host router reset successful
[ 1.429252] thunderbolt 0000:06:00.0: allocating TX ring 0 of size 10
[ 1.429321] thunderbolt 0000:06:00.0: allocating RX ring 0 of size 10
[ 1.429358] thunderbolt 0000:06:00.0: control channel created
[ 1.429363] thunderbolt 0000:06:00.0: using software connection manager
[ 1.429876] thunderbolt 0000:06:00.0: device links to tunneled native ports are missing!
[ 1.429879] thunderbolt 0000:06:00.0: NHI initialized, starting thunderbolt
[ 1.429882] thunderbolt 0000:06:00.0: control channel starting...
[ 1.429884] thunderbolt 0000:06:00.0: starting TX ring 0
[ 1.429899] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 1.429905] thunderbolt 0000:06:00.0: starting RX ring 0
[ 1.429914] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 1.429922] thunderbolt 0000:06:00.0: security level set to user
[ 1.430181] thunderbolt 0000:06:00.0: current switch config:
[ 1.430184] thunderbolt 0000:06:00.0: USB4 Switch: 8087:5781 (Revision: 131, TB Version: 64)
[ 1.430189] thunderbolt 0000:06:00.0: Max Port Number: 23
[ 1.430192] thunderbolt 0000:06:00.0: Config:
[ 1.430194] thunderbolt 0000:06:00.0: Upstream Port Number: 15 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[ 1.430199] thunderbolt 0000:06:00.0: unknown1: 0x0 unknown4: 0x0
[ 1.433347] thunderbolt 0000:06:00.0: initializing Switch at 0x0 (depth: 0, up port: 15)
[ 1.434493] thunderbolt 0000:06:00.0: 0: credit allocation parameters:
[ 1.434496] thunderbolt 0000:06:00.0: 0: USB3: 20
[ 1.434499] thunderbolt 0000:06:00.0: 0: DP AUX: 1
[ 1.434501] thunderbolt 0000:06:00.0: 0: DP main: 6
[ 1.434503] thunderbolt 0000:06:00.0: 0: PCIe: 80
[ 1.434505] thunderbolt 0000:06:00.0: 0: DMA: 40
[ 1.436154] thunderbolt 0000:06:00.0: acking hot plug event on 0:13
[ 1.436280] thunderbolt 0000:06:00.0: acking hot plug event on 0:14
[ 1.436410] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
[ 1.436925] thunderbolt 0000:06:00.0: 0: DROM version: 3
[ 1.436930] thunderbolt 0000:06:00.0: 0: DROM data CRC32 mismatch (expected: 0x56000000, got: 0x56473b0f), continuing
[ 1.437562] thunderbolt 0000:06:00.0: 0: uid: 0xb93e650000006ecd
[ 1.438844] thunderbolt 0000:06:00.0: Port 1: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.438850] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.438853] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.438856] thunderbolt 0000:06:00.0: NFC Credits: 0x8a000000
[ 1.438858] thunderbolt 0000:06:00.0: Credits (total/control): 160/2
[ 1.439994] thunderbolt 0000:06:00.0: Port 2: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.439997] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.440000] thunderbolt 0000:06:00.0: Max counters: 0
[ 1.440002] thunderbolt 0000:06:00.0: NFC Credits: 0xa000000
[ 1.440004] thunderbolt 0000:06:00.0: Credits (total/control): 160/2
[ 1.441274] thunderbolt 0000:06:00.0: Port 3: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.441277] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.441279] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.441281] thunderbolt 0000:06:00.0: NFC Credits: 0x8a000000
[ 1.441282] thunderbolt 0000:06:00.0: Credits (total/control): 160/2
[ 1.442426] thunderbolt 0000:06:00.0: Port 4: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.442429] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.442431] thunderbolt 0000:06:00.0: Max counters: 0
[ 1.442433] thunderbolt 0000:06:00.0: NFC Credits: 0xa000000
[ 1.442435] thunderbolt 0000:06:00.0: Credits (total/control): 160/2
[ 1.443705] thunderbolt 0000:06:00.0: Port 5: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.443708] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.443710] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.443711] thunderbolt 0000:06:00.0: NFC Credits: 0x8a000000
[ 1.443713] thunderbolt 0000:06:00.0: Credits (total/control): 160/0
[ 1.444474] thunderbolt 0000:06:00.0: Port 6: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.444476] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.444478] thunderbolt 0000:06:00.0: Max counters: 0
[ 1.444480] thunderbolt 0000:06:00.0: NFC Credits: 0xa000000
[ 1.444481] thunderbolt 0000:06:00.0: Credits (total/control): 160/0
[ 1.445749] thunderbolt 0000:06:00.0: Port 7: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.445752] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.445754] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.445755] thunderbolt 0000:06:00.0: NFC Credits: 0x8a000000
[ 1.445757] thunderbolt 0000:06:00.0: Credits (total/control): 160/0
[ 1.446521] thunderbolt 0000:06:00.0: Port 8: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.446524] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.446526] thunderbolt 0000:06:00.0: Max counters: 0
[ 1.446528] thunderbolt 0000:06:00.0: NFC Credits: 0xa000000
[ 1.446529] thunderbolt 0000:06:00.0: Credits (total/control): 160/0
[ 1.446776] thunderbolt 0000:06:00.0: Port 9: 0:5780 (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[ 1.446779] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.446781] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.446783] thunderbolt 0000:06:00.0: NFC Credits: 0x40800000
[ 1.446784] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.447033] thunderbolt 0000:06:00.0: Port 10: 0:5780 (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[ 1.447037] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.447039] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.447041] thunderbolt 0000:06:00.0: NFC Credits: 0x40800000
[ 1.447043] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.447548] thunderbolt 0000:06:00.0: Port 11: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 1.447552] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.447554] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.447556] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.447558] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.448058] thunderbolt 0000:06:00.0: Port 12: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 1.448061] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.448063] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.448065] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.448067] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.448314] thunderbolt 0000:06:00.0: Port 13: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[ 1.448317] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.448320] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.448322] thunderbolt 0000:06:00.0: NFC Credits: 0x100000d
[ 1.448324] thunderbolt 0000:06:00.0: Credits (total/control): 16/0
[ 1.448568] thunderbolt 0000:06:00.0: Port 14: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[ 1.448571] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.448573] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.448575] thunderbolt 0000:06:00.0: NFC Credits: 0x100000d
[ 1.448577] thunderbolt 0000:06:00.0: Credits (total/control): 16/0
[ 1.449335] thunderbolt 0000:06:00.0: Port 15: 0:5780 (Revision: 0, TB Version: 1, Type: NHI (0x2))
[ 1.449339] thunderbolt 0000:06:00.0: Max hop id (in/out): 11/11
[ 1.449341] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.449343] thunderbolt 0000:06:00.0: NFC Credits: 0x41c00000
[ 1.449345] thunderbolt 0000:06:00.0: Credits (total/control): 28/0
[ 1.449347] thunderbolt 0000:06:00.0: 0:16: disabled by eeprom
[ 1.449592] thunderbolt 0000:06:00.0: Port 17: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.449595] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.449597] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.449599] thunderbolt 0000:06:00.0: NFC Credits: 0x40800000
[ 1.449601] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.449851] thunderbolt 0000:06:00.0: Port 18: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.449855] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.449857] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.449859] thunderbolt 0000:06:00.0: NFC Credits: 0x40800000
[ 1.449861] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.450358] thunderbolt 0000:06:00.0: Port 19: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 1.450361] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.450363] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.450365] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.450367] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.450617] thunderbolt 0000:06:00.0: Port 20: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.450621] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.450623] thunderbolt 0000:06:00.0: Max counters: 1
[ 1.450625] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.450627] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.450871] thunderbolt 0000:06:00.0: Port 21: 0:5780 (Revision: 0, TB Version: 1, Type: USB (0x200101))
[ 1.450875] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.450877] thunderbolt 0000:06:00.0: Max counters: 1
[ 1.450879] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.450881] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.451131] thunderbolt 0000:06:00.0: Port 22: 0:5780 (Revision: 0, TB Version: 1, Type: USB (0x200101))
[ 1.451134] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.451137] thunderbolt 0000:06:00.0: Max counters: 1
[ 1.451139] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.451141] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.451385] thunderbolt 0000:06:00.0: Port 23: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.451388] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.451391] thunderbolt 0000:06:00.0: Max counters: 1
[ 1.451393] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.451395] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.451398] thunderbolt 0000:06:00.0: 0: running tb_retimer_remove_all [thunderbolt]
[ 1.451434] thunderbolt 0000:06:00.0: 0:21: USB3 maximum bandwidth limited to 16376 Mb/s
[ 1.451437] thunderbolt 0000:06:00.0: 0:22: USB3 maximum bandwidth limited to 16376 Mb/s
[ 1.451440] thunderbolt 0000:06:00.0: 0: running tb_retimer_remove_all [thunderbolt]
[ 1.451462] thunderbolt 0000:06:00.0: 0: preventing runtime PM in DP redrive mode
[ 1.451464] thunderbolt 0000:06:00.0: 0: linked ports 1 <-> 2
[ 1.451467] thunderbolt 0000:06:00.0: 0: linked ports 3 <-> 4
[ 1.459702] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
[ 1.459704] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
[ 1.459832] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
[ 1.463836] thunderbolt 0000:06:00.0: 0: NVM version 14.86
[ 1.463985] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> uni-directional, LowRes requested
[ 1.464401] thunderbolt 0000:06:00.0: 0: TMU: mode set to: uni-directional, LowRes
[ 1.465294] thunderbolt 0000:06:00.0: 0:13: DP IN resource available
[ 1.465942] thunderbolt 0000:06:00.0: 0:14: DP IN resource available
[ 1.476570] intel-lpss 0000:00:15.1: enabling device (0004 -> 0006)
[ 1.478935] idma64 idma64.1: Found Intel integrated DMA 64-bit
[ 1.484720] pci 10000:e0:1b.4: bridge window [mem 0x48000000-0x480fffff]: assigned
[ 1.484728] pci 10000:e0:1b.4: bridge window [io size 0x1000]: can't assign; no space
[ 1.484730] pci 10000:e0:1b.4: bridge window [io size 0x1000]: failed to assign
[ 1.484734] pci 10000:e1:00.0: BAR 0 [mem 0x48000000-0x48003fff 64bit]: assigned
[ 1.484759] pci 10000:e0:1b.4: PCI bridge to [bus e1]
[ 1.484767] pci 10000:e0:1b.4: bridge window [mem 0x48000000-0x480fffff]
[ 1.484860] pcieport 10000:e0:1b.4: can't derive routing for PCI INT A
[ 1.484863] pcieport 10000:e0:1b.4: PCI INT A: no GSI
[ 1.485005] pcieport 10000:e0:1b.4: PME: Signaling with IRQ 185
[ 1.485381] pcieport 10000:e0:1b.4: AER: enabled with IRQ 185
[ 1.485525] vmd 0000:00:0e.0: Bound to PCI domain 10000
[ 1.543444] usb 1-7: New USB device found, idVendor=048d, idProduct=8910, bcdDevice= 0.01
[ 1.543471] usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.543478] usb 1-7: Product: ITE Device(829x)
[ 1.543482] usb 1-7: Manufacturer: ITE Tech. Inc.
[ 1.660691] usb 1-14: new full-speed USB device number 4 using xhci_hcd
[ 1.786851] usb 1-14: New USB device found, idVendor=8087, idProduct=0033, bcdDevice= 0.00
[ 1.786869] usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.800394] usbcore: registered new interface driver usbhid
[ 1.800400] usbhid: USB HID core driver
[ 1.815738] hid-generic 0003:048D:8910.0001: hiddev0,hidraw0: USB HID v1.10 Device [ITE Tech. Inc. ITE Device(829x)] on usb-0000:00:14.0-7/input0
[ 1.816160] input: FTCS1000:01 2808:0102 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0002/input/input8
[ 1.816327] input: FTCS1000:01 2808:0102 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0002/input/input9
[ 1.816530] hid-generic 0018:2808:0102.0002: input,hidraw1: I2C HID v1.00 Mouse [FTCS1000:01 2808:0102] on i2c-FTCS1000:01
[ 1.823279] nvme nvme0: pci function 10000:e1:00.0
[ 1.823303] pcieport 10000:e0:1b.4: can't derive routing for PCI INT A
[ 1.823306] nvme 10000:e1:00.0: PCI INT A: not connected
[ 1.825945] nvme nvme0: missing or invalid SUBNQN field.
[ 1.826116] nvme nvme0: D3 entry latency set to 8 seconds
[ 1.846819] nvme nvme0: 18/0/0 default/read/poll queues
[ 1.855807] nvme0n1: p1 p2 p3
[ 1.866048] input: FTCS1000:01 2808:0102 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0002/input/input11
[ 1.866544] input: FTCS1000:01 2808:0102 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0002/input/input12
[ 1.866905] hid-multitouch 0018:2808:0102.0002: input,hidraw1: I2C HID v1.00 Mouse [FTCS1000:01 2808:0102] on i2c-FTCS1000:01
[ 2.889287] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input7
[ 6.830485] ucsi_acpi USBC000:00: error -ETIMEDOUT: PPM init failed
[ 20.206730] thunderbolt 0000:06:00.0: 0: suspending switch
[ 20.206742] thunderbolt 0000:06:00.0: 0: enabling wakeup: 0x3f
[ 20.207874] thunderbolt 0000:06:00.0: stopping RX ring 0
[ 20.207889] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[ 20.207916] thunderbolt 0000:06:00.0: stopping TX ring 0
[ 20.207923] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[ 20.207938] thunderbolt 0000:06:00.0: control channel stopped
[ 101.597464] raid6: avx2x4 gen() 27836 MB/s
[ 101.614534] raid6: avx2x2 gen() 31792 MB/s
[ 101.631460] raid6: avx2x1 gen() 19854 MB/s
[ 101.631461] raid6: using algorithm avx2x2 gen() 31792 MB/s
[ 101.648552] raid6: .... xor() 28785 MB/s, rmw enabled
[ 101.648558] raid6: using avx2x2 recovery algorithm
[ 101.650584] xor: automatically using best checksumming function avx
[ 101.692616] Btrfs loaded, zoned=yes, fsverity=yes
[ 101.722003] BTRFS: device label kfocus_2404 devid 1 transid 7921 /dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 (252:0) scanned by mount (746)
[ 101.722570] BTRFS info (device dm-0): first mount of filesystem aa8cb093-9cb3-4cc7-b44e-4bff76ca37fb
[ 101.722583] BTRFS info (device dm-0): using crc32c (crc32c-intel) checksum algorithm
[ 101.722587] BTRFS info (device dm-0): using free-space-tree
[ 101.879228] systemd[1]: Inserted module 'autofs4'
[ 102.069259] systemd[1]: systemd 255.4-1ubuntu8.4 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[ 102.069263] systemd[1]: Detected architecture x86-64.
[ 102.069969] systemd[1]: Hostname set to <qa-m2>.
[ 102.149714] systemd[1]: Configuration file /run/systemd/system/netplan-ovs-cleanup.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
[ 102.179148] systemd[1]: Queued start job for default target graphical.target.
[ 102.205636] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[ 102.205835] systemd[1]: Created slice system-systemd\x2dcryptsetup.slice - Encrypted Volume Units Service Slice.
[ 102.205977] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[ 102.206071] systemd[1]: Created slice user.slice - User and Session Slice.
[ 102.206098] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[ 102.206202] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[ 102.206213] systemd[1]: Expecting device dev-disk-by\x2duuid-167A\x2d6858.device - /dev/disk/by-uuid/167A-6858...
[ 102.206218] systemd[1]: Expecting device dev-disk-by\x2duuid-1a8d8cdb\x2d8d8f\x2d4689\x2db744\x2d8f32d2067f56.device - /dev/disk/by-uuid/1a8d8cdb-8d8f-4689-b744-8f32d2067f56...
[ 102.206221] systemd[1]: Expecting device dev-disk-by\x2duuid-aa8cb093\x2d9cb3\x2d4cc7\x2db44e\x2d4bff76ca37fb.device - /dev/disk/by-uuid/aa8cb093-9cb3-4cc7-b44e-4bff76ca37fb...
[ 102.206225] systemd[1]: Expecting device dev-disk-by\x2duuid-abbbc711\x2d9904\x2d466b\x2d8a35\x2d783f0d19bf50.device - /dev/disk/by-uuid/abbbc711-9904-466b-8a35-783f0d19bf50...
[ 102.206228] systemd[1]: Expecting device dev-mapper-luks\x2d1a8d8cdb\x2d8d8f\x2d4689\x2db744\x2d8f32d2067f56.device - /dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56...
[ 102.206239] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[ 102.206251] systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups.
[ 102.206258] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[ 102.206263] systemd[1]: Reached target slices.target - Slice Units.
[ 102.206270] systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
[ 102.206284] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[ 102.206319] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[ 102.206617] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[ 102.206840] systemd[1]: Listening on syslog.socket - Syslog Socket.
[ 102.206876] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[ 102.206899] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[ 102.206938] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[ 102.206978] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[ 102.207002] systemd[1]: systemd-pcrextend.socket - TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 102.207316] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ 102.207350] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 102.208693] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[ 102.209297] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[ 102.209890] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[ 102.210443] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[ 102.212683] systemd[1]: Starting systemd-journald.service - Journal Service...
[ 102.212871] systemd[1]: Finished blk-availability.service - Availability of block devices.
[ 102.215457] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[ 102.217455] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[ 102.219381] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[ 102.221342] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 102.222687] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[ 102.223264] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[ 102.223775] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[ 102.224306] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[ 102.224724] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[ 102.225167] systemd[1]: Starting modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics...
[ 102.225689] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[ 102.225697] systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 102.226104] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[ 102.226123] systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 102.226480] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ 102.227009] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[ 102.227050] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ 102.227079] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ 102.227108] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ 102.227195] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ 102.227208] systemd-journald[816]: Collecting audit messages is disabled.
[ 102.227293] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 102.227351] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[ 102.227455] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 102.227513] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[ 102.227602] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 102.227651] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[ 102.227743] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 102.227791] pstore: Using crash dump compression: deflate
[ 102.227793] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[ 102.228349] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[ 102.228689] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[ 102.229153] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[ 102.229258] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 102.229321] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[ 102.229378] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[ 102.231597] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[ 102.231789] Key type psk registered
[ 102.232663] BTRFS info (device dm-0 state M): turning on sync discard
[ 102.232667] BTRFS info (device dm-0 state M): enabling auto defrag
[ 102.232667] BTRFS info (device dm-0 state M): use lzo compression, level 0
[ 102.233041] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[ 102.233143] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[ 102.233873] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[ 102.234338] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[ 102.234348] systemd[1]: systemd-tpm2-setup.service - TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 102.237603] systemd[1]: modprobe@nvme_fabrics.service: Deactivated successfully.
[ 102.237677] systemd[1]: Finished modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics.
[ 102.241108] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[ 102.241322] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
[ 102.241594] lp: driver loaded but no devices found
[ 102.242978] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[ 102.254802] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[ 102.263330] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[ 102.263453] ppdev: user-space parallel port driver
[ 102.263991] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[ 102.264953] systemd[1]: Started systemd-journald.service - Journal Service.
[ 102.281468] systemd-journald[816]: Received client request to flush runtime journal.
[ 102.306730] systemd-journald[816]: /var/log/journal/86d43f3761a64806a644a560706664c5/system.journal: Journal file uses a different sequence number ID, rotating.
[ 102.306734] systemd-journald[816]: Rotating system journal.
[ 102.307067] pstore: Registered efi_pstore as persistent store backend
[ 102.332211] loop0: detected capacity change from 0 to 152056
[ 102.333111] loop1: detected capacity change from 0 to 151296
[ 102.333318] loop2: detected capacity change from 0 to 22752
[ 102.334013] loop3: detected capacity change from 0 to 8
[ 102.334121] loop4: detected capacity change from 0 to 21952
[ 102.334790] loop5: detected capacity change from 0 to 1034424
[ 102.335508] loop6: detected capacity change from 0 to 187776
[ 102.337216] loop7: detected capacity change from 0 to 79328
[ 102.338940] loop8: detected capacity change from 0 to 79520
[ 102.340879] BTRFS info: devid 1 device path /dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 changed to /dev/dm-0 scanned by (udev-worker) (917)
[ 102.341340] BTRFS info: devid 1 device path /dev/dm-0 changed to /dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 scanned by (udev-worker) (917)
[ 102.367923] input: Intel HID events as /devices/platform/INTC1051:00/input/input14
[ 102.370265] Consider using thermal netlink events interface
[ 102.390236] intel_pmc_core INT33A1:00: initialized
[ 102.433700] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 102.433949] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 102.434076] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 102.434797] intel_rapl_msr: PL4 support detected.
[ 102.437426] intel_rapl_common: Found RAPL domain package
[ 102.437440] intel_rapl_common: Found RAPL domain core
[ 102.437453] intel_rapl_common: Found RAPL domain psys
[ 102.439952] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 102.440704] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 102.440751] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 102.441006] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer
[ 102.441009] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 102.441010] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 102.441011] RAPL PMU: hw unit of domain psys 2^-14 Joules
[ 102.442430] i2c i2c-2: Successfully instantiated SPD at 0x50
[ 102.445124] Intel(R) Wireless WiFi driver for Linux
[ 102.447029] iwlwifi 0000:00:14.3: Detected crf-id 0x400410, cnv-id 0x80401 wfpm id 0x80000020
[ 102.447055] iwlwifi 0000:00:14.3: PCI dev 7a70/0094, rev=0x430, rfid=0x2010d000
[ 102.447057] iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6E AX211 160MHz
[ 102.447150] iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-so-a0-gf-a0-89.ucode failed with error -2
[ 102.447167] iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-so-a0-gf-a0-88.ucode failed with error -2
[ 102.447178] iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-so-a0-gf-a0-87.ucode failed with error -2
[ 102.451327] iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.0.2.41
[ 102.451597] iwlwifi 0000:00:14.3: loaded firmware version 86.fb5c9aeb.0 so-a0-gf-a0-86.ucode op_mode iwlmvm
[ 102.467335] intel_rapl_common: Found RAPL domain package
[ 102.473293] spd5118 2-0050: DDR5 temperature sensor: vendor 0x06:0x32 revision 1.6
[ 102.490821] Bluetooth: Core ver 2.22
[ 102.490908] NET: Registered PF_BLUETOOTH protocol family
[ 102.490914] Bluetooth: HCI device and connection manager initialized
[ 102.490935] Bluetooth: HCI socket layer initialized
[ 102.490938] Bluetooth: L2CAP socket layer initialized
[ 102.490958] Bluetooth: SCO socket layer initialized
[ 102.500921] Creating 1 MTD partitions on "0000:00:1f.5":
[ 102.500924] 0x000000000000-0x000002000000 : "BIOS"
[ 102.504749] mc: Linux media interface: v0.10
[ 102.508203] ite_829x: loading out-of-tree module taints kernel.
[ 102.509620] ite_829x 0003:048D:8910.0001: hiddev0,hidraw0: USB HID v1.10 Device [ITE Tech. Inc. ITE Device(829x)] on usb-0000:00:14.0-7/input0
[ 102.515713] videodev: Linux video capture interface: v2.00
[ 102.520624] usbcore: registered new interface driver btusb
[ 102.522043] Bluetooth: hci0: Device revision is 0
[ 102.522047] Bluetooth: hci0: Secure boot is enabled
[ 102.522049] Bluetooth: hci0: OTP lock is enabled
[ 102.522050] Bluetooth: hci0: API lock is enabled
[ 102.522050] Bluetooth: hci0: Debug lock is disabled
[ 102.522051] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[ 102.522053] Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38
[ 102.523346] Bluetooth: hci0: DSM reset method type: 0x00
[ 102.528936] Bluetooth: hci0: Found device firmware: intel/ibt-1040-0041.sfi
[ 102.528948] Bluetooth: hci0: Boot Address: 0x100800
[ 102.528949] Bluetooth: hci0: Firmware Version: 60-48.23
[ 102.589785] MXM: GUID detected in BIOS
[ 102.590001] pci 0000:02:00.0: optimus capabilities: enabled, status dynamic power, hda bios codec supported
[ 102.590013] VGA switcheroo: detected Optimus DSM method \_SB_.PC00.PEG2.PEGP handle
[ 102.590015] nouveau: detected PR support, will not use DSM
[ 102.590603] nouveau 0000:02:00.0: NVIDIA AD104 (194000a1)
[ 102.590876] usb 1-6: Found UVC 1.50 device Chicony USB2.0 Camera (04f2:b7e7)
[ 102.594636] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[ 102.596192] snd_hda_intel 0000:02:00.1: enabling device (0000 -> 0002)
[ 102.596506] snd_hda_intel 0000:02:00.1: Disabling MSI
[ 102.596534] snd_hda_intel 0000:02:00.1: Handle vga_switcheroo audio client
[ 102.600752] intel_tcc_cooling: Programmable TCC Offset detected
[ 102.613513] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_1 due to name collision
[ 102.613524] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_2 due to name collision
[ 102.613532] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_3 due to name collision
[ 102.613542] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_4 due to name collision
[ 102.613555] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_5 due to name collision
[ 102.613570] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_6 due to name collision
[ 102.613586] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_7 due to name collision
[ 102.613603] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_8 due to name collision
[ 102.613620] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_9 due to name collision
[ 102.613639] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_10 due to name collision
[ 102.613655] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_11 due to name collision
[ 102.613669] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_12 due to name collision
[ 102.613691] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_13 due to name collision
[ 102.613715] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_14 due to name collision
[ 102.613732] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_15 due to name collision
[ 102.613757] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_16 due to name collision
[ 102.613781] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_17 due to name collision
[ 102.613808] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_18 due to name collision
[ 102.613835] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_19 due to name collision
[ 102.613864] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_20 due to name collision
[ 102.613893] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_21 due to name collision
[ 102.613925] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_22 due to name collision
[ 102.613960] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_23 due to name collision
[ 102.613993] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_24 due to name collision
[ 102.614028] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_25 due to name collision
[ 102.614070] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_26 due to name collision
[ 102.614101] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_27 due to name collision
[ 102.614129] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_28 due to name collision
[ 102.614157] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_29 due to name collision
[ 102.614186] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_30 due to name collision
[ 102.614216] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_31 due to name collision
[ 102.614247] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_32 due to name collision
[ 102.614279] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_33 due to name collision
[ 102.614313] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_34 due to name collision
[ 102.614348] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_35 due to name collision
[ 102.614385] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_36 due to name collision
[ 102.614424] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_37 due to name collision
[ 102.614473] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_38 due to name collision
[ 102.614530] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_39 due to name collision
[ 102.614597] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_40 due to name collision
[ 102.614656] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_41 due to name collision
[ 102.614705] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_42 due to name collision
[ 102.614762] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_43 due to name collision
[ 102.614811] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_44 due to name collision
[ 102.614879] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_45 due to name collision
[ 102.614956] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_46 due to name collision
[ 102.615021] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_47 due to name collision
[ 102.615098] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_48 due to name collision
[ 102.615176] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_49 due to name collision
[ 102.615243] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_50 due to name collision
[ 102.615307] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_51 due to name collision
[ 102.615369] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_52 due to name collision
[ 102.615435] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_53 due to name collision
[ 102.615510] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_54 due to name collision
[ 102.615593] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_55 due to name collision
[ 102.615668] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_56 due to name collision
[ 102.615739] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_57 due to name collision
[ 102.615815] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_58 due to name collision
[ 102.615891] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_59 due to name collision
[ 102.615973] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_60 due to name collision
[ 102.616051] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_61 due to name collision
[ 102.616134] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_62 due to name collision
[ 102.616220] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_63 due to name collision
[ 102.616312] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_64 due to name collision
[ 102.616409] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_65 due to name collision
[ 102.616504] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_66 due to name collision
[ 102.616598] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_67 due to name collision
[ 102.616691] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_68 due to name collision
[ 102.616803] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_69 due to name collision
[ 102.616918] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC1220: line_outs=1 (0x1b/0x0/0x0/0x0/0x0) type:speaker
[ 102.616927] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_70 due to name collision
[ 102.616932] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 102.616938] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x14/0x0/0x0/0x0/0x0)
[ 102.616939] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 102.616942] snd_hda_codec_realtek hdaudioC0D0: dig-out=0x1e/0x0
[ 102.616943] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 102.616944] snd_hda_codec_realtek hdaudioC0D0: Mic=0x18
[ 102.616945] snd_hda_codec_realtek hdaudioC0D0: Internal Mic=0x12
[ 102.617057] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_71 due to name collision
[ 102.617180] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_72 due to name collision
[ 102.617303] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_73 due to name collision
[ 102.617423] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_74 due to name collision
[ 102.617564] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_75 due to name collision
[ 102.617708] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_76 due to name collision
[ 102.617843] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_77 due to name collision
[ 102.617991] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_78 due to name collision
[ 102.618126] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_79 due to name collision
[ 102.618287] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_80 due to name collision
[ 102.618437] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_81 due to name collision
[ 102.618629] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_82 due to name collision
[ 102.619090] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_83 due to name collision
[ 102.619226] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_84 due to name collision
[ 102.619473] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_85 due to name collision
[ 102.619629] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_86 due to name collision
[ 102.619923] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_87 due to name collision
[ 102.619962] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card1/input15
[ 102.620069] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card1/input16
[ 102.620108] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_88 due to name collision
[ 102.620161] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card1/input17
[ 102.620267] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card1/input18
[ 102.620305] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_89 due to name collision
[ 102.620507] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_90 due to name collision
[ 102.620664] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_91 due to name collision
[ 102.620831] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_92 due to name collision
[ 102.620993] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_93 due to name collision
[ 102.621178] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_94 due to name collision
[ 102.622417] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_95 due to name collision
[ 102.622741] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_96 due to name collision
[ 102.623878] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_97 due to name collision
[ 102.624201] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_98 due to name collision
[ 102.624592] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_99 due to name collision
[ 102.624778] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_100 due to name collision
[ 102.625932] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_101 due to name collision
[ 102.626616] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_102 due to name collision
[ 102.627709] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_103 due to name collision
[ 102.628033] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_104 due to name collision
[ 102.628330] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_105 due to name collision
[ 102.628660] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_106 due to name collision
[ 102.628992] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_107 due to name collision
[ 102.629304] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_108 due to name collision
[ 102.629633] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_109 due to name collision
[ 102.629897] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input19
[ 102.629912] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_110 due to name collision
[ 102.629935] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input20
[ 102.630140] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_111 due to name collision
[ 102.630365] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_112 due to name collision
[ 102.630592] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_113 due to name collision
[ 102.630816] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_114 due to name collision
[ 102.631046] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_115 due to name collision
[ 102.631276] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_116 due to name collision
[ 102.631515] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_117 due to name collision
[ 102.631808] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_118 due to name collision
[ 102.632052] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_119 due to name collision
[ 102.646280] usb 1-6: Found UVC 1.50 device Chicony USB2.0 Camera (04f2:b7e7)
[ 102.657018] usbcore: registered new interface driver uvcvideo
[ 102.707340] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[ 102.707395] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[ 102.707454] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[ 102.707496] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[ 102.708208] iwlwifi 0000:00:14.3: loaded PNVM version e28bb9d7
[ 102.708348] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
[ 102.725141] iwlwifi 0000:00:14.3: Detected RF GF, rfid=0x2010d000
[ 102.793901] iwlwifi 0000:00:14.3: base HW address: dc:97:ba:75:8a:32
[ 102.825852] iwlwifi 0000:00:14.3 wlp0s20f3: renamed from wlan0
[ 102.960854] nouveau 0000:02:00.0: bios: version 95.04.63.00.24
[ 102.974192] nouveau 0000:02:00.0: vgaarb: deactivate vga console
[ 103.255378] BTRFS: device label kfocus_boot devid 1 transid 457 /dev/nvme0n1p2 (259:2) scanned by mount (1402)
[ 103.255864] BTRFS info (device nvme0n1p2): first mount of filesystem abbbc711-9904-466b-8a35-783f0d19bf50
[ 103.255879] BTRFS info (device nvme0n1p2): using crc32c (crc32c-intel) checksum algorithm
[ 103.255882] BTRFS info (device nvme0n1p2): using free-space-tree
[ 103.267849] Adding 524284k swap on /swap/swapfile. Priority:-2 extents:2 across:1686444k SS
[ 103.292944] audit: type=1400 audit(1730232631.886:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-run" pid=1469 comm="apparmor_parser"
[ 103.292955] audit: type=1400 audit(1730232631.886:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=1458 comm="apparmor_parser"
[ 103.293102] audit: type=1400 audit(1730232631.886:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="cam" pid=1467 comm="apparmor_parser"
[ 103.293106] audit: type=1400 audit(1730232631.886:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="chrome" pid=1470 comm="apparmor_parser"
[ 103.293131] audit: type=1400 audit(1730232631.886:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="QtWebEngineProcess" pid=1461 comm="apparmor_parser"
[ 103.293193] audit: type=1400 audit(1730232631.886:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=1464 comm="apparmor_parser"
[ 103.293206] audit: type=1400 audit(1730232631.886:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="vscode" pid=1471 comm="apparmor_parser"
[ 103.293226] audit: type=1400 audit(1730232631.886:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="flatpak" pid=1479 comm="apparmor_parser"
[ 103.293249] audit: type=1400 audit(1730232631.886:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=1460 comm="apparmor_parser"
[ 103.293273] audit: type=1400 audit(1730232631.886:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="crun" pid=1473 comm="apparmor_parser"
[ 103.958216] Bluetooth: hci0: Waiting for firmware download to complete
[ 103.959082] Bluetooth: hci0: Firmware loaded in 1396621 usecs
[ 103.959217] Bluetooth: hci0: Waiting for device to boot
[ 103.973202] nouveau 0000:02:00.0: drm: VRAM: 12282 MiB
[ 103.973204] nouveau 0000:02:00.0: drm: GART: 536870912 MiB
[ 103.975088] Bluetooth: hci0: Malformed MSFT vendor event: 0x02
[ 103.975091] Bluetooth: hci0: Device booted in 15598 usecs
[ 103.977282] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-1040-0041.ddc
[ 103.979171] Bluetooth: hci0: Applying Intel DDC parameters completed
[ 103.982193] Bluetooth: hci0: Firmware timestamp 2023.48 buildtype 1 build 75324
[ 103.982206] Bluetooth: hci0: Firmware SHA1: 0x23bac558
[ 103.986164] Bluetooth: hci0: Fseq status: Success (0x00)
[ 103.986175] Bluetooth: hci0: Fseq executed: 00.00.02.41
[ 103.986181] Bluetooth: hci0: Fseq BT Top: 00.00.02.41
[ 104.030128] nouveau 0000:02:00.0: drm: MM: using COPY for buffer copies
[ 104.063230] snd_hda_intel 0000:02:00.1: bound 0000:02:00.0 (ops disp50xx_modifiers [nouveau])
[ 104.067985] acpi device:06: registered as cooling_device36
[ 104.068193] [drm] Initialized nouveau 1.4.0 for 0000:02:00.0 on minor 1
[ 104.085906] fbcon: nouveaudrmfb (fb0) is primary device
[ 104.085908] fbcon: Deferring console take-over
[ 104.085909] nouveau 0000:02:00.0: [drm] fb0: nouveaudrmfb frame buffer device
[ 104.115237] snd_hda_codec_hdmi hdaudioC1D0: HDMI: pin NID 0x4 not registered
[ 104.373953] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 104.373956] Bluetooth: BNEP filters: protocol multicast
[ 104.373959] Bluetooth: BNEP socket layer initialized
[ 104.374745] Bluetooth: MGMT ver 1.23
[ 104.379260] NET: Registered PF_ALG protocol family
[ 104.439179] loop9: detected capacity change from 0 to 8
[ 104.442351] NET: Registered PF_QIPCRTR protocol family
[ 105.131537] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[ 105.131567] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[ 105.131577] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[ 105.131587] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[ 105.132694] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
[ 105.233077] iwlwifi 0000:00:14.3: Registered PHC clock: iwlwifi-PTP, with index: 1
[ 115.523704] snd_hda_codec_hdmi hdaudioC1D0: HDMI: pin NID 0x4 not registered
[ 116.709343] igc 0000:03:00.0 enp3s0: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[ 117.466629] Bluetooth: RFCOMM TTY layer initialized
[ 117.466633] Bluetooth: RFCOMM socket layer initialized
[ 117.466635] Bluetooth: RFCOMM ver 1.11
[ 586.745645] systemd-journald[816]: /var/log/journal/86d43f3761a64806a644a560706664c5/user-1000.journal: Journal file uses a different sequence number ID, rotating.
[ 587.696757] warning: `kded5' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[ 587.946334] snd_hda_codec_hdmi hdaudioC1D0: HDMI: pin NID 0x4 not registered
[ 588.667533] thunderbolt 0000:06:00.0: control channel starting...
[ 588.667539] thunderbolt 0000:06:00.0: starting TX ring 0
[ 588.667547] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 588.667550] thunderbolt 0000:06:00.0: starting RX ring 0
[ 588.667558] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 588.667558] xhci_hcd 0000:2d:00.0: xHC error in resume, USBSTS 0x401, Reinit
[ 588.667564] thunderbolt 0000:06:00.0: 0: resuming switch
[ 588.667565] usb usb3: root hub lost power or was reset
[ 588.667567] thunderbolt 0000:06:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[ 588.667568] usb usb4: root hub lost power or was reset
[ 588.667735] thunderbolt 0000:06:00.0: 0: disabling wakeup
[ 588.676625] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
[ 588.676630] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
[ 588.676758] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
[ 588.676761] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[ 588.677270] thunderbolt 0000:06:00.0: 0: TMU: mode set to: bi-directional, HiFi
[ 588.677514] thunderbolt 0000:06:00.0: acking hot plug event on 0:13
[ 588.677645] thunderbolt 0000:06:00.0: acking hot plug event on 0:14
[ 588.677773] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
[ 588.679650] thunderbolt 0000:06:00.0: 0:13: DP IN resource available after hotplug
[ 588.679654] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 588.679750] thunderbolt 0000:06:00.0: 0:13: DP IN available
[ 588.679752] thunderbolt 0000:06:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[ 588.680518] thunderbolt 0000:06:00.0: 0:14: DP IN resource available after hotplug
[ 588.680521] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 588.680644] thunderbolt 0000:06:00.0: 0:13: DP IN available
[ 588.680645] thunderbolt 0000:06:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[ 588.680769] thunderbolt 0000:06:00.0: 0:14: DP IN available
[ 588.680770] thunderbolt 0000:06:00.0: 0:14: no suitable DP OUT adapter available, not tunneling
[ 589.251306] wlp0s20f3: authenticate with a0:55:1f:2f:2c:93 (local address=dc:97:ba:75:8a:32)
[ 589.252998] wlp0s20f3: send auth to a0:55:1f:2f:2c:93 (try 1/3)
[ 589.288218] wlp0s20f3: authenticate with a0:55:1f:2f:2c:93 (local address=dc:97:ba:75:8a:32)
[ 589.288653] wlp0s20f3: send auth to a0:55:1f:2f:2c:93 (try 1/3)
[ 589.290158] wlp0s20f3: authenticated
[ 589.290684] wlp0s20f3: associate with a0:55:1f:2f:2c:93 (try 1/3)
[ 589.300630] wlp0s20f3: RX AssocResp from a0:55:1f:2f:2c:93 (capab=0x1011 status=0 aid=8)
[ 589.306597] wlp0s20f3: associated
[ 604.466379] thunderbolt 0000:06:00.0: 0: suspending switch
[ 604.466396] thunderbolt 0000:06:00.0: 0: enabling wakeup: 0x3f
[ 604.467418] thunderbolt 0000:06:00.0: stopping RX ring 0
[ 604.467441] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[ 604.467714] thunderbolt 0000:06:00.0: stopping TX ring 0
[ 604.467731] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[ 604.467755] thunderbolt 0000:06:00.0: control channel stopped
[ 1410.603072] usb 1-9: new full-speed USB device number 5 using xhci_hcd
[ 1410.741493] usb 1-9: not running at top speed; connect to a high speed hub
[ 1410.756048] usb 1-9: New USB device found, idVendor=2109, idProduct=0103, bcdDevice= 2.00
[ 1410.756060] usb 1-9: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1410.756064] usb 1-9: Product: USB 2.0 BILLBOARD
[ 1410.756067] usb 1-9: Manufacturer: VIA Technologies Inc.
[ 1410.756070] usb 1-9: SerialNumber: 0000000000000001
[ 1461.373448] snd_hda_codec_hdmi hdaudioC1D0: HDMI: pin NID 0x4 not registered
[ 1590.638802] usb 1-10: new high-speed USB device number 6 using xhci_hcd
[ 1590.780973] usb 1-10: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.49
[ 1590.780986] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1590.780989] usb 1-10: Product: 4-Port USB 2.0 Hub
[ 1590.780992] usb 1-10: Manufacturer: Generic
[ 1590.784399] hub 1-10:1.0: USB hub found
[ 1590.785781] hub 1-10:1.0: 4 ports detected
[ 1591.576895] usb 1-10.3: new full-speed USB device number 7 using xhci_hcd
[ 1591.664653] usb 1-10.3: New USB device found, idVendor=043e, idProduct=9a39, bcdDevice= 4.11
[ 1591.664674] usb 1-10.3: New USB device strings: Mfr=1, Product=3, SerialNumber=4
[ 1591.664679] usb 1-10.3: Product: LG Monitor Controls
[ 1591.664683] usb 1-10.3: Manufacturer: LG Electronics Inc.
[ 1591.664687] usb 1-10.3: SerialNumber: 005INTX1F153
[ 1591.671591] hid-generic 0003:043E:9A39.0003: hiddev1,hidraw2: USB HID v1.11 Device [LG Electronics Inc. LG Monitor Controls] on usb-0000:00:14.0-10.3/input0
[ 1668.565788] thunderbolt 0000:06:00.0: control channel starting...
[ 1668.565803] thunderbolt 0000:06:00.0: starting TX ring 0
[ 1668.565820] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 1668.565828] thunderbolt 0000:06:00.0: starting RX ring 0
[ 1668.565838] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 1668.565849] thunderbolt 0000:06:00.0: 0: resuming switch
[ 1668.565853] thunderbolt 0000:06:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[ 1668.566749] xhci_hcd 0000:2d:00.0: xHC error in resume, USBSTS 0x401, Reinit
[ 1668.566755] usb usb3: root hub lost power or was reset
[ 1668.566760] usb usb4: root hub lost power or was reset
[ 1668.568827] thunderbolt 0000:06:00.0: 0: disabling wakeup
[ 1668.577180] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
[ 1668.577822] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
[ 1668.577829] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
[ 1668.577947] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
[ 1668.577952] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[ 1668.578458] thunderbolt 0000:06:00.0: 0: TMU: mode set to: bi-directional, HiFi
[ 1668.579359] thunderbolt 0000:06:00.0: 0:13: enter redrive mode, keeping powered
[ 1668.579997] thunderbolt 0000:06:00.0: 0:14: enter redrive mode, keeping powered
[ 1751.666669] snd_hda_codec_hdmi hdaudioC1D0: HDMI: pin NID 0x4 not registered
[ 1781.122684] i2c_hid_acpi i2c-FTCS1000:01: i2c_hid_get_input: incomplete report (12/3084)
[-- Attachment #4: 2024-10-29_6.12.0-rc5_tbt-barlow-ridge-02-dmesg.txt --]
[-- Type: text/plain, Size: 111603 bytes --]
[ 0.000000] Linux version 6.12.0-rc5 (qa@qa-m2) (gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #1 SMP PREEMPT_DYNAMIC Tue Oct 29 09:14:25 PDT 2024
[ 0.000000] Command line: BOOT_IMAGE=/@boot/vmlinuz-6.12.0-rc5 root=UUID=aa8cb093-9cb3-4cc7-b44e-4bff76ca37fb ro rootflags=subvol=@ quiet cryptdevice=UUID=1a8d8cdb-8d8f-4689-b744-8f32d2067f56:luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 root=/dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 spla vt.handoff=7
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Hygon HygonGenuine
[ 0.000000] Centaur CentaurHauls
[ 0.000000] zhaoxin Shanghai
[ 0.000000] x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000030228fff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000030229000-0x0000000030b28fff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000030b29000-0x000000003293efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000003293f000-0x00000000349defff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000349df000-0x000000003798efff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000003798f000-0x0000000037afefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x0000000037aff000-0x0000000037afffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000037b00000-0x000000003bffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000003c800000-0x000000003cbfffff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000003ce00000-0x000000003fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000008bfffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] e820: update [mem 0x2b4c3018-0x2b4e7e57] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000002b4c3017] usable
[ 0.000000] reserve setup_data: [mem 0x000000002b4c3018-0x000000002b4e7e57] usable
[ 0.000000] reserve setup_data: [mem 0x000000002b4e7e58-0x0000000030228fff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000030229000-0x0000000030b28fff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000030b29000-0x000000003293efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000003293f000-0x00000000349defff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000349df000-0x000000003798efff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x000000003798f000-0x0000000037afefff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x0000000037aff000-0x0000000037afffff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000037b00000-0x000000003bffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000003c800000-0x000000003cbfffff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000003ce00000-0x000000003fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x00000008bfffffff] usable
[ 0.000000] efi: EFI v2.8 by INSYDE Corp.
[ 0.000000] efi: ACPI=0x37afe000 ACPI 2.0=0x37afe014 TPMFinalLog=0x37866000 SMBIOS=0x32fda000 MEMATTR=0x2ba24018 ESRT=0x2ca20798 MOKvar=0x32f86000 INITRD=0x2bd95418 RNG=0x37a24018 TPMEventLog=0x37a18018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem83: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0xc0000000-0xcfffffff] reserved
[ 0.000000] efi: Remove mem85: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] SMBIOS 3.4 present.
[ 0.000000] DMI: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 0.000000] DMI: Memory slots populated: 2/2
[ 0.000000] tsc: Detected 2400.000 MHz processor
[ 0.000000] tsc: Detected 2419.200 MHz TSC
[ 0.000008] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000011] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000020] last_pfn = 0x8c0000 max_arch_pfn = 0x400000000
[ 0.000025] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
[ 0.000028] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000753] last_pfn = 0x37b00 max_arch_pfn = 0x400000000
[ 0.009502] esrt: Reserving ESRT space from 0x000000002ca20798 to 0x000000002ca20820.
[ 0.009511] e820: update [mem 0x2ca20000-0x2ca20fff] usable ==> reserved
[ 0.009534] Using GB pages for direct mapping
[ 0.009535] Incomplete global flushes, disabling PCID
[ 0.010066] Secure boot disabled
[ 0.010067] RAMDISK: [mem 0x1ad05000-0x1f5f6fff]
[ 0.010141] ACPI: Early table checksum verification disabled
[ 0.010145] ACPI: RSDP 0x0000000037AFE014 000024 (v02 INSYDE)
[ 0.010151] ACPI: XSDT 0x0000000037A38188 00012C (v01 INSYDE ADL 00000002 01000013)
[ 0.010159] ACPI: FACP 0x0000000037ADB000 000114 (v06 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010167] ACPI: DSDT 0x0000000037A4E000 089652 (v02 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010171] ACPI: FACS 0x000000003783E000 000040
[ 0.010175] ACPI: UEFI 0x000000003798E000 0001CF (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
[ 0.010179] ACPI: SSDT 0x0000000037AF3000 00908F (v02 DptfTb DptfTabl 00001000 INTL 20200717)
[ 0.010183] ACPI: SSDT 0x0000000037AED000 005D34 (v02 CpuRef CpuSsdt 00003000 INTL 20200717)
[ 0.010188] ACPI: SSDT 0x0000000037AEA000 00276F (v02 SaSsdt SaSsdt 00003000 INTL 20200717)
[ 0.010191] ACPI: SSDT 0x0000000037AE6000 00328B (v02 INTEL IgfxSsdt 00003000 INTL 20200717)
[ 0.010194] ACPI: SSDT 0x0000000037AE5000 00077B (v02 INSYDE Tpm2Tabl 00001000 INTL 20200717)
[ 0.010197] ACPI: TPM2 0x0000000037AE4000 00004C (v04 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010200] ACPI: SSDT 0x0000000037ADF000 003249 (v02 INTEL DTbtSsdt 00001000 INTL 20200717)
[ 0.010203] ACPI: SSDT 0x0000000037ADD000 0016A6 (v02 INSYDE UsbCTabl 00001000 INTL 20200717)
[ 0.010206] ACPI: NHLT 0x0000000037ADC000 00002D (v00 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010210] ACPI: HPET 0x0000000037ADA000 000038 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010213] ACPI: APIC 0x0000000037AD9000 0001DC (v05 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010216] ACPI: MCFG 0x0000000037AD8000 00003C (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010219] ACPI: SSDT 0x0000000037A48000 0054E4 (v02 INSYDE ADL 00000002 01000013)
[ 0.010222] ACPI: WSMT 0x0000000037A47000 000028 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010225] ACPI: SSDT 0x0000000037A45000 0015FD (v02 INSYDE PtidDevc 00001000 INTL 20200717)
[ 0.010228] ACPI: SSDT 0x0000000037A3B000 009573 (v02 INSYDE TbtTypeC 00000000 INTL 20200717)
[ 0.010231] ACPI: DBGP 0x0000000037A3A000 000034 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010234] ACPI: DBG2 0x0000000037A39000 000054 (v00 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010238] ACPI: DMAR 0x0000000037AFD000 000050 (v01 INTEL ICL 00000002 ACPI 00040000)
[ 0.010241] ACPI: SSDT 0x0000000037A35000 002EE7 (v01 NvdRef NvdTabl 00001000 INTL 20200717)
[ 0.010244] ACPI: SSDT 0x0000000037A34000 00020D (v01 NvdRef NvdDiscr 00001000 INTL 20200717)
[ 0.010247] ACPI: SSDT 0x0000000037A33000 00064F (v01 NvdRef NvDisDds 00001000 INTL 20200717)
[ 0.010250] ACPI: UEFI 0x000000003783B000 00063A (v01 INTEL RstVmdE 00000000 ACPI 00040000)
[ 0.010254] ACPI: UEFI 0x000000003783A000 00005C (v01 INTEL RstVmdV 00000000 ACPI 00040000)
[ 0.010257] ACPI: SSDT 0x0000000037A31000 001057 (v02 INTEL xh_rplsb 00000000 INTL 20200717)
[ 0.010260] ACPI: SSDT 0x0000000037A2D000 0039DA (v02 SocGpe SocGpe 00003000 INTL 20200717)
[ 0.010263] ACPI: SSDT 0x0000000037A29000 0039DA (v02 SocCmn SocCmn 00003000 INTL 20200717)
[ 0.010266] ACPI: SSDT 0x0000000037A28000 0000F8 (v02 INSYDE PcdTabl 00001000 INTL 20200717)
[ 0.010269] ACPI: FPDT 0x0000000037A27000 000044 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.010272] ACPI: PHAT 0x0000000037A25000 0005ED (v01 INSYDE ADL 00000005 ACPI 00040000)
[ 0.010276] ACPI: BGRT 0x0000000037A26000 000038 (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
[ 0.010278] ACPI: Reserving FACP table memory at [mem 0x37adb000-0x37adb113]
[ 0.010280] ACPI: Reserving DSDT table memory at [mem 0x37a4e000-0x37ad7651]
[ 0.010281] ACPI: Reserving FACS table memory at [mem 0x3783e000-0x3783e03f]
[ 0.010282] ACPI: Reserving UEFI table memory at [mem 0x3798e000-0x3798e1ce]
[ 0.010283] ACPI: Reserving SSDT table memory at [mem 0x37af3000-0x37afc08e]
[ 0.010284] ACPI: Reserving SSDT table memory at [mem 0x37aed000-0x37af2d33]
[ 0.010285] ACPI: Reserving SSDT table memory at [mem 0x37aea000-0x37aec76e]
[ 0.010286] ACPI: Reserving SSDT table memory at [mem 0x37ae6000-0x37ae928a]
[ 0.010287] ACPI: Reserving SSDT table memory at [mem 0x37ae5000-0x37ae577a]
[ 0.010287] ACPI: Reserving TPM2 table memory at [mem 0x37ae4000-0x37ae404b]
[ 0.010288] ACPI: Reserving SSDT table memory at [mem 0x37adf000-0x37ae2248]
[ 0.010289] ACPI: Reserving SSDT table memory at [mem 0x37add000-0x37ade6a5]
[ 0.010290] ACPI: Reserving NHLT table memory at [mem 0x37adc000-0x37adc02c]
[ 0.010291] ACPI: Reserving HPET table memory at [mem 0x37ada000-0x37ada037]
[ 0.010292] ACPI: Reserving APIC table memory at [mem 0x37ad9000-0x37ad91db]
[ 0.010293] ACPI: Reserving MCFG table memory at [mem 0x37ad8000-0x37ad803b]
[ 0.010294] ACPI: Reserving SSDT table memory at [mem 0x37a48000-0x37a4d4e3]
[ 0.010294] ACPI: Reserving WSMT table memory at [mem 0x37a47000-0x37a47027]
[ 0.010295] ACPI: Reserving SSDT table memory at [mem 0x37a45000-0x37a465fc]
[ 0.010296] ACPI: Reserving SSDT table memory at [mem 0x37a3b000-0x37a44572]
[ 0.010297] ACPI: Reserving DBGP table memory at [mem 0x37a3a000-0x37a3a033]
[ 0.010298] ACPI: Reserving DBG2 table memory at [mem 0x37a39000-0x37a39053]
[ 0.010299] ACPI: Reserving DMAR table memory at [mem 0x37afd000-0x37afd04f]
[ 0.010300] ACPI: Reserving SSDT table memory at [mem 0x37a35000-0x37a37ee6]
[ 0.010301] ACPI: Reserving SSDT table memory at [mem 0x37a34000-0x37a3420c]
[ 0.010301] ACPI: Reserving SSDT table memory at [mem 0x37a33000-0x37a3364e]
[ 0.010302] ACPI: Reserving UEFI table memory at [mem 0x3783b000-0x3783b639]
[ 0.010303] ACPI: Reserving UEFI table memory at [mem 0x3783a000-0x3783a05b]
[ 0.010304] ACPI: Reserving SSDT table memory at [mem 0x37a31000-0x37a32056]
[ 0.010305] ACPI: Reserving SSDT table memory at [mem 0x37a2d000-0x37a309d9]
[ 0.010306] ACPI: Reserving SSDT table memory at [mem 0x37a29000-0x37a2c9d9]
[ 0.010307] ACPI: Reserving SSDT table memory at [mem 0x37a28000-0x37a280f7]
[ 0.010308] ACPI: Reserving FPDT table memory at [mem 0x37a27000-0x37a27043]
[ 0.010309] ACPI: Reserving PHAT table memory at [mem 0x37a25000-0x37a255ec]
[ 0.010309] ACPI: Reserving BGRT table memory at [mem 0x37a26000-0x37a26037]
[ 0.010559] No NUMA configuration found
[ 0.010560] Faking a node at [mem 0x0000000000000000-0x00000008bfffffff]
[ 0.010569] NODE_DATA(0) allocated [mem 0x8bffd5680-0x8bfffffff]
[ 0.010830] Zone ranges:
[ 0.010831] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.010833] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.010835] Normal [mem 0x0000000100000000-0x00000008bfffffff]
[ 0.010836] Device empty
[ 0.010837] Movable zone start for each node
[ 0.010839] Early memory node ranges
[ 0.010839] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.010841] node 0: [mem 0x0000000000100000-0x0000000030228fff]
[ 0.010843] node 0: [mem 0x0000000030b29000-0x000000003293efff]
[ 0.010844] node 0: [mem 0x0000000037aff000-0x0000000037afffff]
[ 0.010844] node 0: [mem 0x0000000100000000-0x00000008bfffffff]
[ 0.010848] Initmem setup node 0 [mem 0x0000000000001000-0x00000008bfffffff]
[ 0.010854] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.010877] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.012438] On node 0, zone DMA32: 2304 pages in unavailable ranges
[ 0.012668] On node 0, zone DMA32: 20928 pages in unavailable ranges
[ 0.055118] On node 0, zone Normal: 1280 pages in unavailable ranges
[ 0.055805] ACPI: PM-Timer IO Port: 0x1808
[ 0.055818] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.055820] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.055821] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.055821] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.055822] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.055823] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.055823] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.055824] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.055825] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[ 0.055825] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[ 0.055826] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[ 0.055827] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[ 0.055827] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[ 0.055828] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[ 0.055829] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[ 0.055829] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[ 0.055830] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[ 0.055831] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[ 0.055832] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[ 0.055832] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[ 0.055833] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[ 0.055834] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[ 0.055834] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[ 0.055835] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.055876] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.055880] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.055882] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.055886] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.055888] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.055897] e820: update [mem 0x2b8a0000-0x2b95afff] usable ==> reserved
[ 0.055911] TSC deadline timer available
[ 0.055914] CPU topo: Max. logical packages: 1
[ 0.055915] CPU topo: Max. logical dies: 1
[ 0.055916] CPU topo: Max. dies per package: 1
[ 0.055918] CPU topo: Max. threads per core: 2
[ 0.055919] CPU topo: Num. cores per package: 24
[ 0.055920] CPU topo: Num. threads per package: 32
[ 0.055921] CPU topo: Allowing 32 present CPUs plus 0 hotplug CPUs
[ 0.055937] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.055940] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[ 0.055942] PM: hibernation: Registered nosave memory: [mem 0x2b4c3000-0x2b4c3fff]
[ 0.055943] PM: hibernation: Registered nosave memory: [mem 0x2b4e7000-0x2b4e7fff]
[ 0.055945] PM: hibernation: Registered nosave memory: [mem 0x2b8a0000-0x2b95afff]
[ 0.055946] PM: hibernation: Registered nosave memory: [mem 0x2ca20000-0x2ca20fff]
[ 0.055948] PM: hibernation: Registered nosave memory: [mem 0x30229000-0x30b28fff]
[ 0.055949] PM: hibernation: Registered nosave memory: [mem 0x3293f000-0x349defff]
[ 0.055950] PM: hibernation: Registered nosave memory: [mem 0x349df000-0x3798efff]
[ 0.055951] PM: hibernation: Registered nosave memory: [mem 0x3798f000-0x37afefff]
[ 0.055952] PM: hibernation: Registered nosave memory: [mem 0x37b00000-0x3bffffff]
[ 0.055953] PM: hibernation: Registered nosave memory: [mem 0x3c000000-0x3c7fffff]
[ 0.055953] PM: hibernation: Registered nosave memory: [mem 0x3c800000-0x3cbfffff]
[ 0.055954] PM: hibernation: Registered nosave memory: [mem 0x3cc00000-0x3cdfffff]
[ 0.055955] PM: hibernation: Registered nosave memory: [mem 0x3ce00000-0x3fffffff]
[ 0.055955] PM: hibernation: Registered nosave memory: [mem 0x40000000-0xfed1ffff]
[ 0.055956] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
[ 0.055957] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xffffffff]
[ 0.055958] [mem 0x40000000-0xfed1ffff] available for PCI devices
[ 0.055960] Booting paravirtualized kernel on bare hardware
[ 0.055963] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.055976] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1
[ 0.057794] percpu: Embedded 88 pages/cpu s237568 r8192 d114688 u524288
[ 0.057801] pcpu-alloc: s237568 r8192 d114688 u524288 alloc=1*2097152
[ 0.057803] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07
[ 0.057808] pcpu-alloc: [0] 08 09 10 11 [0] 12 13 14 15
[ 0.057812] pcpu-alloc: [0] 16 17 18 19 [0] 20 21 22 23
[ 0.057816] pcpu-alloc: [0] 24 25 26 27 [0] 28 29 30 31
[ 0.057842] Kernel command line: BOOT_IMAGE=/@boot/vmlinuz-6.12.0-rc5 root=UUID=aa8cb093-9cb3-4cc7-b44e-4bff76ca37fb ro rootflags=subvol=@ quiet cryptdevice=UUID=1a8d8cdb-8d8f-4689-b744-8f32d2067f56:luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 root=/dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 spla vt.handoff=7
[ 0.057930] Unknown kernel command line parameters "spla BOOT_IMAGE=/@boot/vmlinuz-6.12.0-rc5 cryptdevice=UUID=1a8d8cdb-8d8f-4689-b744-8f32d2067f56:luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56", will be passed to user space.
[ 0.060534] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[ 0.061813] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.062227] Fallback order for Node 0: 0
[ 0.062232] Built 1 zonelists, mobility grouping on. Total pages: 8331230
[ 0.062233] Policy zone: Normal
[ 0.062239] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.062247] software IO TLB: area num 32.
[ 0.133043] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[ 0.133122] ftrace: allocating 56189 entries in 220 pages
[ 0.143069] ftrace: allocated 220 pages with 5 groups
[ 0.143904] Dynamic Preempt: voluntary
[ 0.144104] rcu: Preemptible hierarchical RCU implementation.
[ 0.144106] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=32.
[ 0.144108] Trampoline variant of Tasks RCU enabled.
[ 0.144108] Rude variant of Tasks RCU enabled.
[ 0.144109] Tracing variant of Tasks RCU enabled.
[ 0.144110] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[ 0.144111] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[ 0.144137] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
[ 0.144140] RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
[ 0.144143] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
[ 0.147091] NR_IRQS: 524544, nr_irqs: 2312, preallocated irqs: 16
[ 0.147452] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.147722] Console: colour dummy device 80x25
[ 0.147725] printk: legacy console [tty0] enabled
[ 0.147797] ACPI: Core revision 20240827
[ 0.148294] hpet: HPET dysfunctional in PC10. Force disabled.
[ 0.148353] APIC: Switch to symmetric I/O mode setup
[ 0.148355] DMAR: Host address width 39
[ 0.148356] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.148365] DMAR: dmar0: reg_base_addr fed91000 ver 5:0 cap d2008c40660462 ecap f050da
[ 0.148369] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 0
[ 0.148370] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.148371] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.150200] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.150202] x2apic enabled
[ 0.150274] APIC: Switched APIC routing to: cluster x2apic
[ 0.155231] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
[ 0.155239] Calibrating delay loop (skipped), value calculated using timer frequency.. 4838.40 BogoMIPS (lpj=2419200)
[ 0.155309] CPU0: Thermal monitoring enabled (TM1)
[ 0.155311] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[ 0.155468] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[ 0.155470] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[ 0.155474] process: using mwait in idle threads
[ 0.155476] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.155480] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[ 0.155481] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.155482] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[ 0.155484] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.155486] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.155487] Register File Data Sampling: Mitigation: Clear Register File
[ 0.155499] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.155500] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.155501] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.155502] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[ 0.155504] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[ 0.155505] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.155506] x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8
[ 0.155508] x86/fpu: xstate_offset[11]: 840, xstate_sizes[11]: 16
[ 0.155509] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[ 0.156236] Freeing SMP alternatives memory: 48K
[ 0.156236] pid_max: default: 32768 minimum: 301
[ 0.156236] LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,ima,evm
[ 0.156236] landlock: Up and running.
[ 0.156236] Yama: becoming mindful.
[ 0.156236] AppArmor: AppArmor initialized
[ 0.156236] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.156236] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.156236] smpboot: CPU0: Intel(R) Core(TM) i9-14900HX (family: 0x6, model: 0xb7, stepping: 0x1)
[ 0.156236] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline, AnyThread deprecated, Alderlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.156236] core: cpu_core PMU driver:
[ 0.156236] ... version: 5
[ 0.156236] ... bit width: 48
[ 0.156236] ... generic registers: 8
[ 0.156236] ... value mask: 0000ffffffffffff
[ 0.156236] ... max period: 00007fffffffffff
[ 0.156236] ... fixed-purpose events: 4
[ 0.156236] ... event mask: 0001000f000000ff
[ 0.156236] signal: max sigframe size: 3632
[ 0.156236] Estimated ratio of average max frequency by base frequency (times 1024): 2218
[ 0.156236] rcu: Hierarchical SRCU implementation.
[ 0.156236] rcu: Max phase no-delay instances is 400.
[ 0.156236] Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
[ 0.157989] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.159271] smp: Bringing up secondary CPUs ...
[ 0.159393] smpboot: x86: Booting SMP configuration:
[ 0.159394] .... node #0, CPUs: #2 #4 #6 #8 #10 #12 #14 #16 #17 #18 #19 #20 #21 #22 #23 #24 #25 #26 #27 #28 #29 #30 #31
[ 0.008601] core: cpu_atom PMU driver: PEBS-via-PT
[ 0.008601] ... version: 5
[ 0.008601] ... bit width: 48
[ 0.008601] ... generic registers: 6
[ 0.008601] ... value mask: 0000ffffffffffff
[ 0.008601] ... max period: 00007fffffffffff
[ 0.008601] ... fixed-purpose events: 3
[ 0.008601] ... event mask: 000000070000003f
[ 0.197263] #1 #3 #5 #7 #9 #11 #13 #15
[ 0.206329] smp: Brought up 1 node, 32 CPUs
[ 0.206329] smpboot: Total of 32 processors activated (154828.80 BogoMIPS)
[ 0.207613] Memory: 32501932K/33324920K available (22528K kernel code, 4585K rwdata, 14292K rodata, 5064K init, 4492K bss, 776940K reserved, 0K cma-reserved)
[ 0.208733] devtmpfs: initialized
[ 0.208733] x86/mm: Memory block size: 128MB
[ 0.212056] ACPI: PM: Registering ACPI NVS region [mem 0x349df000-0x3798efff] (50003968 bytes)
[ 0.212612] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.212664] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[ 0.212787] pinctrl core: initialized pinctrl subsystem
[ 0.213038] PM: RTC time: 19:22:20, date: 2024-10-29
[ 0.213580] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.214116] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[ 0.214473] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.214829] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.214840] audit: initializing netlink subsys (disabled)
[ 0.214864] audit: type=2000 audit(1730229740.059:1): state=initialized audit_enabled=0 res=1
[ 0.214864] thermal_sys: Registered thermal governor 'fair_share'
[ 0.214864] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.214864] thermal_sys: Registered thermal governor 'step_wise'
[ 0.214864] thermal_sys: Registered thermal governor 'user_space'
[ 0.214864] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.214864] EISA bus registered
[ 0.214864] cpuidle: using governor ladder
[ 0.214864] cpuidle: using governor menu
[ 0.215271] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.215402] PCI: ECAM [mem 0xc0000000-0xce0fffff] (base 0xc0000000) for domain 0000 [bus 00-e0]
[ 0.215418] PCI: Using configuration type 1 for base access
[ 0.215567] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.224487] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.224491] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.224493] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.224494] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.225136] ACPI: Added _OSI(Module Device)
[ 0.225136] ACPI: Added _OSI(Processor Device)
[ 0.225136] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.225136] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.381940] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.MHBR], AE_NOT_FOUND (20240827/psargs-332)
[ 0.381949] ACPI: Ignoring error and continuing table load
[ 0.381974] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PTID.PBAR], AE_NOT_FOUND (20240827/dsfield-500)
[ 0.390022] ACPI: 18 ACPI AML tables successfully acquired and loaded
[ 0.408817] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
[ 0.408820] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
[ 0.410659] ACPI: Dynamic OEM Table Load:
[ 0.410671] ACPI: SSDT 0xFFFF9539841F3800 000394 (v02 PmRef Cpu0Cst 00003001 INTL 20200717)
[ 0.412530] ACPI: Dynamic OEM Table Load:
[ 0.412539] ACPI: SSDT 0xFFFF9539841F9000 00053F (v02 PmRef Cpu0Ist 00003000 INTL 20200717)
[ 0.414418] ACPI: Dynamic OEM Table Load:
[ 0.414426] ACPI: SSDT 0xFFFF953983A8FE00 0001AB (v02 PmRef Cpu0Psd 00003000 INTL 20200717)
[ 0.416203] ACPI: Dynamic OEM Table Load:
[ 0.416210] ACPI: SSDT 0xFFFF9539841FF800 0004B5 (v02 PmRef Cpu0Hwp 00003000 INTL 20200717)
[ 0.418604] ACPI: Dynamic OEM Table Load:
[ 0.418615] ACPI: SSDT 0xFFFF953984202000 001BAF (v02 PmRef ApIst 00003000 INTL 20200717)
[ 0.421381] ACPI: Dynamic OEM Table Load:
[ 0.421390] ACPI: SSDT 0xFFFF953984206000 001038 (v02 PmRef ApHwp 00003000 INTL 20200717)
[ 0.423873] ACPI: Dynamic OEM Table Load:
[ 0.423882] ACPI: SSDT 0xFFFF953984200000 001349 (v02 PmRef ApPsd 00003000 INTL 20200717)
[ 0.426404] ACPI: Dynamic OEM Table Load:
[ 0.426412] ACPI: SSDT 0xFFFF95398420B000 000FBB (v02 PmRef ApCst 00003000 INTL 20200717)
[ 0.445766] ACPI: EC: EC started
[ 0.445768] ACPI: EC: interrupt blocked
[ 0.460992] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.460996] ACPI: \_SB_.PC00.LPCB.EC__: Boot DSDT EC used to handle transactions
[ 0.460998] ACPI: Interpreter enabled
[ 0.461088] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.461089] ACPI: Using IOAPIC for interrupt routing
[ 0.463482] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.463483] PCI: Ignoring E820 reservations for host bridge windows
[ 0.465295] ACPI: Enabled 11 GPEs in block 00 to 7F
[ 0.467727] ACPI: \_SB_.PC00.PEG2.PG00: New power resource
[ 0.496693] ACPI: \_SB_.PC00.XHCI.RHUB.HS14.BTRT: New power resource
[ 0.496719] ACPI: \_SB_.PC00.XHCI.RHUB.HS14.DBTR: New power resource
[ 0.506977] ACPI: \_SB_.PC00.CNVW.WRST: New power resource
[ 0.512694] ACPI: \_SB_.PC00.RP09.PXP_: New power resource
[ 0.539313] ACPI: \PIN_: New power resource
[ 0.540211] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
[ 0.540219] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.544090] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[ 0.550181] PCI host bridge to bus 0000:00
[ 0.550185] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.550188] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.550189] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.550191] pci_bus 0000:00: root bus resource [mem 0x40000000-0xbfffffff window]
[ 0.550193] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[ 0.550195] pci_bus 0000:00: root bus resource [bus 00-e0]
[ 0.550240] pci 0000:00:00.0: [8086:a702] type 00 class 0x060000 conventional PCI endpoint
[ 0.550386] pci 0000:00:01.0: [8086:a70d] type 01 class 0x060400 PCIe Root Port
[ 0.550404] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.550464] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.550491] pci 0000:00:01.0: PTM enabled (root), 4ns granularity
[ 0.551292] pci 0000:00:01.1: [8086:a72d] type 01 class 0x060400 PCIe Root Port
[ 0.551310] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 0.551313] pci 0000:00:01.1: bridge window [io 0x3000-0x3fff]
[ 0.551316] pci 0000:00:01.1: bridge window [mem 0x4a000000-0x4b0fffff]
[ 0.551322] pci 0000:00:01.1: bridge window [mem 0x4000000000-0x4401ffffff 64bit pref]
[ 0.551374] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[ 0.551398] pci 0000:00:01.1: PTM enabled (root), 4ns granularity
[ 0.552171] pci 0000:00:04.0: [8086:a71d] type 00 class 0x118000 conventional PCI endpoint
[ 0.552188] pci 0000:00:04.0: BAR 0 [mem 0x4404200000-0x440421ffff 64bit]
[ 0.552553] pci 0000:00:08.0: [8086:a74f] type 00 class 0x088000 conventional PCI endpoint
[ 0.552565] pci 0000:00:08.0: BAR 0 [mem 0x4404241000-0x4404241fff 64bit]
[ 0.552678] pci 0000:00:0a.0: [8086:a77d] type 00 class 0x118000 PCIe Root Complex Integrated Endpoint
[ 0.552687] pci 0000:00:0a.0: BAR 0 [mem 0x4404220000-0x4404227fff 64bit]
[ 0.552707] pci 0000:00:0a.0: enabling Extended Tags
[ 0.552818] pci 0000:00:0e.0: [8086:a77f] type 00 class 0x010400 PCIe Root Complex Integrated Endpoint
[ 0.552833] pci 0000:00:0e.0: BAR 0 [mem 0x4402000000-0x4403ffffff 64bit]
[ 0.552841] pci 0000:00:0e.0: BAR 2 [mem 0x48000000-0x49ffffff]
[ 0.552857] pci 0000:00:0e.0: BAR 4 [mem 0x4404100000-0x44041fffff 64bit]
[ 0.553192] pci 0000:00:14.0: [8086:7a60] type 00 class 0x0c0330 conventional PCI endpoint
[ 0.553213] pci 0000:00:14.0: BAR 0 [mem 0x4b380000-0x4b38ffff 64bit]
[ 0.553297] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.553911] pci 0000:00:14.2: [8086:7a27] type 00 class 0x050000 conventional PCI endpoint
[ 0.553936] pci 0000:00:14.2: BAR 0 [mem 0x4404238000-0x440423bfff 64bit]
[ 0.553953] pci 0000:00:14.2: BAR 2 [mem 0x4404240000-0x4404240fff 64bit]
[ 0.554120] pci 0000:00:14.3: [8086:7a70] type 00 class 0x028000 PCIe Root Complex Integrated Endpoint
[ 0.554166] pci 0000:00:14.3: BAR 0 [mem 0x4404234000-0x4404237fff 64bit]
[ 0.554357] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
[ 0.554778] pci 0000:00:15.0: [8086:7a4c] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.554853] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.555435] pci 0000:00:15.1: [8086:7a4d] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.555507] pci 0000:00:15.1: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.556025] pci 0000:00:16.0: [8086:7a68] type 00 class 0x078000 conventional PCI endpoint
[ 0.556049] pci 0000:00:16.0: BAR 0 [mem 0x440423d000-0x440423dfff 64bit]
[ 0.556133] pci 0000:00:16.0: PME# supported from D3hot
[ 0.556720] pci 0000:00:1c.0: [8086:7a3e] type 01 class 0x060400 PCIe Root Port
[ 0.556753] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.556760] pci 0000:00:1c.0: bridge window [mem 0x4b100000-0x4b2fffff]
[ 0.556856] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.556897] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
[ 0.557782] pci 0000:00:1d.0: [8086:7a30] type 01 class 0x060400 PCIe Root Port
[ 0.557813] pci 0000:00:1d.0: PCI bridge to [bus 04-54]
[ 0.557820] pci 0000:00:1d.0: bridge window [mem 0x40000000-0x47ffffff]
[ 0.557831] pci 0000:00:1d.0: bridge window [mem 0x4410000000-0x54100fffff 64bit pref]
[ 0.557975] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.558890] pci 0000:00:1f.0: [8086:7a0c] type 00 class 0x060100 conventional PCI endpoint
[ 0.559327] pci 0000:00:1f.3: [8086:7a50] type 00 class 0x040300 conventional PCI endpoint
[ 0.559371] pci 0000:00:1f.3: BAR 0 [mem 0x4404230000-0x4404233fff 64bit]
[ 0.559426] pci 0000:00:1f.3: BAR 4 [mem 0x4404000000-0x44040fffff 64bit]
[ 0.559535] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.559641] pci 0000:00:1f.4: [8086:7a23] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.559668] pci 0000:00:1f.4: BAR 0 [mem 0x440423c000-0x440423c0ff 64bit]
[ 0.559699] pci 0000:00:1f.4: BAR 4 [io 0xefa0-0xefbf]
[ 0.560020] pci 0000:00:1f.5: [8086:7a24] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.560040] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[ 0.560200] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.560263] pci 0000:02:00.0: [10de:27e0] type 00 class 0x030000 PCIe Legacy Endpoint
[ 0.560280] pci 0000:02:00.0: BAR 0 [mem 0x4a000000-0x4affffff]
[ 0.560293] pci 0000:02:00.0: BAR 1 [mem 0x4000000000-0x43ffffffff 64bit pref]
[ 0.560307] pci 0000:02:00.0: BAR 3 [mem 0x4400000000-0x4401ffffff 64bit pref]
[ 0.560316] pci 0000:02:00.0: BAR 5 [io 0x3000-0x307f]
[ 0.560325] pci 0000:02:00.0: ROM [mem 0xfff80000-0xffffffff pref]
[ 0.560413] pci 0000:02:00.0: PME# supported from D0 D3hot
[ 0.560537] pci 0000:02:00.0: 16.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x8 link at 0000:00:01.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.560856] pci 0000:02:00.1: [10de:22bc] type 00 class 0x040300 PCIe Endpoint
[ 0.560870] pci 0000:02:00.1: BAR 0 [mem 0x4b000000-0x4b003fff]
[ 0.561061] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 0.561202] pci 0000:03:00.0: [8086:3102] type 00 class 0x020000 PCIe Endpoint
[ 0.561227] pci 0000:03:00.0: BAR 0 [mem 0x4b100000-0x4b1fffff]
[ 0.561264] pci 0000:03:00.0: BAR 3 [mem 0x4b200000-0x4b203fff]
[ 0.561424] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[ 0.561730] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.561838] pci 0000:04:00.0: [8086:5780] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.561879] pci 0000:04:00.0: PCI bridge to [bus 05-54]
[ 0.561891] pci 0000:04:00.0: bridge window [mem 0x40000000-0x47efffff]
[ 0.561905] pci 0000:04:00.0: bridge window [mem 0x4410000000-0x54100fffff 64bit pref]
[ 0.561921] pci 0000:04:00.0: enabling Extended Tags
[ 0.562059] pci 0000:04:00.0: supports D1 D2
[ 0.562060] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.562466] pci 0000:00:1d.0: PCI bridge to [bus 04-54]
[ 0.562591] pci 0000:05:00.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.562632] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.562656] pci 0000:05:00.0: bridge window [mem 0x5410000000-0x54100fffff 64bit pref]
[ 0.562674] pci 0000:05:00.0: enabling Extended Tags
[ 0.562803] pci 0000:05:00.0: supports D1 D2
[ 0.562804] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.563133] pci 0000:05:01.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.563174] pci 0000:05:01.0: PCI bridge to [bus 07-2c]
[ 0.563186] pci 0000:05:01.0: bridge window [mem 0x44000000-0x47efffff]
[ 0.563216] pci 0000:05:01.0: enabling Extended Tags
[ 0.563355] pci 0000:05:01.0: supports D1 D2
[ 0.563356] pci 0000:05:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.563677] pci 0000:05:02.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.563719] pci 0000:05:02.0: PCI bridge to [bus 2d]
[ 0.563730] pci 0000:05:02.0: bridge window [mem 0x43f00000-0x43ffffff]
[ 0.563761] pci 0000:05:02.0: enabling Extended Tags
[ 0.563889] pci 0000:05:02.0: supports D1 D2
[ 0.563890] pci 0000:05:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.564211] pci 0000:05:03.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.564251] pci 0000:05:03.0: PCI bridge to [bus 2e-54]
[ 0.564263] pci 0000:05:03.0: bridge window [mem 0x40000000-0x43efffff]
[ 0.564293] pci 0000:05:03.0: enabling Extended Tags
[ 0.564431] pci 0000:05:03.0: supports D1 D2
[ 0.564432] pci 0000:05:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.564761] pci 0000:04:00.0: PCI bridge to [bus 05-54]
[ 0.564870] pci 0000:06:00.0: [8086:5781] type 00 class 0x0c0340 PCIe Endpoint
[ 0.564898] pci 0000:06:00.0: BAR 0 [mem 0x5410000000-0x541003ffff 64bit pref]
[ 0.564916] pci 0000:06:00.0: BAR 2 [mem 0x5410040000-0x5410040fff 64bit pref]
[ 0.564957] pci 0000:06:00.0: enabling Extended Tags
[ 0.565073] pci 0000:06:00.0: supports D1 D2
[ 0.565074] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.565348] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.565423] pci 0000:05:01.0: PCI bridge to [bus 07-2c]
[ 0.565533] pci 0000:2d:00.0: [8086:5782] type 00 class 0x0c0330 PCIe Endpoint
[ 0.565557] pci 0000:2d:00.0: BAR 0 [mem 0x43f00000-0x43f0ffff 64bit]
[ 0.565605] pci 0000:2d:00.0: enabling Extended Tags
[ 0.565689] pci 0000:2d:00.0: PME# supported from D3hot D3cold
[ 0.565728] pci 0000:2d:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x4 link at 0000:05:02.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[ 0.565872] pci 0000:05:02.0: PCI bridge to [bus 2d]
[ 0.565946] pci 0000:05:03.0: PCI bridge to [bus 2e-54]
[ 0.589885] ACPI: EC: interrupt unblocked
[ 0.589887] ACPI: EC: event unblocked
[ 0.589904] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.589905] ACPI: EC: GPE=0x6e
[ 0.589907] ACPI: \_SB_.PC00.LPCB.EC__: Boot DSDT EC initialization complete
[ 0.589909] ACPI: \_SB_.PC00.LPCB.EC__: EC: Used to handle transactions and events
[ 0.590030] iommu: Default domain type: Translated
[ 0.590030] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.590265] SCSI subsystem initialized
[ 0.590281] libata version 3.00 loaded.
[ 0.590281] ACPI: bus type USB registered
[ 0.590286] usbcore: registered new interface driver usbfs
[ 0.590291] usbcore: registered new interface driver hub
[ 0.590305] usbcore: registered new device driver usb
[ 0.590333] pps_core: LinuxPPS API ver. 1 registered
[ 0.590335] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.590338] PTP clock support registered
[ 0.590360] EDAC MC: Ver: 3.0.0
[ 0.591245] efivars: Registered efivars operations
[ 0.591607] NetLabel: Initializing
[ 0.591608] NetLabel: domain hash size = 128
[ 0.591610] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.591640] NetLabel: unlabeled traffic allowed by default
[ 0.591665] mctp: management component transport protocol core
[ 0.591665] NET: Registered PF_MCTP protocol family
[ 0.591665] PCI: Using ACPI for IRQ routing
[ 0.607895] PCI: pci_cache_line_size set to 64 bytes
[ 0.608047] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
[ 0.608194] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 0.608196] e820: reserve RAM buffer [mem 0x2b4c3018-0x2bffffff]
[ 0.608198] e820: reserve RAM buffer [mem 0x2b8a0000-0x2bffffff]
[ 0.608199] e820: reserve RAM buffer [mem 0x2ca20000-0x2fffffff]
[ 0.608200] e820: reserve RAM buffer [mem 0x30229000-0x33ffffff]
[ 0.608201] e820: reserve RAM buffer [mem 0x3293f000-0x33ffffff]
[ 0.608202] e820: reserve RAM buffer [mem 0x37b00000-0x37ffffff]
[ 0.608250] pci 0000:02:00.0: vgaarb: setting as boot VGA device
[ 0.608252] pci 0000:02:00.0: vgaarb: bridge control possible
[ 0.608253] pci 0000:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.608256] vgaarb: loaded
[ 0.608359] clocksource: Switched to clocksource tsc-early
[ 0.608948] VFS: Disk quotas dquot_6.6.0
[ 0.608961] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.609113] AppArmor: AppArmor Filesystem Enabled
[ 0.609157] pnp: PnP ACPI init
[ 0.609332] pnp 00:00: disabling [io 0x3322-0x3323] because it overlaps 0000:00:01.1 BAR 13 [io 0x3000-0x3fff]
[ 0.609565] system 00:02: [io 0x1854-0x1857] has been reserved
[ 0.628358] system 00:05: [mem 0xfedc0000-0xfedc7fff] has been reserved
[ 0.628362] system 00:05: [mem 0xfeda0000-0xfeda0fff] has been reserved
[ 0.628364] system 00:05: [mem 0xfeda1000-0xfeda1fff] has been reserved
[ 0.628366] system 00:05: [mem 0xc0000000-0xcfffffff] has been reserved
[ 0.628368] system 00:05: [mem 0xfed20000-0xfed7ffff] could not be reserved
[ 0.628370] system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 0.628372] system 00:05: [mem 0xfed45000-0xfed8ffff] could not be reserved
[ 0.628374] system 00:05: [mem 0xfee00000-0xfeefffff] has been reserved
[ 0.628838] system 00:06: [io 0x2000-0x20fe] has been reserved
[ 0.630294] pnp: PnP ACPI: found 8 devices
[ 0.636544] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.636637] NET: Registered PF_INET protocol family
[ 0.637119] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.656520] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[ 0.656563] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.656724] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.657259] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.657389] TCP: Hash tables configured (established 262144 bind 65536)
[ 0.657649] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
[ 0.657778] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[ 0.657899] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[ 0.658013] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.658021] NET: Registered PF_XDP protocol family
[ 0.658025] pci 0000:02:00.0: ROM [mem 0xfff80000-0xffffffff pref]: can't claim; no compatible bridge window
[ 0.658035] pci 0000:05:01.0: bridge window [io 0x1000-0x0fff] to [bus 07-2c] add_size 1000
[ 0.658038] pci 0000:05:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 07-2c] add_size 200000 add_align 100000
[ 0.658041] pci 0000:05:03.0: bridge window [io 0x1000-0x0fff] to [bus 2e-54] add_size 1000
[ 0.658043] pci 0000:05:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 2e-54] add_size 200000 add_align 100000
[ 0.658046] pci 0000:04:00.0: bridge window [io 0x1000-0x0fff] to [bus 05-54] add_size 2000
[ 0.658049] pci 0000:00:1d.0: bridge window [io 0x1000-0x0fff] to [bus 04-54] add_size 3000
[ 0.658057] pci 0000:00:15.0: BAR 0 [mem 0x4404228000-0x4404228fff 64bit]: assigned
[ 0.658120] pci 0000:00:15.1: BAR 0 [mem 0x4404229000-0x4404229fff 64bit]: assigned
[ 0.658180] pci 0000:00:1d.0: bridge window [io 0x4000-0x6fff]: assigned
[ 0.658183] pci 0000:00:1f.5: BAR 0 [mem 0x4b300000-0x4b300fff]: assigned
[ 0.658194] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.658202] pci 0000:02:00.0: ROM [mem 0x4b080000-0x4b0fffff pref]: assigned
[ 0.658204] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 0.658206] pci 0000:00:01.1: bridge window [io 0x3000-0x3fff]
[ 0.658209] pci 0000:00:01.1: bridge window [mem 0x4a000000-0x4b0fffff]
[ 0.658212] pci 0000:00:01.1: bridge window [mem 0x4000000000-0x4401ffffff 64bit pref]
[ 0.658217] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.658227] pci 0000:00:1c.0: bridge window [mem 0x4b100000-0x4b2fffff]
[ 0.658236] pci 0000:04:00.0: bridge window [io 0x4000-0x5fff]: assigned
[ 0.658239] pci 0000:05:01.0: bridge window [mem 0x4410000000-0x44101fffff 64bit pref]: assigned
[ 0.658241] pci 0000:05:03.0: bridge window [mem 0x4410200000-0x44103fffff 64bit pref]: assigned
[ 0.658243] pci 0000:05:01.0: bridge window [io 0x4000-0x4fff]: assigned
[ 0.658244] pci 0000:05:03.0: bridge window [io 0x5000-0x5fff]: assigned
[ 0.658246] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.658267] pci 0000:05:00.0: bridge window [mem 0x5410000000-0x54100fffff 64bit pref]
[ 0.658275] pci 0000:05:01.0: PCI bridge to [bus 07-2c]
[ 0.658277] pci 0000:05:01.0: bridge window [io 0x4000-0x4fff]
[ 0.658283] pci 0000:05:01.0: bridge window [mem 0x44000000-0x47efffff]
[ 0.658288] pci 0000:05:01.0: bridge window [mem 0x4410000000-0x44101fffff 64bit pref]
[ 0.658295] pci 0000:05:02.0: PCI bridge to [bus 2d]
[ 0.658301] pci 0000:05:02.0: bridge window [mem 0x43f00000-0x43ffffff]
[ 0.658311] pci 0000:05:03.0: PCI bridge to [bus 2e-54]
[ 0.658314] pci 0000:05:03.0: bridge window [io 0x5000-0x5fff]
[ 0.658319] pci 0000:05:03.0: bridge window [mem 0x40000000-0x43efffff]
[ 0.658324] pci 0000:05:03.0: bridge window [mem 0x4410200000-0x44103fffff 64bit pref]
[ 0.658331] pci 0000:04:00.0: PCI bridge to [bus 05-54]
[ 0.658334] pci 0000:04:00.0: bridge window [io 0x4000-0x5fff]
[ 0.658339] pci 0000:04:00.0: bridge window [mem 0x40000000-0x47efffff]
[ 0.658344] pci 0000:04:00.0: bridge window [mem 0x4410000000-0x54100fffff 64bit pref]
[ 0.658351] pci 0000:00:1d.0: PCI bridge to [bus 04-54]
[ 0.658353] pci 0000:00:1d.0: bridge window [io 0x4000-0x6fff]
[ 0.658358] pci 0000:00:1d.0: bridge window [mem 0x40000000-0x47ffffff]
[ 0.658361] pci 0000:00:1d.0: bridge window [mem 0x4410000000-0x54100fffff 64bit pref]
[ 0.658368] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.658370] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.658371] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.658373] pci_bus 0000:00: resource 7 [mem 0x40000000-0xbfffffff window]
[ 0.658375] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
[ 0.658377] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
[ 0.658378] pci_bus 0000:02: resource 1 [mem 0x4a000000-0x4b0fffff]
[ 0.658379] pci_bus 0000:02: resource 2 [mem 0x4000000000-0x4401ffffff 64bit pref]
[ 0.658381] pci_bus 0000:03: resource 1 [mem 0x4b100000-0x4b2fffff]
[ 0.658383] pci_bus 0000:04: resource 0 [io 0x4000-0x6fff]
[ 0.658384] pci_bus 0000:04: resource 1 [mem 0x40000000-0x47ffffff]
[ 0.658386] pci_bus 0000:04: resource 2 [mem 0x4410000000-0x54100fffff 64bit pref]
[ 0.658387] pci_bus 0000:05: resource 0 [io 0x4000-0x5fff]
[ 0.658389] pci_bus 0000:05: resource 1 [mem 0x40000000-0x47efffff]
[ 0.658390] pci_bus 0000:05: resource 2 [mem 0x4410000000-0x54100fffff 64bit pref]
[ 0.658392] pci_bus 0000:06: resource 2 [mem 0x5410000000-0x54100fffff 64bit pref]
[ 0.658393] pci_bus 0000:07: resource 0 [io 0x4000-0x4fff]
[ 0.658395] pci_bus 0000:07: resource 1 [mem 0x44000000-0x47efffff]
[ 0.658396] pci_bus 0000:07: resource 2 [mem 0x4410000000-0x44101fffff 64bit pref]
[ 0.658398] pci_bus 0000:2d: resource 1 [mem 0x43f00000-0x43ffffff]
[ 0.658399] pci_bus 0000:2e: resource 0 [io 0x5000-0x5fff]
[ 0.658400] pci_bus 0000:2e: resource 1 [mem 0x40000000-0x43efffff]
[ 0.658402] pci_bus 0000:2e: resource 2 [mem 0x4410200000-0x44103fffff 64bit pref]
[ 0.660548] pci 0000:02:00.1: extending delay after power-on from D3hot to 20 msec
[ 0.660578] pci 0000:02:00.1: D0 power state depends on 0000:02:00.0
[ 0.661086] pci 0000:2d:00.0: enabling device (0000 -> 0002)
[ 0.661124] PCI: CLS 64 bytes, default 64
[ 0.661161] DMAR: No RMRR found
[ 0.661162] DMAR: No ATSR found
[ 0.661163] DMAR: No SATC found
[ 0.661165] DMAR: dmar0: Using Queued invalidation
[ 0.661219] Trying to unpack rootfs image as initramfs...
[ 0.661243] pci 0000:00:00.0: Adding to iommu group 0
[ 0.661256] pci 0000:00:01.0: Adding to iommu group 1
[ 0.661270] pci 0000:00:01.1: Adding to iommu group 2
[ 0.661280] pci 0000:00:04.0: Adding to iommu group 3
[ 0.661291] pci 0000:00:08.0: Adding to iommu group 4
[ 0.661300] pci 0000:00:0a.0: Adding to iommu group 5
[ 0.661310] pci 0000:00:0e.0: Adding to iommu group 6
[ 0.661330] pci 0000:00:14.0: Adding to iommu group 7
[ 0.661340] pci 0000:00:14.2: Adding to iommu group 7
[ 0.661350] pci 0000:00:14.3: Adding to iommu group 8
[ 0.661368] pci 0000:00:15.0: Adding to iommu group 9
[ 0.661378] pci 0000:00:15.1: Adding to iommu group 9
[ 0.661394] pci 0000:00:16.0: Adding to iommu group 10
[ 0.661414] pci 0000:00:1c.0: Adding to iommu group 11
[ 0.661433] pci 0000:00:1d.0: Adding to iommu group 12
[ 0.661460] pci 0000:00:1f.0: Adding to iommu group 13
[ 0.661472] pci 0000:00:1f.3: Adding to iommu group 13
[ 0.661483] pci 0000:00:1f.4: Adding to iommu group 13
[ 0.661493] pci 0000:00:1f.5: Adding to iommu group 13
[ 0.661512] pci 0000:02:00.0: Adding to iommu group 14
[ 0.661525] pci 0000:02:00.1: Adding to iommu group 14
[ 0.661543] pci 0000:03:00.0: Adding to iommu group 15
[ 0.661561] pci 0000:04:00.0: Adding to iommu group 16
[ 0.661573] pci 0000:05:00.0: Adding to iommu group 17
[ 0.661592] pci 0000:05:01.0: Adding to iommu group 18
[ 0.661611] pci 0000:05:02.0: Adding to iommu group 19
[ 0.661630] pci 0000:05:03.0: Adding to iommu group 20
[ 0.661652] pci 0000:06:00.0: Adding to iommu group 21
[ 0.661667] pci 0000:2d:00.0: Adding to iommu group 22
[ 0.667053] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 0.667056] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.667057] software IO TLB: mapped [mem 0x0000000025db6000-0x0000000029db6000] (64MB)
[ 0.669132] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
[ 0.669182] clocksource: Switched to clocksource tsc
[ 0.670486] Initialise system trusted keyrings
[ 0.670499] Key type blacklist registered
[ 0.670556] workingset: timestamp_bits=36 max_order=23 bucket_order=0
[ 0.670568] zbud: loaded
[ 0.670912] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.671044] fuse: init (API version 7.41)
[ 0.671228] integrity: Platform Keyring initialized
[ 0.671233] integrity: Machine keyring initialized
[ 0.685015] Key type asymmetric registered
[ 0.685017] Asymmetric key parser 'x509' registered
[ 0.685049] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[ 0.685133] io scheduler mq-deadline registered
[ 0.685765] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.686099] pcieport 0000:00:01.0: PME: Signaling with IRQ 121
[ 0.686390] pcieport 0000:00:01.1: PME: Signaling with IRQ 122
[ 0.686719] pcieport 0000:00:1c.0: PME: Signaling with IRQ 123
[ 0.686822] pcieport 0000:00:1c.0: AER: enabled with IRQ 123
[ 0.687017] pcieport 0000:00:1d.0: PME: Signaling with IRQ 124
[ 0.687099] pcieport 0000:00:1d.0: AER: enabled with IRQ 124
[ 0.687129] pcieport 0000:00:1d.0: pciehp: Slot #8 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.688072] pcieport 0000:05:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.688723] pcieport 0000:05:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.688973] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.689320] Monitor-Mwait will be used to enter C-1 state
[ 0.689342] Monitor-Mwait will be used to enter C-2 state
[ 0.689358] Monitor-Mwait will be used to enter C-3 state
[ 0.692862] ACPI: AC: AC Adapter [AC] (on-line)
[ 0.692946] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 0.692995] ACPI: button: Power Button [PWRB]
[ 0.693028] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[ 0.693063] ACPI: button: Sleep Button [SLPB]
[ 0.693101] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
[ 0.693133] ACPI: button: Lid Switch [LID0]
[ 0.693166] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[ 0.693211] ACPI: button: Power Button [PWRF]
[ 0.780666] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.780670] ACPI: thermal: Thermal Zone [TZ0] (25 C)
[ 0.781026] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.781814] ACPI: battery: Slot [BAT0] (battery present)
[ 0.783884] hpet_acpi_add: no address or irqs in _CRS
[ 0.783916] Linux agpgart interface v0.103
[ 0.785803] tpm_tis IFX1523:00: 2.0 TPM (device-id 0x1D, rev-id 54)
[ 0.901220] ACPI: bus type drm_connector registered
[ 0.909673] loop: module loaded
[ 0.910123] tun: Universal TUN/TAP device driver, 1.6
[ 0.910202] PPP generic driver version 2.4.2
[ 0.910581] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.910589] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 0.911836] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[ 0.912285] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.912289] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 0.912293] xhci_hcd 0000:00:14.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 0.912356] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
[ 0.912359] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.912361] usb usb1: Product: xHCI Host Controller
[ 0.912363] usb usb1: Manufacturer: Linux 6.12.0-rc5 xhci-hcd
[ 0.912364] usb usb1: SerialNumber: 0000:00:14.0
[ 0.912579] hub 1-0:1.0: USB hub found
[ 0.912614] hub 1-0:1.0: 16 ports detected
[ 0.917123] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.12
[ 0.917127] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.917129] usb usb2: Product: xHCI Host Controller
[ 0.917131] usb usb2: Manufacturer: Linux 6.12.0-rc5 xhci-hcd
[ 0.917133] usb usb2: SerialNumber: 0000:00:14.0
[ 0.917265] hub 2-0:1.0: USB hub found
[ 0.917291] hub 2-0:1.0: 10 ports detected
[ 0.919903] xhci_hcd 0000:2d:00.0: xHCI Host Controller
[ 0.919909] xhci_hcd 0000:2d:00.0: new USB bus registered, assigned bus number 3
[ 0.921159] xhci_hcd 0000:2d:00.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[ 0.921562] xhci_hcd 0000:2d:00.0: xHCI Host Controller
[ 0.921566] xhci_hcd 0000:2d:00.0: new USB bus registered, assigned bus number 4
[ 0.921569] xhci_hcd 0000:2d:00.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 0.921625] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
[ 0.921628] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.921630] usb usb3: Product: xHCI Host Controller
[ 0.921632] usb usb3: Manufacturer: Linux 6.12.0-rc5 xhci-hcd
[ 0.921633] usb usb3: SerialNumber: 0000:2d:00.0
[ 0.921742] hub 3-0:1.0: USB hub found
[ 0.921762] hub 3-0:1.0: 2 ports detected
[ 0.923264] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.12
[ 0.923267] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.923269] usb usb4: Product: xHCI Host Controller
[ 0.923271] usb usb4: Manufacturer: Linux 6.12.0-rc5 xhci-hcd
[ 0.923272] usb usb4: SerialNumber: 0000:2d:00.0
[ 0.923409] hub 4-0:1.0: USB hub found
[ 0.923426] hub 4-0:1.0: 2 ports detected
[ 0.925622] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 0.931772] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.931779] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.932006] mousedev: PS/2 mouse device common for all mice
[ 0.932249] rtc_cmos 00:01: RTC can wake from S4
[ 0.933175] rtc_cmos 00:01: registered as rtc0
[ 0.933361] rtc_cmos 00:01: setting system clock to 2024-10-29T19:22:21 UTC (1730229741)
[ 0.933399] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
[ 0.933408] i2c_dev: i2c /dev entries driver
[ 0.936352] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 0.936377] device-mapper: uevent: version 1.0.3
[ 0.936529] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[ 0.936561] platform eisa.0: Probing EISA bus 0
[ 0.936564] platform eisa.0: EISA: Cannot allocate resource for mainboard
[ 0.936566] platform eisa.0: Cannot allocate resource for EISA slot 1
[ 0.936567] platform eisa.0: Cannot allocate resource for EISA slot 2
[ 0.936568] platform eisa.0: Cannot allocate resource for EISA slot 3
[ 0.936570] platform eisa.0: Cannot allocate resource for EISA slot 4
[ 0.936571] platform eisa.0: Cannot allocate resource for EISA slot 5
[ 0.936572] platform eisa.0: Cannot allocate resource for EISA slot 6
[ 0.936573] platform eisa.0: Cannot allocate resource for EISA slot 7
[ 0.936574] platform eisa.0: Cannot allocate resource for EISA slot 8
[ 0.936575] platform eisa.0: EISA: Detected 0 cards
[ 0.936579] intel_pstate: Intel P-state driver initializing
[ 0.936798] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[ 0.940629] intel_pstate: HWP enabled
[ 0.940741] [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
[ 0.942902] fbcon: Deferring console take-over
[ 0.942903] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[ 0.944137] drop_monitor: Initializing network drop monitor service
[ 0.944238] NET: Registered PF_INET6 protocol family
[ 0.971527] Freeing initrd memory: 74696K
[ 0.977426] Segment Routing with IPv6
[ 0.977438] In-situ OAM (IOAM) with IPv6
[ 0.977459] NET: Registered PF_PACKET protocol family
[ 0.977530] Key type dns_resolver registered
[ 0.981858] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.983804] microcode: Current revision: 0x00000129
[ 0.985627] IPI shorthand broadcast: enabled
[ 0.986579] sched_clock: Marking stable (978008618, 7601660)->(1055329318, -69719040)
[ 0.987246] registered taskstats version 1
[ 0.990867] Loading compiled-in X.509 certificates
[ 0.991295] Loaded X.509 cert 'Build time autogenerated kernel key: b9e32a74847b4505d53d500d44fb60761632a017'
[ 0.994310] Demotion targets for Node 0: null
[ 0.994479] Key type .fscrypt registered
[ 0.994480] Key type fscrypt-provisioning registered
[ 0.994534] Key type trusted registered
[ 1.001388] cryptd: module verification failed: signature and/or required key missing - tainting kernel
[ 1.002399] cryptd: max_cpu_qlen set to 1000
[ 1.003432] AES CTR mode by8 optimization enabled
[ 1.014067] Key type encrypted registered
[ 1.014074] AppArmor: AppArmor sha256 policy hashing enabled
[ 1.018884] integrity: Loading X.509 certificate: UEFI:db
[ 1.018917] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 1.018918] integrity: Loading X.509 certificate: UEFI:db
[ 1.018939] integrity: Loaded X.509 cert 'Microsoft Corporation: Windows UEFI CA 2023: aefc5fbbbe055d8f8daa585473499417ab5a5272'
[ 1.018940] integrity: Loading X.509 certificate: UEFI:db
[ 1.018958] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 1.018959] integrity: Loading X.509 certificate: UEFI:db
[ 1.018974] integrity: Loaded X.509 cert 'Microsoft UEFI CA 2023: 81aa6b3244c935bce0d6628af39827421e32497d'
[ 1.018975] integrity: Loading X.509 certificate: UEFI:db
[ 1.019370] integrity: Loaded X.509 cert 'Secure Certificate: 01dcc89619884ca147983429f8a4a1a0'
[ 1.019371] integrity: Loading X.509 certificate: UEFI:db
[ 1.019528] integrity: Loaded X.509 cert 'Cus CA: d6136d376b87ef934511c12ce2c3880c'
[ 1.027236] Loading compiled-in module X.509 certificates
[ 1.027686] Loaded X.509 cert 'Build time autogenerated kernel key: b9e32a74847b4505d53d500d44fb60761632a017'
[ 1.027688] ima: Allocated hash algorithm: sha256
[ 1.154784] usb 1-6: new high-speed USB device number 2 using xhci_hcd
[ 1.177224] ima: No architecture policies found
[ 1.177273] evm: Initialising EVM extended attributes:
[ 1.177275] evm: security.selinux
[ 1.177278] evm: security.SMACK64
[ 1.177280] evm: security.SMACK64EXEC
[ 1.177282] evm: security.SMACK64TRANSMUTE
[ 1.177283] evm: security.SMACK64MMAP
[ 1.177285] evm: security.apparmor
[ 1.177287] evm: security.ima
[ 1.177288] evm: security.capability
[ 1.177290] evm: HMAC attrs: 0x1
[ 1.178006] PM: Magic number: 12:45:396
[ 1.185961] RAS: Correctable Errors collector initialized.
[ 1.198814] clk: Disabling unused clocks
[ 1.198816] PM: genpd: Disabling unused power domains
[ 1.205188] Freeing unused decrypted memory: 2028K
[ 1.206152] Freeing unused kernel image (initmem) memory: 5064K
[ 1.206175] Write protecting the kernel read-only data: 36864k
[ 1.206879] Freeing unused kernel image (rodata/data gap) memory: 44K
[ 1.214120] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.214123] Run /init as init process
[ 1.214124] with arguments:
[ 1.214125] /init
[ 1.214126] spla
[ 1.214127] with environment:
[ 1.214127] HOME=/
[ 1.214128] TERM=linux
[ 1.214128] BOOT_IMAGE=/@boot/vmlinuz-6.12.0-rc5
[ 1.214129] cryptdevice=UUID=1a8d8cdb-8d8f-4689-b744-8f32d2067f56:luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56
[ 1.304665] wmi_bus wmi_bus-PNP0C14:01: [Firmware Bug]: WQ00 data block query control method not found
[ 1.305229] hid: raw HID events driver (C) Jiri Kosina
[ 1.306175] ACPI: video: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[ 1.306211] ACPI: video: Video Device [PEGP] (multi-head: yes rom: no post: no)
[ 1.308293] usb 1-6: New USB device found, idVendor=04f2, idProduct=b7e7, bcdDevice= 0.04
[ 1.308300] usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.308301] usb 1-6: Product: Chicony USB2.0 Camera
[ 1.308302] usb 1-6: Manufacturer: SunplusIT Inc
[ 1.308303] usb 1-6: SerialNumber: 01.00.00
[ 1.309978] Intel(R) 2.5G Ethernet Linux Driver
[ 1.309980] Copyright(c) 2018 Intel Corporation.
[ 1.310563] igc 0000:03:00.0: PTM enabled, 4ns granularity
[ 1.310685] vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
[ 1.310690] pci_bus 10000:e0: root bus resource [bus e0-ff]
[ 1.310692] pci_bus 10000:e0: root bus resource [mem 0x48000000-0x49ffffff]
[ 1.310693] pci_bus 10000:e0: root bus resource [mem 0x4404102000-0x44041fffff 64bit]
[ 1.310712] pci 10000:e0:1b.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 1.310961] pci 10000:e0:1b.0: Adding to iommu group 6
[ 1.310998] pci 10000:e0:1b.4: [8086:7a44] type 01 class 0x060400 PCIe Root Port
[ 1.311032] pci 10000:e0:1b.4: PCI bridge to [bus e1]
[ 1.311039] pci 10000:e0:1b.4: bridge window [io 0x0000-0x0fff]
[ 1.311041] pci 10000:e0:1b.4: bridge window [mem 0x48000000-0x480fffff]
[ 1.311153] pci 10000:e0:1b.4: PME# supported from D0 D3hot D3cold
[ 1.311211] pci 10000:e0:1b.4: PTM enabled (root), 4ns granularity
[ 1.311380] pci 10000:e0:1b.4: Adding to iommu group 6
[ 1.311387] pci 10000:e0:1b.4: Primary bus is hard wired to 0
[ 1.311447] pci 10000:e1:00.0: [144d:a808] type 00 class 0x010802 PCIe Endpoint
[ 1.311482] pci 10000:e1:00.0: BAR 0 [mem 0x48000000-0x48003fff 64bit]
[ 1.311893] pci 10000:e1:00.0: Adding to iommu group 6
[ 1.311906] pci 10000:e0:1b.4: PCI bridge to [bus e1]
[ 1.311920] pci 10000:e0:1b.4: Primary bus is hard wired to 0
[ 1.314324] ACPI: bus type thunderbolt registered
[ 1.321644] intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
[ 1.321984] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 1.349300] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:05/LNXVIDEO:00/input/input7
[ 1.361059] pps pps0: new PPS source ptp0
[ 1.361104] igc 0000:03:00.0 (unnamed net_device) (uninitialized): PHC added
[ 1.389215] igc 0000:03:00.0: 4.000 Gb/s available PCIe bandwidth (5.0 GT/s PCIe x1 link)
[ 1.389223] igc 0000:03:00.0 eth0: MAC: d4:93:90:44:67:64
[ 1.391358] igc 0000:03:00.0 enp3s0: renamed from eth0
[ 1.419793] thunderbolt 0000:06:00.0: host router reset successful
[ 1.421141] thunderbolt 0000:06:00.0: device links to tunneled native ports are missing!
[ 1.428131] thunderbolt 0000:06:00.0: 0: DROM data CRC32 mismatch (expected: 0x56000000, got: 0x56473b0f), continuing
[ 1.436622] usb 1-7: new full-speed USB device number 3 using xhci_hcd
[ 1.475839] pci 10000:e0:1b.4: bridge window [mem 0x48000000-0x480fffff]: assigned
[ 1.475847] pci 10000:e0:1b.4: bridge window [io size 0x1000]: can't assign; no space
[ 1.475850] pci 10000:e0:1b.4: bridge window [io size 0x1000]: failed to assign
[ 1.475854] pci 10000:e1:00.0: BAR 0 [mem 0x48000000-0x48003fff 64bit]: assigned
[ 1.475879] pci 10000:e0:1b.4: PCI bridge to [bus e1]
[ 1.475887] pci 10000:e0:1b.4: bridge window [mem 0x48000000-0x480fffff]
[ 1.475985] pcieport 10000:e0:1b.4: can't derive routing for PCI INT A
[ 1.475988] pcieport 10000:e0:1b.4: PCI INT A: no GSI
[ 1.476137] pcieport 10000:e0:1b.4: PME: Signaling with IRQ 185
[ 1.476447] pcieport 10000:e0:1b.4: AER: enabled with IRQ 185
[ 1.476565] vmd 0000:00:0e.0: Bound to PCI domain 10000
[ 1.496412] intel-lpss 0000:00:15.1: enabling device (0004 -> 0006)
[ 1.498322] idma64 idma64.1: Found Intel integrated DMA 64-bit
[ 1.564985] usb 1-7: New USB device found, idVendor=048d, idProduct=8910, bcdDevice= 0.01
[ 1.564999] usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.565004] usb 1-7: Product: ITE Device(829x)
[ 1.565008] usb 1-7: Manufacturer: ITE Tech. Inc.
[ 1.678809] usb 1-14: new full-speed USB device number 4 using xhci_hcd
[ 1.805312] usb 1-14: New USB device found, idVendor=8087, idProduct=0033, bcdDevice= 0.00
[ 1.805328] usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.819864] usbcore: registered new interface driver usbhid
[ 1.819869] usbhid: USB HID core driver
[ 1.837514] nvme nvme0: pci function 10000:e1:00.0
[ 1.837544] pcieport 10000:e0:1b.4: can't derive routing for PCI INT A
[ 1.837548] nvme 10000:e1:00.0: PCI INT A: not connected
[ 1.837795] hid-generic 0003:048D:8910.0001: hiddev0,hidraw0: USB HID v1.10 Device [ITE Tech. Inc. ITE Device(829x)] on usb-0000:00:14.0-7/input0
[ 1.838290] input: FTCS1000:01 2808:0102 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0002/input/input8
[ 1.838444] input: FTCS1000:01 2808:0102 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0002/input/input9
[ 1.838596] hid-generic 0018:2808:0102.0002: input,hidraw1: I2C HID v1.00 Mouse [FTCS1000:01 2808:0102] on i2c-FTCS1000:01
[ 1.840139] nvme nvme0: missing or invalid SUBNQN field.
[ 1.840335] nvme nvme0: D3 entry latency set to 8 seconds
[ 1.860298] nvme nvme0: 18/0/0 default/read/poll queues
[ 1.870725] nvme0n1: p1 p2 p3
[ 1.935588] input: FTCS1000:01 2808:0102 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0002/input/input11
[ 1.936136] input: FTCS1000:01 2808:0102 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0002/input/input12
[ 1.936881] hid-multitouch 0018:2808:0102.0002: input,hidraw1: I2C HID v1.00 Mouse [FTCS1000:01 2808:0102] on i2c-FTCS1000:01
[ 2.054781] fbcon: Taking over console
[ 2.065150] Console: switching to colour frame buffer device 160x45
[ 2.937301] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input6
[ 7.649238] ucsi_acpi USBC000:00: error -ETIMEDOUT: PPM init failed
[ 12.343604] raid6: avx2x4 gen() 28246 MB/s
[ 12.360604] raid6: avx2x2 gen() 41282 MB/s
[ 12.377706] raid6: avx2x1 gen() 39396 MB/s
[ 12.377706] raid6: using algorithm avx2x2 gen() 41282 MB/s
[ 12.394698] raid6: .... xor() 28896 MB/s, rmw enabled
[ 12.394698] raid6: using avx2x2 recovery algorithm
[ 12.395842] xor: automatically using best checksumming function avx
[ 12.427526] Btrfs loaded, zoned=yes, fsverity=yes
[ 12.450655] BTRFS: device label kfocus_2404 devid 1 transid 7862 /dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 (252:0) scanned by mount (740)
[ 12.451088] BTRFS info (device dm-0): first mount of filesystem aa8cb093-9cb3-4cc7-b44e-4bff76ca37fb
[ 12.451103] BTRFS info (device dm-0): using crc32c (crc32c-intel) checksum algorithm
[ 12.451110] BTRFS info (device dm-0): using free-space-tree
[ 12.609723] systemd[1]: Inserted module 'autofs4'
[ 12.750784] systemd[1]: systemd 255.4-1ubuntu8.4 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[ 12.750788] systemd[1]: Detected architecture x86-64.
[ 12.751541] systemd[1]: Hostname set to <qa-m2>.
[ 12.856471] systemd[1]: Configuration file /run/systemd/system/netplan-ovs-cleanup.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
[ 12.883930] systemd[1]: Queued start job for default target graphical.target.
[ 12.904703] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[ 12.904901] systemd[1]: Created slice system-systemd\x2dcryptsetup.slice - Encrypted Volume Units Service Slice.
[ 12.905052] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[ 12.905157] systemd[1]: Created slice user.slice - User and Session Slice.
[ 12.905185] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[ 12.905285] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[ 12.905295] systemd[1]: Expecting device dev-disk-by\x2duuid-167A\x2d6858.device - /dev/disk/by-uuid/167A-6858...
[ 12.905300] systemd[1]: Expecting device dev-disk-by\x2duuid-1a8d8cdb\x2d8d8f\x2d4689\x2db744\x2d8f32d2067f56.device - /dev/disk/by-uuid/1a8d8cdb-8d8f-4689-b744-8f32d2067f56...
[ 12.905305] systemd[1]: Expecting device dev-disk-by\x2duuid-aa8cb093\x2d9cb3\x2d4cc7\x2db44e\x2d4bff76ca37fb.device - /dev/disk/by-uuid/aa8cb093-9cb3-4cc7-b44e-4bff76ca37fb...
[ 12.905309] systemd[1]: Expecting device dev-disk-by\x2duuid-abbbc711\x2d9904\x2d466b\x2d8a35\x2d783f0d19bf50.device - /dev/disk/by-uuid/abbbc711-9904-466b-8a35-783f0d19bf50...
[ 12.905312] systemd[1]: Expecting device dev-mapper-luks\x2d1a8d8cdb\x2d8d8f\x2d4689\x2db744\x2d8f32d2067f56.device - /dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56...
[ 12.905323] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[ 12.905332] systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups.
[ 12.905339] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[ 12.905344] systemd[1]: Reached target slices.target - Slice Units.
[ 12.905351] systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
[ 12.905365] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[ 12.905402] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[ 12.905648] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[ 12.905897] systemd[1]: Listening on syslog.socket - Syslog Socket.
[ 12.905931] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[ 12.905952] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[ 12.905993] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[ 12.906043] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[ 12.906067] systemd[1]: systemd-pcrextend.socket - TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 12.906407] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ 12.906441] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 12.907860] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[ 12.908370] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[ 12.908861] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[ 12.909340] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[ 12.911000] systemd[1]: Starting systemd-journald.service - Journal Service...
[ 12.911045] systemd[1]: Finished blk-availability.service - Availability of block devices.
[ 12.911814] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[ 12.912343] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[ 12.912937] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[ 12.913423] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 12.913927] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[ 12.914401] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[ 12.914881] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[ 12.915296] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[ 12.915830] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[ 12.916253] systemd[1]: Starting modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics...
[ 12.916788] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[ 12.916796] systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 12.917328] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[ 12.917369] systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 12.917934] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ 12.918326] pstore: Using crash dump compression: deflate
[ 12.918467] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[ 12.918513] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ 12.918542] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ 12.918568] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ 12.918652] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ 12.918743] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 12.918799] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[ 12.918886] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 12.918941] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[ 12.919020] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 12.919068] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[ 12.919153] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 12.919204] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[ 12.919676] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[ 12.919714] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[ 12.920057] systemd-journald[811]: Collecting audit messages is disabled.
[ 12.920460] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[ 12.920585] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 12.920658] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[ 12.921099] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[ 12.921684] Key type psk registered
[ 12.923160] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[ 12.923370] BTRFS info (device dm-0 state M): turning on sync discard
[ 12.923375] BTRFS info (device dm-0 state M): enabling auto defrag
[ 12.923376] BTRFS info (device dm-0 state M): use lzo compression, level 0
[ 12.923903] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[ 12.924140] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[ 12.924978] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[ 12.925504] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[ 12.925517] systemd[1]: systemd-tpm2-setup.service - TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 12.927016] systemd[1]: modprobe@nvme_fabrics.service: Deactivated successfully.
[ 12.927090] systemd[1]: Finished modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics.
[ 12.929946] lp: driver loaded but no devices found
[ 12.944277] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[ 12.944767] systemd[1]: Started systemd-journald.service - Journal Service.
[ 12.953430] ppdev: user-space parallel port driver
[ 12.966418] systemd-journald[811]: Received client request to flush runtime journal.
[ 12.975965] pstore: Registered efi_pstore as persistent store backend
[ 12.981747] systemd-journald[811]: /var/log/journal/86d43f3761a64806a644a560706664c5/system.journal: Journal file uses a different sequence number ID, rotating.
[ 12.981750] systemd-journald[811]: Rotating system journal.
[ 13.021536] loop0: detected capacity change from 0 to 152056
[ 13.021585] loop1: detected capacity change from 0 to 1034424
[ 13.021617] loop2: detected capacity change from 0 to 8
[ 13.021660] loop3: detected capacity change from 0 to 151296
[ 13.021715] loop4: detected capacity change from 0 to 22752
[ 13.021791] loop5: detected capacity change from 0 to 21952
[ 13.023281] loop6: detected capacity change from 0 to 79328
[ 13.023310] loop7: detected capacity change from 0 to 187776
[ 13.024936] loop8: detected capacity change from 0 to 79520
[ 13.030722] BTRFS info: devid 1 device path /dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 changed to /dev/dm-0 scanned by (udev-worker) (893)
[ 13.031115] BTRFS info: devid 1 device path /dev/dm-0 changed to /dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 scanned by (udev-worker) (893)
[ 13.045940] input: Intel HID events as /devices/platform/INTC1051:00/input/input14
[ 13.049916] Consider using thermal netlink events interface
[ 13.052303] intel_pmc_core INT33A1:00: initialized
[ 13.070226] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 13.104190] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 13.104284] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 13.106344] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 13.106827] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 13.107016] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 13.107073] intel_rapl_msr: PL4 support detected.
[ 13.108793] intel_rapl_common: Found RAPL domain package
[ 13.108806] intel_rapl_common: Found RAPL domain core
[ 13.108815] intel_rapl_common: Found RAPL domain psys
[ 13.118123] i2c i2c-2: Successfully instantiated SPD at 0x50
[ 13.124149] intel_rapl_common: Found RAPL domain package
[ 13.129274] spd5118 2-0050: DDR5 temperature sensor: vendor 0x06:0x32 revision 1.6
[ 13.130404] Intel(R) Wireless WiFi driver for Linux
[ 13.131751] mc: Linux media interface: v0.10
[ 13.132382] Creating 1 MTD partitions on "0000:00:1f.5":
[ 13.132401] 0x000000000000-0x000002000000 : "BIOS"
[ 13.134194] ite_829x: loading out-of-tree module taints kernel.
[ 13.134924] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer
[ 13.134932] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 13.134932] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 13.134933] RAPL PMU: hw unit of domain psys 2^-14 Joules
[ 13.135373] iwlwifi 0000:00:14.3: Detected crf-id 0x400410, cnv-id 0x80401 wfpm id 0x80000020
[ 13.135403] iwlwifi 0000:00:14.3: PCI dev 7a70/0094, rev=0x430, rfid=0x2010d000
[ 13.135407] iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6E AX211 160MHz
[ 13.136008] iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-so-a0-gf-a0-89.ucode failed with error -2
[ 13.136039] iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-so-a0-gf-a0-88.ucode failed with error -2
[ 13.136064] iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-so-a0-gf-a0-87.ucode failed with error -2
[ 13.142236] Bluetooth: Core ver 2.22
[ 13.142444] NET: Registered PF_BLUETOOTH protocol family
[ 13.142445] Bluetooth: HCI device and connection manager initialized
[ 13.142453] Bluetooth: HCI socket layer initialized
[ 13.142456] Bluetooth: L2CAP socket layer initialized
[ 13.142466] Bluetooth: SCO socket layer initialized
[ 13.142637] iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.0.2.41
[ 13.143437] iwlwifi 0000:00:14.3: loaded firmware version 86.fb5c9aeb.0 so-a0-gf-a0-86.ucode op_mode iwlmvm
[ 13.144910] videodev: Linux video capture interface: v2.00
[ 13.145832] ite_829x 0003:048D:8910.0001: hiddev0,hidraw0: USB HID v1.10 Device [ITE Tech. Inc. ITE Device(829x)] on usb-0000:00:14.0-7/input0
[ 13.156066] usbcore: registered new interface driver btusb
[ 13.158674] Bluetooth: hci0: Device revision is 0
[ 13.158682] Bluetooth: hci0: Secure boot is enabled
[ 13.158683] Bluetooth: hci0: OTP lock is enabled
[ 13.158684] Bluetooth: hci0: API lock is enabled
[ 13.158685] Bluetooth: hci0: Debug lock is disabled
[ 13.158686] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[ 13.158688] Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38
[ 13.159246] Bluetooth: hci0: DSM reset method type: 0x00
[ 13.165344] Bluetooth: hci0: Found device firmware: intel/ibt-1040-0041.sfi
[ 13.165361] Bluetooth: hci0: Boot Address: 0x100800
[ 13.165364] Bluetooth: hci0: Firmware Version: 60-48.23
[ 13.183522] usb 1-6: Found UVC 1.50 device Chicony USB2.0 Camera (04f2:b7e7)
[ 13.230365] usb 1-6: Found UVC 1.50 device Chicony USB2.0 Camera (04f2:b7e7)
[ 13.241022] usbcore: registered new interface driver uvcvideo
[ 13.248037] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_1 due to name collision
[ 13.248049] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_2 due to name collision
[ 13.248060] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_3 due to name collision
[ 13.248072] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_4 due to name collision
[ 13.248084] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_5 due to name collision
[ 13.248096] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_6 due to name collision
[ 13.248109] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_7 due to name collision
[ 13.248132] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_8 due to name collision
[ 13.248162] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_9 due to name collision
[ 13.248200] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_10 due to name collision
[ 13.248228] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_11 due to name collision
[ 13.248277] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_12 due to name collision
[ 13.248302] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_13 due to name collision
[ 13.248323] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_14 due to name collision
[ 13.248341] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_15 due to name collision
[ 13.248366] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_16 due to name collision
[ 13.248393] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_17 due to name collision
[ 13.248420] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_18 due to name collision
[ 13.248458] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_19 due to name collision
[ 13.248488] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_20 due to name collision
[ 13.248556] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_21 due to name collision
[ 13.248646] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_22 due to name collision
[ 13.248733] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_23 due to name collision
[ 13.248809] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_24 due to name collision
[ 13.248860] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_25 due to name collision
[ 13.248904] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_26 due to name collision
[ 13.248963] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_27 due to name collision
[ 13.249025] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_28 due to name collision
[ 13.249089] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_29 due to name collision
[ 13.249121] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_30 due to name collision
[ 13.249160] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_31 due to name collision
[ 13.249201] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_32 due to name collision
[ 13.249236] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_33 due to name collision
[ 13.249277] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_34 due to name collision
[ 13.249334] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_35 due to name collision
[ 13.249379] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_36 due to name collision
[ 13.249427] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_37 due to name collision
[ 13.249477] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_38 due to name collision
[ 13.249549] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_39 due to name collision
[ 13.249621] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_40 due to name collision
[ 13.249682] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_41 due to name collision
[ 13.249745] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_42 due to name collision
[ 13.249823] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_43 due to name collision
[ 13.249918] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_44 due to name collision
[ 13.250010] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_45 due to name collision
[ 13.250017] MXM: GUID detected in BIOS
[ 13.250094] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_46 due to name collision
[ 13.250193] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_47 due to name collision
[ 13.250289] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_48 due to name collision
[ 13.250366] pci 0000:02:00.0: optimus capabilities: enabled, status dynamic power, hda bios codec supported
[ 13.250372] VGA switcheroo: detected Optimus DSM method \_SB_.PC00.PEG2.PEGP handle
[ 13.250374] nouveau: detected PR support, will not use DSM
[ 13.250386] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_49 due to name collision
[ 13.250495] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_50 due to name collision
[ 13.250610] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_51 due to name collision
[ 13.250616] nouveau 0000:02:00.0: NVIDIA AD104 (194000a1)
[ 13.250724] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_52 due to name collision
[ 13.250850] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_53 due to name collision
[ 13.250983] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_54 due to name collision
[ 13.251107] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_55 due to name collision
[ 13.251235] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_56 due to name collision
[ 13.251360] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_57 due to name collision
[ 13.251503] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_58 due to name collision
[ 13.251634] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_59 due to name collision
[ 13.251764] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_60 due to name collision
[ 13.251918] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_61 due to name collision
[ 13.252061] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_62 due to name collision
[ 13.252221] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_63 due to name collision
[ 13.252376] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_64 due to name collision
[ 13.252530] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_65 due to name collision
[ 13.252678] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_66 due to name collision
[ 13.252804] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_67 due to name collision
[ 13.252910] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_68 due to name collision
[ 13.253063] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_69 due to name collision
[ 13.253260] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_70 due to name collision
[ 13.253437] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_71 due to name collision
[ 13.253620] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_72 due to name collision
[ 13.253807] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_73 due to name collision
[ 13.253986] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_74 due to name collision
[ 13.254192] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_75 due to name collision
[ 13.254396] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_76 due to name collision
[ 13.254599] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_77 due to name collision
[ 13.254816] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_78 due to name collision
[ 13.255027] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_79 due to name collision
[ 13.255242] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_80 due to name collision
[ 13.255467] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_81 due to name collision
[ 13.255688] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_82 due to name collision
[ 13.255920] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_83 due to name collision
[ 13.256147] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_84 due to name collision
[ 13.256378] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_85 due to name collision
[ 13.256621] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_86 due to name collision
[ 13.256844] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_87 due to name collision
[ 13.257063] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_88 due to name collision
[ 13.257295] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_89 due to name collision
[ 13.257508] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_90 due to name collision
[ 13.257731] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_91 due to name collision
[ 13.257985] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_92 due to name collision
[ 13.258267] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_93 due to name collision
[ 13.258497] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_94 due to name collision
[ 13.258749] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_95 due to name collision
[ 13.258955] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_96 due to name collision
[ 13.259157] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_97 due to name collision
[ 13.259369] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_98 due to name collision
[ 13.259567] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_99 due to name collision
[ 13.259771] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_100 due to name collision
[ 13.259985] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_101 due to name collision
[ 13.260231] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_102 due to name collision
[ 13.260456] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_103 due to name collision
[ 13.260674] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_104 due to name collision
[ 13.260899] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_105 due to name collision
[ 13.261116] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_106 due to name collision
[ 13.261348] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_107 due to name collision
[ 13.261579] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_108 due to name collision
[ 13.261825] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_109 due to name collision
[ 13.262077] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_110 due to name collision
[ 13.262433] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_111 due to name collision
[ 13.262786] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_112 due to name collision
[ 13.263117] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_113 due to name collision
[ 13.263440] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_114 due to name collision
[ 13.263767] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_115 due to name collision
[ 13.264132] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_116 due to name collision
[ 13.264467] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_117 due to name collision
[ 13.264810] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_118 due to name collision
[ 13.265146] ite_829x 0003:048D:8910.0001: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_119 due to name collision
[ 13.279195] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[ 13.279398] snd_hda_intel 0000:02:00.1: enabling device (0000 -> 0002)
[ 13.279448] snd_hda_intel 0000:02:00.1: Disabling MSI
[ 13.279450] snd_hda_intel 0000:02:00.1: Handle vga_switcheroo audio client
[ 13.295777] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC1220: line_outs=1 (0x1b/0x0/0x0/0x0/0x0) type:speaker
[ 13.295783] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 13.295785] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x14/0x0/0x0/0x0/0x0)
[ 13.295787] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 13.295788] snd_hda_codec_realtek hdaudioC0D0: dig-out=0x1e/0x0
[ 13.295789] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 13.295790] snd_hda_codec_realtek hdaudioC0D0: Mic=0x18
[ 13.295792] snd_hda_codec_realtek hdaudioC0D0: Internal Mic=0x12
[ 13.298770] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card1/input15
[ 13.298832] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card1/input16
[ 13.298863] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card1/input17
[ 13.298888] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card1/input18
[ 13.306091] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input19
[ 13.306152] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input20
[ 13.312341] intel_tcc_cooling: Programmable TCC Offset detected
[ 13.448390] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[ 13.448421] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[ 13.448430] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[ 13.448439] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[ 13.449187] iwlwifi 0000:00:14.3: loaded PNVM version e28bb9d7
[ 13.449536] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
[ 13.465996] iwlwifi 0000:00:14.3: Detected RF GF, rfid=0x2010d000
[ 13.519846] nouveau 0000:02:00.0: bios: version 95.04.63.00.24
[ 13.525018] Console: switching to colour dummy device 80x25
[ 13.534821] iwlwifi 0000:00:14.3: base HW address: dc:97:ba:75:8a:32
[ 13.535185] nouveau 0000:02:00.0: vgaarb: deactivate vga console
[ 13.561933] iwlwifi 0000:00:14.3 wlp0s20f3: renamed from wlan0
[ 13.932204] BTRFS: device label kfocus_boot devid 1 transid 455 /dev/nvme0n1p2 (259:2) scanned by mount (1412)
[ 13.932695] BTRFS info (device nvme0n1p2): first mount of filesystem abbbc711-9904-466b-8a35-783f0d19bf50
[ 13.932703] BTRFS info (device nvme0n1p2): using crc32c (crc32c-intel) checksum algorithm
[ 13.932706] BTRFS info (device nvme0n1p2): using free-space-tree
[ 13.943050] Adding 524284k swap on /swap/swapfile. Priority:-2 extents:2 across:1686444k SS
[ 13.965747] audit: type=1400 audit(1730229754.531:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Discord" pid=1468 comm="apparmor_parser"
[ 13.965762] audit: type=1400 audit(1730229754.531:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=1469 comm="apparmor_parser"
[ 13.965787] audit: type=1400 audit(1730229754.531:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="busybox" pid=1474 comm="apparmor_parser"
[ 13.965992] audit: type=1400 audit(1730229754.531:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=1472 comm="apparmor_parser"
[ 13.966017] audit: type=1400 audit(1730229754.531:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="crun" pid=1480 comm="apparmor_parser"
[ 13.966092] audit: type=1400 audit(1730229754.531:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="QtWebEngineProcess" pid=1470 comm="apparmor_parser"
[ 13.966265] audit: type=1400 audit(1730229754.531:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=1467 comm="apparmor_parser"
[ 13.966309] audit: type=1400 audit(1730229754.531:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-checkns" pid=1476 comm="apparmor_parser"
[ 13.966351] audit: type=1400 audit(1730229754.531:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=1471 comm="apparmor_parser"
[ 13.966451] audit: type=1400 audit(1730229754.531:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="vscode" pid=1479 comm="apparmor_parser"
[ 14.538307] nouveau 0000:02:00.0: drm: VRAM: 12282 MiB
[ 14.538311] nouveau 0000:02:00.0: drm: GART: 536870912 MiB
[ 14.574703] Bluetooth: hci0: Waiting for firmware download to complete
[ 14.575694] Bluetooth: hci0: Firmware loaded in 1377287 usecs
[ 14.575716] Bluetooth: hci0: Waiting for device to boot
[ 14.591683] Bluetooth: hci0: Device booted in 15601 usecs
[ 14.591687] Bluetooth: hci0: Malformed MSFT vendor event: 0x02
[ 14.592737] nouveau 0000:02:00.0: drm: MM: using COPY for buffer copies
[ 14.593914] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-1040-0041.ddc
[ 14.595693] Bluetooth: hci0: Applying Intel DDC parameters completed
[ 14.598800] Bluetooth: hci0: Firmware timestamp 2023.48 buildtype 1 build 75324
[ 14.598804] Bluetooth: hci0: Firmware SHA1: 0x23bac558
[ 14.602705] Bluetooth: hci0: Fseq status: Success (0x00)
[ 14.602706] Bluetooth: hci0: Fseq executed: 00.00.02.41
[ 14.602707] Bluetooth: hci0: Fseq BT Top: 00.00.02.41
[ 14.628018] snd_hda_intel 0000:02:00.1: bound 0000:02:00.0 (ops disp50xx_modifiers [nouveau])
[ 14.632656] acpi device:06: registered as cooling_device36
[ 14.632908] [drm] Initialized nouveau 1.4.0 for 0000:02:00.0 on minor 0
[ 14.650554] fbcon: nouveaudrmfb (fb0) is primary device
[ 14.651609] snd_hda_codec_hdmi hdaudioC1D0: HDMI: pin NID 0x4 not registered
[ 15.707521] Console: switching to colour frame buffer device 160x45
[ 15.709377] nouveau 0000:02:00.0: [drm] fb0: nouveaudrmfb frame buffer device
[ 15.902452] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 15.902455] Bluetooth: BNEP filters: protocol multicast
[ 15.902458] Bluetooth: BNEP socket layer initialized
[ 15.903462] Bluetooth: MGMT ver 1.23
[ 15.906119] NET: Registered PF_ALG protocol family
[ 15.949753] loop9: detected capacity change from 0 to 8
[ 15.967008] NET: Registered PF_QIPCRTR protocol family
[ 16.499986] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[ 16.500025] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[ 16.500059] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[ 16.500092] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[ 16.500965] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
[ 16.603894] iwlwifi 0000:00:14.3: Registered PHC clock: iwlwifi-PTP, with index: 1
[ 19.241597] igc 0000:03:00.0 enp3s0: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[ 27.097644] snd_hda_codec_hdmi hdaudioC1D0: HDMI: pin NID 0x4 not registered
[ 28.967758] Bluetooth: RFCOMM TTY layer initialized
[ 28.967766] Bluetooth: RFCOMM socket layer initialized
[ 28.967769] Bluetooth: RFCOMM ver 1.11
[ 32.329528] systemd-journald[811]: /var/log/journal/86d43f3761a64806a644a560706664c5/user-1000.journal: Journal file uses a different sequence number ID, rotating.
[ 33.504085] warning: `kded5' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[ 33.703721] snd_hda_codec_hdmi hdaudioC1D0: HDMI: pin NID 0x4 not registered
[ 34.523314] xhci_hcd 0000:2d:00.0: xHC error in resume, USBSTS 0x401, Reinit
[ 34.523318] usb usb3: root hub lost power or was reset
[ 34.523319] usb usb4: root hub lost power or was reset
[ 58.597171] wlp0s20f3: authenticate with a0:55:1f:2f:2c:93 (local address=dc:97:ba:75:8a:32)
[ 58.599078] wlp0s20f3: send auth to a0:55:1f:2f:2c:93 (try 1/3)
[ 58.642642] wlp0s20f3: authenticate with a0:55:1f:2f:2c:93 (local address=dc:97:ba:75:8a:32)
[ 58.643027] wlp0s20f3: send auth to a0:55:1f:2f:2c:93 (try 1/3)
[ 58.649387] wlp0s20f3: authenticated
[ 58.650458] wlp0s20f3: associate with a0:55:1f:2f:2c:93 (try 1/3)
[ 58.659711] wlp0s20f3: RX AssocResp from a0:55:1f:2f:2c:93 (capab=0x1011 status=0 aid=24)
[ 58.678738] wlp0s20f3: associated
[ 1421.258052] usb 1-9: new full-speed USB device number 5 using xhci_hcd
[ 1421.396458] usb 1-9: not running at top speed; connect to a high speed hub
[ 1421.410532] usb 1-9: New USB device found, idVendor=2109, idProduct=0103, bcdDevice= 2.00
[ 1421.410545] usb 1-9: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1421.410549] usb 1-9: Product: USB 2.0 BILLBOARD
[ 1421.410553] usb 1-9: Manufacturer: VIA Technologies Inc.
[ 1421.410556] usb 1-9: SerialNumber: 0000000000000001
[ 1729.921242] usb 1-10: new high-speed USB device number 6 using xhci_hcd
[ 1730.065261] usb 1-10: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.49
[ 1730.065275] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1730.065279] usb 1-10: Product: 4-Port USB 2.0 Hub
[ 1730.065283] usb 1-10: Manufacturer: Generic
[ 1730.068045] hub 1-10:1.0: USB hub found
[ 1730.070356] hub 1-10:1.0: 4 ports detected
[ 1731.287224] usb 1-10.3: new full-speed USB device number 7 using xhci_hcd
[ 1731.373539] usb 1-10.3: New USB device found, idVendor=043e, idProduct=9a39, bcdDevice= 4.11
[ 1731.373553] usb 1-10.3: New USB device strings: Mfr=1, Product=3, SerialNumber=4
[ 1731.373558] usb 1-10.3: Product: LG Monitor Controls
[ 1731.373562] usb 1-10.3: Manufacturer: LG Electronics Inc.
[ 1731.373565] usb 1-10.3: SerialNumber: 005INTX1F153
[ 1731.380354] hid-generic 0003:043E:9A39.0003: hiddev1,hidraw2: USB HID v1.11 Device [LG Electronics Inc. LG Monitor Controls] on usb-0000:00:14.0-10.3/input0
[ 1815.428971] xhci_hcd 0000:2d:00.0: xHC error in resume, USBSTS 0x401, Reinit
[ 1815.428976] usb usb3: root hub lost power or was reset
[ 1815.428978] usb usb4: root hub lost power or was reset
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-10-31 14:55 ` Aaron Rainbolt
@ 2024-11-01 7:21 ` Mika Westerberg
2024-11-01 23:13 ` Aaron Rainbolt
0 siblings, 1 reply; 29+ messages in thread
From: Mika Westerberg @ 2024-11-01 7:21 UTC (permalink / raw)
To: Aaron Rainbolt
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
Hi Aaron,
On Thu, Oct 31, 2024 at 09:55:42AM -0500, Aaron Rainbolt wrote:
> Sorry for the delays, been working on testing the patch and had other
> things taking priority.
>
> I keep having to manually apply the patches you're sending "by hand" to
> the latest mainline kernel because it doesn't apply cleanly. In
> particular, I notice that in the very last "segment" of the patch (the
> one that applies to tb_runtime_resume), the "list_for_each_entry_safe"
> line shows that it's running "tb_tunnel_activate" in your tree, whereas
> the upstream 6.12~rc5 code is running "tb_tunnel_restart" there. Would
> it be too much of a hassle to ask for a patch that applies cleanly to
> the 6.11.5 kernel? That would be very handy since that's the easiest
> supported upstream kernel for us to test against, and would make sure
> that we're not seeing any weird bugs as a result of kernel sources
> mismatch.
Sorry about that. I did not realize that it might not apply. It indeed
was on top of my local changes. The patch below applies cleanly to v6.11
but let me know if it does not.
> [ 1.429876] thunderbolt 0000:06:00.0: device links to tunneled native ports are missing!
I keep worrying about this one, althought not related to your issue. I
wonder if you reported this to the manufacturer? If this is missing
PCIe/USB tunneling will not work as expected over sleep cycles.
Anyways, I realized now another oddity:
> [ 1.436154] thunderbolt 0000:06:00.0: acking hot plug event on 0:13
> [ 1.436280] thunderbolt 0000:06:00.0: acking hot plug event on 0:14
> [ 1.436410] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
...
> [ 1.449347] thunderbolt 0000:06:00.0: 0:16: disabled by eeprom
The DROM claims the adapter to be disabled. This is most likely not
the intention. Can you try the below patch? It includes the redrive
changes and also quirk for this thing.
It is enough to do these steps so no need to do the full cycle:
1. Boot the system up, nothing connected.
2. Wait for Barlow Ridge to enter runtime suspend. This takes ~15
seconds so waiting for > 15 seconds should be enough.
3. Plug in USB-C monitor to the USB-C port of the Barlow Ridge.
This is essentially the same as you do in the first steps and this is
where it fails (and you "fixed" it by running lspci -k). I'm hoping that
the quirk would make the DP IN adapter 16 to enter redrive mode too and
keep the domain powered. Alternative is that you only have two
connections from the dGPU to the Barlow Ridge in which case disabling
the adapter might actually be correct. However, in that case we should
not be getting plug events to the adapters that are not available for
tunneling.
diff --git a/drivers/thunderbolt/eeprom.c b/drivers/thunderbolt/eeprom.c
index eb241b270f79..22a41e524b21 100644
--- a/drivers/thunderbolt/eeprom.c
+++ b/drivers/thunderbolt/eeprom.c
@@ -703,10 +703,18 @@ static int tb_drom_device_read(struct tb_switch *sw)
*/
int tb_drom_read(struct tb_switch *sw)
{
+ int ret;
+
if (sw->drom)
return 0;
- if (!tb_route(sw))
- return tb_drom_host_read(sw);
- return tb_drom_device_read(sw);
+ if (tb_route(sw))
+ ret = tb_drom_device_read(sw);
+ else
+ ret = tb_drom_host_read(sw);
+ if (ret)
+ return ret;
+
+ tb_check_drom_quirks(sw);
+ return 0;
}
diff --git a/drivers/thunderbolt/quirks.c b/drivers/thunderbolt/quirks.c
index e81de9c30eac..5f7eec97cfb9 100644
--- a/drivers/thunderbolt/quirks.c
+++ b/drivers/thunderbolt/quirks.c
@@ -49,66 +49,105 @@ static void quirk_block_rpm_in_redrive(struct tb_switch *sw)
tb_sw_dbg(sw, "preventing runtime PM in DP redrive mode\n");
}
+static void quirk_enable_drom_dp_in(struct tb_switch *sw)
+{
+ if (sw->ports[16].disabled) {
+ tb_port_dbg(&sw->ports[16], "re-enabling adapter\n");
+ sw->ports[16].disabled = false;
+ }
+}
+
struct tb_quirk {
u16 hw_vendor_id;
u16 hw_device_id;
u16 vendor;
u16 device;
+ void (*drom_hook)(struct tb_switch *sw);
void (*hook)(struct tb_switch *sw);
};
static const struct tb_quirk tb_quirks[] = {
/* Dell WD19TB supports self-authentication on unplug */
- { 0x0000, 0x0000, 0x00d4, 0xb070, quirk_force_power_link },
- { 0x0000, 0x0000, 0x00d4, 0xb071, quirk_force_power_link },
+ { 0x0000, 0x0000, 0x00d4, 0xb070, quirk_force_power_link, NULL },
+ { 0x0000, 0x0000, 0x00d4, 0xb071, quirk_force_power_link, NULL },
/*
* Intel Goshen Ridge NVM 27 and before report wrong number of
* DP buffers.
*/
- { 0x8087, 0x0b26, 0x0000, 0x0000, quirk_dp_credit_allocation },
+ { 0x8087, 0x0b26, 0x0000, 0x0000, quirk_dp_credit_allocation, NULL },
/*
* Limit the maximum USB3 bandwidth for the following Intel USB4
* host routers due to a hardware issue.
*/
{ 0x8087, PCI_DEVICE_ID_INTEL_ADL_NHI0, 0x0000, 0x0000,
- quirk_usb3_maximum_bandwidth },
+ quirk_usb3_maximum_bandwidth, NULL },
{ 0x8087, PCI_DEVICE_ID_INTEL_ADL_NHI1, 0x0000, 0x0000,
- quirk_usb3_maximum_bandwidth },
+ quirk_usb3_maximum_bandwidth, NULL },
{ 0x8087, PCI_DEVICE_ID_INTEL_RPL_NHI0, 0x0000, 0x0000,
- quirk_usb3_maximum_bandwidth },
+ quirk_usb3_maximum_bandwidth, NULL },
{ 0x8087, PCI_DEVICE_ID_INTEL_RPL_NHI1, 0x0000, 0x0000,
- quirk_usb3_maximum_bandwidth },
+ quirk_usb3_maximum_bandwidth, NULL },
{ 0x8087, PCI_DEVICE_ID_INTEL_MTL_M_NHI0, 0x0000, 0x0000,
- quirk_usb3_maximum_bandwidth },
+ quirk_usb3_maximum_bandwidth, NULL },
{ 0x8087, PCI_DEVICE_ID_INTEL_MTL_P_NHI0, 0x0000, 0x0000,
- quirk_usb3_maximum_bandwidth },
+ quirk_usb3_maximum_bandwidth, NULL },
{ 0x8087, PCI_DEVICE_ID_INTEL_MTL_P_NHI1, 0x0000, 0x0000,
- quirk_usb3_maximum_bandwidth },
+ quirk_usb3_maximum_bandwidth, NULL },
{ 0x8087, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HOST_80G_NHI, 0x0000, 0x0000,
- quirk_usb3_maximum_bandwidth },
+ quirk_usb3_maximum_bandwidth, NULL },
{ 0x8087, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HOST_40G_NHI, 0x0000, 0x0000,
- quirk_usb3_maximum_bandwidth },
+ quirk_usb3_maximum_bandwidth, NULL },
{ 0x8087, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HUB_80G_BRIDGE, 0x0000, 0x0000,
- quirk_usb3_maximum_bandwidth },
+ quirk_usb3_maximum_bandwidth, NULL },
{ 0x8087, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HUB_40G_BRIDGE, 0x0000, 0x0000,
- quirk_usb3_maximum_bandwidth },
+ quirk_usb3_maximum_bandwidth, NULL },
/*
* Block Runtime PM in DP redrive mode for Intel Barlow Ridge host
* controllers.
+ *
+ * Re-enable DP IN adapter 16 which is marked as disabled in
+ * some Clevo systems.
*/
{ 0x8087, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HOST_80G_NHI, 0x0000, 0x0000,
- quirk_block_rpm_in_redrive },
+ quirk_block_rpm_in_redrive, quirk_enable_drom_dp_in },
{ 0x8087, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HOST_40G_NHI, 0x0000, 0x0000,
- quirk_block_rpm_in_redrive },
+ quirk_block_rpm_in_redrive, NULL },
/*
* CLx is not supported on AMD USB4 Yellow Carp and Pink Sardine platforms.
*/
- { 0x0438, 0x0208, 0x0000, 0x0000, quirk_clx_disable },
- { 0x0438, 0x0209, 0x0000, 0x0000, quirk_clx_disable },
- { 0x0438, 0x020a, 0x0000, 0x0000, quirk_clx_disable },
- { 0x0438, 0x020b, 0x0000, 0x0000, quirk_clx_disable },
+ { 0x0438, 0x0208, 0x0000, 0x0000, quirk_clx_disable, NULL },
+ { 0x0438, 0x0209, 0x0000, 0x0000, quirk_clx_disable, NULL },
+ { 0x0438, 0x020a, 0x0000, 0x0000, quirk_clx_disable, NULL },
+ { 0x0438, 0x020b, 0x0000, 0x0000, quirk_clx_disable, NULL },
};
+static bool match(const struct tb_switch *sw, const struct tb_quirk *q)
+{
+ if (q->hw_vendor_id && q->hw_vendor_id != sw->config.vendor_id)
+ return false;
+ if (q->hw_device_id && q->hw_device_id != sw->config.device_id)
+ return false;
+ if (q->vendor && q->vendor != sw->vendor)
+ return false;
+ if (q->device && q->device != sw->device)
+ return false;
+ return true;
+}
+
+void tb_check_drom_quirks(struct tb_switch *sw)
+{
+ int i;
+
+ for (i = 0; i < ARRAY_SIZE(tb_quirks); i++) {
+ const struct tb_quirk *q = &tb_quirks[i];
+
+ if (match(sw, q) && q->drom_hook) {
+ tb_sw_dbg(sw, "running %ps\n", q->drom_hook);
+ q->drom_hook(sw);
+ }
+ }
+}
+
/**
* tb_check_quirks() - Check for quirks to apply
* @sw: Thunderbolt switch
@@ -122,16 +161,9 @@ void tb_check_quirks(struct tb_switch *sw)
for (i = 0; i < ARRAY_SIZE(tb_quirks); i++) {
const struct tb_quirk *q = &tb_quirks[i];
- if (q->hw_vendor_id && q->hw_vendor_id != sw->config.vendor_id)
- continue;
- if (q->hw_device_id && q->hw_device_id != sw->config.device_id)
- continue;
- if (q->vendor && q->vendor != sw->vendor)
- continue;
- if (q->device && q->device != sw->device)
- continue;
-
- tb_sw_dbg(sw, "running %ps\n", q->hook);
- q->hook(sw);
+ if (match(sw, q) && q->hook) {
+ tb_sw_dbg(sw, "running %ps\n", q->hook);
+ q->hook(sw);
+ }
}
}
diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
index 10e719dd837c..633aaf9e0574 100644
--- a/drivers/thunderbolt/tb.c
+++ b/drivers/thunderbolt/tb.c
@@ -2023,6 +2023,37 @@ static void tb_exit_redrive(struct tb_port *port)
}
}
+static void tb_switch_enter_redrive(struct tb_switch *sw)
+{
+ struct tb_port *port;
+
+ tb_switch_for_each_port(sw, port)
+ tb_enter_redrive(port);
+}
+
+/*
+ * Called during system and runtime suspend to forcefully exit redrive
+ * mode without querying whether the resource is available.
+ */
+static void tb_switch_exit_redrive(struct tb_switch *sw)
+{
+ struct tb_port *port;
+
+ if (!(sw->quirks & QUIRK_KEEP_POWER_IN_DP_REDRIVE))
+ return;
+
+ tb_switch_for_each_port(sw, port) {
+ if (!tb_port_is_dpin(port))
+ continue;
+
+ if (port->redrive) {
+ port->redrive = false;
+ pm_runtime_put(&sw->dev);
+ tb_port_dbg(port, "exit redrive mode\n");
+ }
+ }
+}
+
static void tb_dp_resource_unavailable(struct tb *tb, struct tb_port *port)
{
struct tb_port *in, *out;
@@ -2066,8 +2097,17 @@ static void tb_dp_resource_available(struct tb *tb, struct tb_port *port)
return;
}
- tb_port_dbg(port, "DP %s resource available after hotplug\n",
- tb_port_is_dpin(port) ? "IN" : "OUT");
+ if (tb_port_is_dpin(port)) {
+ /* Verify that the resource is really available */
+ if (!tb_switch_query_dp_resource(port->sw, port)) {
+ tb_port_info(port, "got hotplug but DP IN resource not available\n");
+ return;
+ }
+ tb_port_dbg(port, "DP IN resource available after hotplug\n");
+ } else {
+ tb_port_dbg(port, "DP OUT resource available after hotplug\n");
+ }
+
list_add_tail(&port->list, &tcm->dp_resources);
tb_exit_redrive(port);
@@ -2873,6 +2913,7 @@ static int tb_start(struct tb *tb, bool reset)
tb_create_usb3_tunnels(tb->root_switch);
/* Add DP IN resources for the root switch */
tb_add_dp_resources(tb->root_switch);
+ tb_switch_enter_redrive(tb->root_switch);
/* Make the discovered switches available to the userspace */
device_for_each_child(&tb->root_switch->dev, NULL,
tb_scan_finalize_switch);
@@ -2888,6 +2929,7 @@ static int tb_suspend_noirq(struct tb *tb)
tb_dbg(tb, "suspending...\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; /* signal tb_handle_hotplug to quit */
tb_dbg(tb, "suspend finished\n");
@@ -2980,6 +3022,7 @@ static int tb_resume_noirq(struct tb *tb)
tb_dbg(tb, "tunnels restarted, sleeping for 100ms\n");
msleep(100);
}
+ tb_switch_enter_redrive(tb->root_switch);
/* Allow tb_handle_hotplug to progress events */
tcm->hotplug_active = true;
tb_dbg(tb, "resume finished\n");
@@ -3043,6 +3086,8 @@ static int tb_runtime_suspend(struct tb *tb)
struct tb_cm *tcm = tb_priv(tb);
mutex_lock(&tb->lock);
+ tb_disconnect_and_release_dp(tb);
+ tb_switch_exit_redrive(tb->root_switch);
tb_switch_suspend(tb->root_switch, true);
tcm->hotplug_active = false;
mutex_unlock(&tb->lock);
@@ -3074,6 +3119,7 @@ static int tb_runtime_resume(struct tb *tb)
tb_restore_children(tb->root_switch);
list_for_each_entry_safe(tunnel, n, &tcm->tunnel_list, list)
tb_tunnel_restart(tunnel);
+ tb_switch_enter_redrive(tb->root_switch);
tcm->hotplug_active = true;
mutex_unlock(&tb->lock);
diff --git a/drivers/thunderbolt/tb.h b/drivers/thunderbolt/tb.h
index b47f7873c847..a5d32cfe1db1 100644
--- a/drivers/thunderbolt/tb.h
+++ b/drivers/thunderbolt/tb.h
@@ -1427,6 +1427,7 @@ static inline bool usb4_port_device_is_offline(const struct usb4_port *usb4)
return usb4->offline;
}
+void tb_check_drom_quirks(struct tb_switch *sw);
void tb_check_quirks(struct tb_switch *sw);
#ifdef CONFIG_ACPI
^ permalink raw reply related [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-11-01 7:21 ` Mika Westerberg
@ 2024-11-01 23:13 ` Aaron Rainbolt
2024-11-04 6:01 ` Mika Westerberg
0 siblings, 1 reply; 29+ messages in thread
From: Aaron Rainbolt @ 2024-11-01 23:13 UTC (permalink / raw)
To: Mika Westerberg
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
[-- Attachment #1: Type: text/plain, Size: 15075 bytes --]
On Fri, 1 Nov 2024 09:21:55 +0200
Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
> Hi Aaron,
>
> On Thu, Oct 31, 2024 at 09:55:42AM -0500, Aaron Rainbolt wrote:
> > Sorry for the delays, been working on testing the patch and had
> > other things taking priority.
> >
> > I keep having to manually apply the patches you're sending "by
> > hand" to the latest mainline kernel because it doesn't apply
> > cleanly. In particular, I notice that in the very last "segment" of
> > the patch (the one that applies to tb_runtime_resume), the
> > "list_for_each_entry_safe" line shows that it's running
> > "tb_tunnel_activate" in your tree, whereas the upstream 6.12~rc5
> > code is running "tb_tunnel_restart" there. Would it be too much of
> > a hassle to ask for a patch that applies cleanly to the 6.11.5
> > kernel? That would be very handy since that's the easiest supported
> > upstream kernel for us to test against, and would make sure that
> > we're not seeing any weird bugs as a result of kernel sources
> > mismatch.
>
> Sorry about that. I did not realize that it might not apply. It indeed
> was on top of my local changes. The patch below applies cleanly to
> v6.11 but let me know if it does not.
>
> > [ 1.429876] thunderbolt 0000:06:00.0: device links to tunneled
> > native ports are missing!
>
> I keep worrying about this one, althought not related to your issue. I
> wonder if you reported this to the manufacturer? If this is missing
> PCIe/USB tunneling will not work as expected over sleep cycles.
>
> Anyways, I realized now another oddity:
>
> > [ 1.436154] thunderbolt 0000:06:00.0: acking hot plug event on
> > 0:13 [ 1.436280] thunderbolt 0000:06:00.0: acking hot plug event
> > on 0:14 [ 1.436410] thunderbolt 0000:06:00.0: acking hot plug
> > event on 0:16
> ...
> > [ 1.449347] thunderbolt 0000:06:00.0: 0:16: disabled by eeprom
>
> The DROM claims the adapter to be disabled. This is most likely not
> the intention. Can you try the below patch? It includes the redrive
> changes and also quirk for this thing.
>
> It is enough to do these steps so no need to do the full cycle:
>
> 1. Boot the system up, nothing connected.
> 2. Wait for Barlow Ridge to enter runtime suspend. This takes ~15
> seconds so waiting for > 15 seconds should be enough.
> 3. Plug in USB-C monitor to the USB-C port of the Barlow Ridge.
>
> This is essentially the same as you do in the first steps and this is
> where it fails (and you "fixed" it by running lspci -k). I'm hoping
> that the quirk would make the DP IN adapter 16 to enter redrive mode
> too and keep the domain powered. Alternative is that you only have two
> connections from the dGPU to the Barlow Ridge in which case disabling
> the adapter might actually be correct. However, in that case we should
> not be getting plug events to the adapters that are not available for
> tunneling.
>
> diff --git a/drivers/thunderbolt/eeprom.c
> b/drivers/thunderbolt/eeprom.c index eb241b270f79..22a41e524b21 100644
> --- a/drivers/thunderbolt/eeprom.c
> +++ b/drivers/thunderbolt/eeprom.c
> @@ -703,10 +703,18 @@ static int tb_drom_device_read(struct tb_switch
> *sw) */
> int tb_drom_read(struct tb_switch *sw)
> {
> + int ret;
> +
> if (sw->drom)
> return 0;
>
> - if (!tb_route(sw))
> - return tb_drom_host_read(sw);
> - return tb_drom_device_read(sw);
> + if (tb_route(sw))
> + ret = tb_drom_device_read(sw);
> + else
> + ret = tb_drom_host_read(sw);
> + if (ret)
> + return ret;
> +
> + tb_check_drom_quirks(sw);
> + return 0;
> }
> diff --git a/drivers/thunderbolt/quirks.c
> b/drivers/thunderbolt/quirks.c index e81de9c30eac..5f7eec97cfb9 100644
> --- a/drivers/thunderbolt/quirks.c
> +++ b/drivers/thunderbolt/quirks.c
> @@ -49,66 +49,105 @@ static void quirk_block_rpm_in_redrive(struct
> tb_switch *sw) tb_sw_dbg(sw, "preventing runtime PM in DP redrive
> mode\n"); }
>
> +static void quirk_enable_drom_dp_in(struct tb_switch *sw)
> +{
> + if (sw->ports[16].disabled) {
> + tb_port_dbg(&sw->ports[16], "re-enabling adapter\n");
> + sw->ports[16].disabled = false;
> + }
> +}
> +
> struct tb_quirk {
> u16 hw_vendor_id;
> u16 hw_device_id;
> u16 vendor;
> u16 device;
> + void (*drom_hook)(struct tb_switch *sw);
> void (*hook)(struct tb_switch *sw);
> };
>
> static const struct tb_quirk tb_quirks[] = {
> /* Dell WD19TB supports self-authentication on unplug */
> - { 0x0000, 0x0000, 0x00d4, 0xb070, quirk_force_power_link },
> - { 0x0000, 0x0000, 0x00d4, 0xb071, quirk_force_power_link },
> + { 0x0000, 0x0000, 0x00d4, 0xb070, quirk_force_power_link,
> NULL },
> + { 0x0000, 0x0000, 0x00d4, 0xb071, quirk_force_power_link,
> NULL }, /*
> * Intel Goshen Ridge NVM 27 and before report wrong number
> of
> * DP buffers.
> */
> - { 0x8087, 0x0b26, 0x0000, 0x0000, quirk_dp_credit_allocation
> },
> + { 0x8087, 0x0b26, 0x0000, 0x0000,
> quirk_dp_credit_allocation, NULL }, /*
> * Limit the maximum USB3 bandwidth for the following Intel
> USB4
> * host routers due to a hardware issue.
> */
> { 0x8087, PCI_DEVICE_ID_INTEL_ADL_NHI0, 0x0000, 0x0000,
> - quirk_usb3_maximum_bandwidth },
> + quirk_usb3_maximum_bandwidth, NULL },
> { 0x8087, PCI_DEVICE_ID_INTEL_ADL_NHI1, 0x0000, 0x0000,
> - quirk_usb3_maximum_bandwidth },
> + quirk_usb3_maximum_bandwidth, NULL },
> { 0x8087, PCI_DEVICE_ID_INTEL_RPL_NHI0, 0x0000, 0x0000,
> - quirk_usb3_maximum_bandwidth },
> + quirk_usb3_maximum_bandwidth, NULL },
> { 0x8087, PCI_DEVICE_ID_INTEL_RPL_NHI1, 0x0000, 0x0000,
> - quirk_usb3_maximum_bandwidth },
> + quirk_usb3_maximum_bandwidth, NULL },
> { 0x8087, PCI_DEVICE_ID_INTEL_MTL_M_NHI0, 0x0000, 0x0000,
> - quirk_usb3_maximum_bandwidth },
> + quirk_usb3_maximum_bandwidth, NULL },
> { 0x8087, PCI_DEVICE_ID_INTEL_MTL_P_NHI0, 0x0000, 0x0000,
> - quirk_usb3_maximum_bandwidth },
> + quirk_usb3_maximum_bandwidth, NULL },
> { 0x8087, PCI_DEVICE_ID_INTEL_MTL_P_NHI1, 0x0000, 0x0000,
> - quirk_usb3_maximum_bandwidth },
> + quirk_usb3_maximum_bandwidth, NULL },
> { 0x8087, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HOST_80G_NHI,
> 0x0000, 0x0000,
> - quirk_usb3_maximum_bandwidth },
> + quirk_usb3_maximum_bandwidth, NULL },
> { 0x8087, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HOST_40G_NHI,
> 0x0000, 0x0000,
> - quirk_usb3_maximum_bandwidth },
> + quirk_usb3_maximum_bandwidth, NULL },
> { 0x8087, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HUB_80G_BRIDGE,
> 0x0000, 0x0000,
> - quirk_usb3_maximum_bandwidth },
> + quirk_usb3_maximum_bandwidth, NULL },
> { 0x8087, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HUB_40G_BRIDGE,
> 0x0000, 0x0000,
> - quirk_usb3_maximum_bandwidth },
> + quirk_usb3_maximum_bandwidth, NULL },
> /*
> * Block Runtime PM in DP redrive mode for Intel Barlow
> Ridge host
> * controllers.
> + *
> + * Re-enable DP IN adapter 16 which is marked as disabled in
> + * some Clevo systems.
> */
> { 0x8087, PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HOST_80G_NHI,
> 0x0000, 0x0000,
> - quirk_block_rpm_in_redrive },
> + quirk_block_rpm_in_redrive,
> quirk_enable_drom_dp_in }, { 0x8087,
> PCI_DEVICE_ID_INTEL_BARLOW_RIDGE_HOST_40G_NHI, 0x0000, 0x0000,
> - quirk_block_rpm_in_redrive },
> + quirk_block_rpm_in_redrive, NULL },
> /*
> * CLx is not supported on AMD USB4 Yellow Carp and Pink
> Sardine platforms. */
> - { 0x0438, 0x0208, 0x0000, 0x0000, quirk_clx_disable },
> - { 0x0438, 0x0209, 0x0000, 0x0000, quirk_clx_disable },
> - { 0x0438, 0x020a, 0x0000, 0x0000, quirk_clx_disable },
> - { 0x0438, 0x020b, 0x0000, 0x0000, quirk_clx_disable },
> + { 0x0438, 0x0208, 0x0000, 0x0000, quirk_clx_disable, NULL },
> + { 0x0438, 0x0209, 0x0000, 0x0000, quirk_clx_disable, NULL },
> + { 0x0438, 0x020a, 0x0000, 0x0000, quirk_clx_disable, NULL },
> + { 0x0438, 0x020b, 0x0000, 0x0000, quirk_clx_disable, NULL },
> };
>
> +static bool match(const struct tb_switch *sw, const struct tb_quirk
> *q) +{
> + if (q->hw_vendor_id && q->hw_vendor_id !=
> sw->config.vendor_id)
> + return false;
> + if (q->hw_device_id && q->hw_device_id !=
> sw->config.device_id)
> + return false;
> + if (q->vendor && q->vendor != sw->vendor)
> + return false;
> + if (q->device && q->device != sw->device)
> + return false;
> + return true;
> +}
> +
> +void tb_check_drom_quirks(struct tb_switch *sw)
> +{
> + int i;
> +
> + for (i = 0; i < ARRAY_SIZE(tb_quirks); i++) {
> + const struct tb_quirk *q = &tb_quirks[i];
> +
> + if (match(sw, q) && q->drom_hook) {
> + tb_sw_dbg(sw, "running %ps\n", q->drom_hook);
> + q->drom_hook(sw);
> + }
> + }
> +}
> +
> /**
> * tb_check_quirks() - Check for quirks to apply
> * @sw: Thunderbolt switch
> @@ -122,16 +161,9 @@ void tb_check_quirks(struct tb_switch *sw)
> for (i = 0; i < ARRAY_SIZE(tb_quirks); i++) {
> const struct tb_quirk *q = &tb_quirks[i];
>
> - if (q->hw_vendor_id && q->hw_vendor_id !=
> sw->config.vendor_id)
> - continue;
> - if (q->hw_device_id && q->hw_device_id !=
> sw->config.device_id)
> - continue;
> - if (q->vendor && q->vendor != sw->vendor)
> - continue;
> - if (q->device && q->device != sw->device)
> - continue;
> -
> - tb_sw_dbg(sw, "running %ps\n", q->hook);
> - q->hook(sw);
> + if (match(sw, q) && q->hook) {
> + tb_sw_dbg(sw, "running %ps\n", q->hook);
> + q->hook(sw);
> + }
> }
> }
> diff --git a/drivers/thunderbolt/tb.c b/drivers/thunderbolt/tb.c
> index 10e719dd837c..633aaf9e0574 100644
> --- a/drivers/thunderbolt/tb.c
> +++ b/drivers/thunderbolt/tb.c
> @@ -2023,6 +2023,37 @@ static void tb_exit_redrive(struct tb_port
> *port) }
> }
>
> +static void tb_switch_enter_redrive(struct tb_switch *sw)
> +{
> + struct tb_port *port;
> +
> + tb_switch_for_each_port(sw, port)
> + tb_enter_redrive(port);
> +}
> +
> +/*
> + * Called during system and runtime suspend to forcefully exit
> redrive
> + * mode without querying whether the resource is available.
> + */
> +static void tb_switch_exit_redrive(struct tb_switch *sw)
> +{
> + struct tb_port *port;
> +
> + if (!(sw->quirks & QUIRK_KEEP_POWER_IN_DP_REDRIVE))
> + return;
> +
> + tb_switch_for_each_port(sw, port) {
> + if (!tb_port_is_dpin(port))
> + continue;
> +
> + if (port->redrive) {
> + port->redrive = false;
> + pm_runtime_put(&sw->dev);
> + tb_port_dbg(port, "exit redrive mode\n");
> + }
> + }
> +}
> +
> static void tb_dp_resource_unavailable(struct tb *tb, struct tb_port
> *port) {
> struct tb_port *in, *out;
> @@ -2066,8 +2097,17 @@ static void tb_dp_resource_available(struct tb
> *tb, struct tb_port *port) return;
> }
>
> - tb_port_dbg(port, "DP %s resource available after hotplug\n",
> - tb_port_is_dpin(port) ? "IN" : "OUT");
> + if (tb_port_is_dpin(port)) {
> + /* Verify that the resource is really available */
> + if (!tb_switch_query_dp_resource(port->sw, port)) {
> + tb_port_info(port, "got hotplug but DP IN
> resource not available\n");
> + return;
> + }
> + tb_port_dbg(port, "DP IN resource available after
> hotplug\n");
> + } else {
> + tb_port_dbg(port, "DP OUT resource available after
> hotplug\n");
> + }
> +
> list_add_tail(&port->list, &tcm->dp_resources);
> tb_exit_redrive(port);
>
> @@ -2873,6 +2913,7 @@ static int tb_start(struct tb *tb, bool reset)
> tb_create_usb3_tunnels(tb->root_switch);
> /* Add DP IN resources for the root switch */
> tb_add_dp_resources(tb->root_switch);
> + tb_switch_enter_redrive(tb->root_switch);
> /* Make the discovered switches available to the userspace */
> device_for_each_child(&tb->root_switch->dev, NULL,
> tb_scan_finalize_switch);
> @@ -2888,6 +2929,7 @@ static int tb_suspend_noirq(struct tb *tb)
>
> tb_dbg(tb, "suspending...\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; /* signal tb_handle_hotplug to
> quit */ tb_dbg(tb, "suspend finished\n");
> @@ -2980,6 +3022,7 @@ static int tb_resume_noirq(struct tb *tb)
> tb_dbg(tb, "tunnels restarted, sleeping for
> 100ms\n"); msleep(100);
> }
> + tb_switch_enter_redrive(tb->root_switch);
> /* Allow tb_handle_hotplug to progress events */
> tcm->hotplug_active = true;
> tb_dbg(tb, "resume finished\n");
> @@ -3043,6 +3086,8 @@ static int tb_runtime_suspend(struct tb *tb)
> struct tb_cm *tcm = tb_priv(tb);
>
> mutex_lock(&tb->lock);
> + tb_disconnect_and_release_dp(tb);
> + tb_switch_exit_redrive(tb->root_switch);
> tb_switch_suspend(tb->root_switch, true);
> tcm->hotplug_active = false;
> mutex_unlock(&tb->lock);
> @@ -3074,6 +3119,7 @@ static int tb_runtime_resume(struct tb *tb)
> tb_restore_children(tb->root_switch);
> list_for_each_entry_safe(tunnel, n, &tcm->tunnel_list, list)
> tb_tunnel_restart(tunnel);
> + tb_switch_enter_redrive(tb->root_switch);
> tcm->hotplug_active = true;
> mutex_unlock(&tb->lock);
>
> diff --git a/drivers/thunderbolt/tb.h b/drivers/thunderbolt/tb.h
> index b47f7873c847..a5d32cfe1db1 100644
> --- a/drivers/thunderbolt/tb.h
> +++ b/drivers/thunderbolt/tb.h
> @@ -1427,6 +1427,7 @@ static inline bool
> usb4_port_device_is_offline(const struct usb4_port *usb4) return
> usb4->offline; }
>
> +void tb_check_drom_quirks(struct tb_switch *sw);
> void tb_check_quirks(struct tb_switch *sw);
>
> #ifdef CONFIG_ACPI
Thanks! We have tested the 6.11.5 kernel with this patch. Here's the
report from our testing team. dmesg logs are attached.
-----
1. Created 2024-11-01_6.11.5_tbt-barlow-ridge-01.dmesg,
2024-11-01_6.11.5_tbt-barlow-ridge-02.dmesg.
Version 01 is with nouveau. Version 02 is with Nivida (rebuilt); could
NOT build keyboard module (complained did not support 6.11 kernel).
2. In both cases, hot-plug does not wake display. However, after lspci
-k, displays wake and are reliable.
* Boot the system up, nothing connected.
* Wait for Barlow Ridge to enter runtime suspend. This takes ~15
seconds so waiting for > 15 seconds should be enough.
* Plug in USB-C monitor to the USB-C port of the Barlow Ridge.
Screen shows in log, screen wakes, but then no signal is received, and
no image ever appears. Screen then sleeps after its timeout.
* Run lspci -k to wake up the monitors. Once this is run, the display
shows correctly and is stable. Adding another USB-C display after this
also works correctly: It is recognized and lights up in seconds to
show the desktop background, and remains stable.
Notice that pre-6.5 kernels work fine with Barlow Ridge, which implies
that new code is causing this. It may be new support code for tbt
capability (and therefore pretty much required). But regardless, it's
still new code. With the current patch, we can run a udev rule that
enables hot plugging that likely always work, or (worst case) at least
empowers the customer to refresh monitors by clicking a button.
-----
To my awareness, we have not yet reported the "device links to tunneled
native ports are missing" error to the hardware manufacturer. I'll see
if we can get that reported. Thanks for the heads-up!
[-- Attachment #2: 2024-11-01_6.11.5_tbt-barlow-ridge-01-dmesg.txt --]
[-- Type: text/plain, Size: 128091 bytes --]
[ 0.000000] Linux version 6.11.5 (qa@qa-m2) (gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #1 SMP PREEMPT_DYNAMIC Fri Nov 1 08:59:18 PDT 2024
[ 0.000000] Command line: BOOT_IMAGE=/@boot/vmlinuz-6.11.5 root=UUID=aa8cb093-9cb3-4cc7-b44e-4bff76ca37fb ro rootflags=subvol=@ quiet cryptdevice=UUID=1a8d8cdb-8d8f-4689-b744-8f32d2067f56:luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 root=/dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 splash thunderbolt.dyndbg=+p vt.handoff=7
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Hygon HygonGenuine
[ 0.000000] Centaur CentaurHauls
[ 0.000000] zhaoxin Shanghai
[ 0.000000] x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000030228fff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000030229000-0x0000000030b28fff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000030b29000-0x000000003293efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000003293f000-0x00000000349defff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000349df000-0x000000003798efff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000003798f000-0x0000000037afefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x0000000037aff000-0x0000000037afffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000037b00000-0x000000003bffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000003c800000-0x000000003cbfffff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000003ce00000-0x000000003fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000008bfffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] e820: update [mem 0x2b925018-0x2b949e57] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000002b925017] usable
[ 0.000000] reserve setup_data: [mem 0x000000002b925018-0x000000002b949e57] usable
[ 0.000000] reserve setup_data: [mem 0x000000002b949e58-0x0000000030228fff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000030229000-0x0000000030b28fff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000030b29000-0x000000003293efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000003293f000-0x00000000349defff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000349df000-0x000000003798efff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x000000003798f000-0x0000000037afefff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x0000000037aff000-0x0000000037afffff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000037b00000-0x000000003bffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000003c800000-0x000000003cbfffff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000003ce00000-0x000000003fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x00000008bfffffff] usable
[ 0.000000] efi: EFI v2.8 by INSYDE Corp.
[ 0.000000] efi: ACPI=0x37afe000 ACPI 2.0=0x37afe014 TPMFinalLog=0x37866000 SMBIOS=0x32fda000 MEMATTR=0x2ba43518 ESRT=0x2ca20798 MOKvar=0x32f86000 INITRD=0x2bd96398 RNG=0x37a24018 TPMEventLog=0x37a18018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem88: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0xc0000000-0xcfffffff] reserved
[ 0.000000] efi: Remove mem90: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] SMBIOS 3.4 present.
[ 0.000000] DMI: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 0.000000] DMI: Memory slots populated: 2/2
[ 0.000000] tsc: Detected 2400.000 MHz processor
[ 0.000000] tsc: Detected 2419.200 MHz TSC
[ 0.000009] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000013] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000028] last_pfn = 0x8c0000 max_arch_pfn = 0x400000000
[ 0.000034] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
[ 0.000036] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000750] last_pfn = 0x37b00 max_arch_pfn = 0x400000000
[ 0.010260] esrt: Reserving ESRT space from 0x000000002ca20798 to 0x000000002ca20820.
[ 0.010269] e820: update [mem 0x2ca20000-0x2ca20fff] usable ==> reserved
[ 0.010294] Using GB pages for direct mapping
[ 0.010296] Incomplete global flushes, disabling PCID
[ 0.010701] Secure boot disabled
[ 0.010702] RAMDISK: [mem 0x1af63000-0x1f87afff]
[ 0.011316] ACPI: Early table checksum verification disabled
[ 0.011321] ACPI: RSDP 0x0000000037AFE014 000024 (v02 INSYDE)
[ 0.011328] ACPI: XSDT 0x0000000037A38188 00012C (v01 INSYDE ADL 00000002 01000013)
[ 0.011336] ACPI: FACP 0x0000000037ADB000 000114 (v06 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011344] ACPI: DSDT 0x0000000037A4E000 089652 (v02 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011348] ACPI: FACS 0x000000003783E000 000040
[ 0.011352] ACPI: UEFI 0x000000003798E000 0001CF (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
[ 0.011356] ACPI: SSDT 0x0000000037AF3000 00908F (v02 DptfTb DptfTabl 00001000 INTL 20200717)
[ 0.011360] ACPI: SSDT 0x0000000037AED000 005D34 (v02 CpuRef CpuSsdt 00003000 INTL 20200717)
[ 0.011364] ACPI: SSDT 0x0000000037AEA000 00276F (v02 SaSsdt SaSsdt 00003000 INTL 20200717)
[ 0.011367] ACPI: SSDT 0x0000000037AE6000 00328B (v02 INTEL IgfxSsdt 00003000 INTL 20200717)
[ 0.011371] ACPI: SSDT 0x0000000037AE5000 00077B (v02 INSYDE Tpm2Tabl 00001000 INTL 20200717)
[ 0.011375] ACPI: TPM2 0x0000000037AE4000 00004C (v04 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011378] ACPI: SSDT 0x0000000037ADF000 003249 (v02 INTEL DTbtSsdt 00001000 INTL 20200717)
[ 0.011382] ACPI: SSDT 0x0000000037ADD000 0016A6 (v02 INSYDE UsbCTabl 00001000 INTL 20200717)
[ 0.011386] ACPI: NHLT 0x0000000037ADC000 00002D (v00 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011389] ACPI: HPET 0x0000000037ADA000 000038 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011393] ACPI: APIC 0x0000000037AD9000 0001DC (v05 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011396] ACPI: MCFG 0x0000000037AD8000 00003C (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011400] ACPI: SSDT 0x0000000037A48000 0054E4 (v02 INSYDE ADL 00000002 01000013)
[ 0.011404] ACPI: WSMT 0x0000000037A47000 000028 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011408] ACPI: SSDT 0x0000000037A45000 0015FD (v02 INSYDE PtidDevc 00001000 INTL 20200717)
[ 0.011411] ACPI: SSDT 0x0000000037A3B000 009573 (v02 INSYDE TbtTypeC 00000000 INTL 20200717)
[ 0.011415] ACPI: DBGP 0x0000000037A3A000 000034 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011418] ACPI: DBG2 0x0000000037A39000 000054 (v00 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011422] ACPI: DMAR 0x0000000037AFD000 000050 (v01 INTEL ICL 00000002 ACPI 00040000)
[ 0.011427] ACPI: SSDT 0x0000000037A35000 002EE7 (v01 NvdRef NvdTabl 00001000 INTL 20200717)
[ 0.011431] ACPI: SSDT 0x0000000037A34000 00020D (v01 NvdRef NvdDiscr 00001000 INTL 20200717)
[ 0.011435] ACPI: SSDT 0x0000000037A33000 00064F (v01 NvdRef NvDisDds 00001000 INTL 20200717)
[ 0.011438] ACPI: UEFI 0x000000003783B000 00063A (v01 INTEL RstVmdE 00000000 ACPI 00040000)
[ 0.011442] ACPI: UEFI 0x000000003783A000 00005C (v01 INTEL RstVmdV 00000000 ACPI 00040000)
[ 0.011446] ACPI: SSDT 0x0000000037A31000 001057 (v02 INTEL xh_rplsb 00000000 INTL 20200717)
[ 0.011450] ACPI: SSDT 0x0000000037A2D000 0039DA (v02 SocGpe SocGpe 00003000 INTL 20200717)
[ 0.011453] ACPI: SSDT 0x0000000037A29000 0039DA (v02 SocCmn SocCmn 00003000 INTL 20200717)
[ 0.011457] ACPI: SSDT 0x0000000037A28000 0000F8 (v02 INSYDE PcdTabl 00001000 INTL 20200717)
[ 0.011461] ACPI: FPDT 0x0000000037A27000 000044 (v01 INSYDE ADL 00000002 ACPI 00040000)
[ 0.011464] ACPI: PHAT 0x0000000037A25000 0005ED (v01 INSYDE ADL 00000005 ACPI 00040000)
[ 0.011468] ACPI: BGRT 0x0000000037A26000 000038 (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
[ 0.011471] ACPI: Reserving FACP table memory at [mem 0x37adb000-0x37adb113]
[ 0.011473] ACPI: Reserving DSDT table memory at [mem 0x37a4e000-0x37ad7651]
[ 0.011474] ACPI: Reserving FACS table memory at [mem 0x3783e000-0x3783e03f]
[ 0.011475] ACPI: Reserving UEFI table memory at [mem 0x3798e000-0x3798e1ce]
[ 0.011476] ACPI: Reserving SSDT table memory at [mem 0x37af3000-0x37afc08e]
[ 0.011477] ACPI: Reserving SSDT table memory at [mem 0x37aed000-0x37af2d33]
[ 0.011478] ACPI: Reserving SSDT table memory at [mem 0x37aea000-0x37aec76e]
[ 0.011479] ACPI: Reserving SSDT table memory at [mem 0x37ae6000-0x37ae928a]
[ 0.011480] ACPI: Reserving SSDT table memory at [mem 0x37ae5000-0x37ae577a]
[ 0.011481] ACPI: Reserving TPM2 table memory at [mem 0x37ae4000-0x37ae404b]
[ 0.011482] ACPI: Reserving SSDT table memory at [mem 0x37adf000-0x37ae2248]
[ 0.011483] ACPI: Reserving SSDT table memory at [mem 0x37add000-0x37ade6a5]
[ 0.011484] ACPI: Reserving NHLT table memory at [mem 0x37adc000-0x37adc02c]
[ 0.011485] ACPI: Reserving HPET table memory at [mem 0x37ada000-0x37ada037]
[ 0.011486] ACPI: Reserving APIC table memory at [mem 0x37ad9000-0x37ad91db]
[ 0.011487] ACPI: Reserving MCFG table memory at [mem 0x37ad8000-0x37ad803b]
[ 0.011488] ACPI: Reserving SSDT table memory at [mem 0x37a48000-0x37a4d4e3]
[ 0.011489] ACPI: Reserving WSMT table memory at [mem 0x37a47000-0x37a47027]
[ 0.011490] ACPI: Reserving SSDT table memory at [mem 0x37a45000-0x37a465fc]
[ 0.011491] ACPI: Reserving SSDT table memory at [mem 0x37a3b000-0x37a44572]
[ 0.011492] ACPI: Reserving DBGP table memory at [mem 0x37a3a000-0x37a3a033]
[ 0.011493] ACPI: Reserving DBG2 table memory at [mem 0x37a39000-0x37a39053]
[ 0.011494] ACPI: Reserving DMAR table memory at [mem 0x37afd000-0x37afd04f]
[ 0.011495] ACPI: Reserving SSDT table memory at [mem 0x37a35000-0x37a37ee6]
[ 0.011496] ACPI: Reserving SSDT table memory at [mem 0x37a34000-0x37a3420c]
[ 0.011497] ACPI: Reserving SSDT table memory at [mem 0x37a33000-0x37a3364e]
[ 0.011497] ACPI: Reserving UEFI table memory at [mem 0x3783b000-0x3783b639]
[ 0.011498] ACPI: Reserving UEFI table memory at [mem 0x3783a000-0x3783a05b]
[ 0.011499] ACPI: Reserving SSDT table memory at [mem 0x37a31000-0x37a32056]
[ 0.011501] ACPI: Reserving SSDT table memory at [mem 0x37a2d000-0x37a309d9]
[ 0.011502] ACPI: Reserving SSDT table memory at [mem 0x37a29000-0x37a2c9d9]
[ 0.011502] ACPI: Reserving SSDT table memory at [mem 0x37a28000-0x37a280f7]
[ 0.011503] ACPI: Reserving FPDT table memory at [mem 0x37a27000-0x37a27043]
[ 0.011504] ACPI: Reserving PHAT table memory at [mem 0x37a25000-0x37a255ec]
[ 0.011505] ACPI: Reserving BGRT table memory at [mem 0x37a26000-0x37a26037]
[ 0.011760] No NUMA configuration found
[ 0.011762] Faking a node at [mem 0x0000000000000000-0x00000008bfffffff]
[ 0.011770] NODE_DATA(0) allocated [mem 0x8bffd5000-0x8bfffffff]
[ 0.012024] Zone ranges:
[ 0.012025] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.012028] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.012030] Normal [mem 0x0000000100000000-0x00000008bfffffff]
[ 0.012032] Device empty
[ 0.012033] Movable zone start for each node
[ 0.012035] Early memory node ranges
[ 0.012036] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.012038] node 0: [mem 0x0000000000100000-0x0000000030228fff]
[ 0.012039] node 0: [mem 0x0000000030b29000-0x000000003293efff]
[ 0.012040] node 0: [mem 0x0000000037aff000-0x0000000037afffff]
[ 0.012041] node 0: [mem 0x0000000100000000-0x00000008bfffffff]
[ 0.012045] Initmem setup node 0 [mem 0x0000000000001000-0x00000008bfffffff]
[ 0.012052] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.012084] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.013522] On node 0, zone DMA32: 2304 pages in unavailable ranges
[ 0.013711] On node 0, zone DMA32: 20928 pages in unavailable ranges
[ 0.056442] On node 0, zone Normal: 1280 pages in unavailable ranges
[ 0.057134] ACPI: PM-Timer IO Port: 0x1808
[ 0.057146] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.057148] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.057149] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.057150] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.057151] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.057152] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.057152] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.057153] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.057154] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[ 0.057155] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[ 0.057156] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[ 0.057156] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[ 0.057157] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[ 0.057158] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[ 0.057159] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[ 0.057160] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[ 0.057160] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[ 0.057161] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[ 0.057162] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[ 0.057163] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[ 0.057164] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[ 0.057164] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[ 0.057165] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[ 0.057166] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.057206] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.057209] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.057211] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.057215] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.057216] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.057224] e820: update [mem 0x2b43a000-0x2b4f4fff] usable ==> reserved
[ 0.057237] TSC deadline timer available
[ 0.057240] CPU topo: Max. logical packages: 1
[ 0.057241] CPU topo: Max. logical dies: 1
[ 0.057242] CPU topo: Max. dies per package: 1
[ 0.057245] CPU topo: Max. threads per core: 2
[ 0.057246] CPU topo: Num. cores per package: 24
[ 0.057247] CPU topo: Num. threads per package: 32
[ 0.057248] CPU topo: Allowing 32 present CPUs plus 0 hotplug CPUs
[ 0.057265] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.057267] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[ 0.057269] PM: hibernation: Registered nosave memory: [mem 0x2b43a000-0x2b4f4fff]
[ 0.057270] PM: hibernation: Registered nosave memory: [mem 0x2b925000-0x2b925fff]
[ 0.057272] PM: hibernation: Registered nosave memory: [mem 0x2b949000-0x2b949fff]
[ 0.057274] PM: hibernation: Registered nosave memory: [mem 0x2ca20000-0x2ca20fff]
[ 0.057275] PM: hibernation: Registered nosave memory: [mem 0x30229000-0x30b28fff]
[ 0.057277] PM: hibernation: Registered nosave memory: [mem 0x3293f000-0x349defff]
[ 0.057278] PM: hibernation: Registered nosave memory: [mem 0x349df000-0x3798efff]
[ 0.057278] PM: hibernation: Registered nosave memory: [mem 0x3798f000-0x37afefff]
[ 0.057280] PM: hibernation: Registered nosave memory: [mem 0x37b00000-0x3bffffff]
[ 0.057281] PM: hibernation: Registered nosave memory: [mem 0x3c000000-0x3c7fffff]
[ 0.057282] PM: hibernation: Registered nosave memory: [mem 0x3c800000-0x3cbfffff]
[ 0.057282] PM: hibernation: Registered nosave memory: [mem 0x3cc00000-0x3cdfffff]
[ 0.057283] PM: hibernation: Registered nosave memory: [mem 0x3ce00000-0x3fffffff]
[ 0.057284] PM: hibernation: Registered nosave memory: [mem 0x40000000-0xfed1ffff]
[ 0.057284] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
[ 0.057285] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xffffffff]
[ 0.057287] [mem 0x40000000-0xfed1ffff] available for PCI devices
[ 0.057288] Booting paravirtualized kernel on bare hardware
[ 0.057291] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.057299] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1
[ 0.059115] percpu: Embedded 88 pages/cpu s237568 r8192 d114688 u524288
[ 0.059122] pcpu-alloc: s237568 r8192 d114688 u524288 alloc=1*2097152
[ 0.059125] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07
[ 0.059131] pcpu-alloc: [0] 08 09 10 11 [0] 12 13 14 15
[ 0.059136] pcpu-alloc: [0] 16 17 18 19 [0] 20 21 22 23
[ 0.059141] pcpu-alloc: [0] 24 25 26 27 [0] 28 29 30 31
[ 0.059168] Kernel command line: BOOT_IMAGE=/@boot/vmlinuz-6.11.5 root=UUID=aa8cb093-9cb3-4cc7-b44e-4bff76ca37fb ro rootflags=subvol=@ quiet cryptdevice=UUID=1a8d8cdb-8d8f-4689-b744-8f32d2067f56:luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 root=/dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 splash thunderbolt.dyndbg=+p vt.handoff=7
[ 0.059269] Unknown kernel command line parameters "splash BOOT_IMAGE=/@boot/vmlinuz-6.11.5 cryptdevice=UUID=1a8d8cdb-8d8f-4689-b744-8f32d2067f56:luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56", will be passed to user space.
[ 0.061881] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[ 0.063186] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.063608] Fallback order for Node 0: 0
[ 0.063613] Built 1 zonelists, mobility grouping on. Total pages: 8331230
[ 0.063614] Policy zone: Normal
[ 0.063625] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.063632] software IO TLB: area num 32.
[ 0.134622] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[ 0.134702] ftrace: allocating 55948 entries in 219 pages
[ 0.144662] ftrace: allocated 219 pages with 6 groups
[ 0.145484] Dynamic Preempt: voluntary
[ 0.145675] rcu: Preemptible hierarchical RCU implementation.
[ 0.145676] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=32.
[ 0.145678] Trampoline variant of Tasks RCU enabled.
[ 0.145678] Rude variant of Tasks RCU enabled.
[ 0.145679] Tracing variant of Tasks RCU enabled.
[ 0.145680] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[ 0.145681] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[ 0.145705] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
[ 0.145708] RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
[ 0.145711] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
[ 0.148658] NR_IRQS: 524544, nr_irqs: 2312, preallocated irqs: 16
[ 0.149018] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.149289] Console: colour dummy device 80x25
[ 0.149292] printk: legacy console [tty0] enabled
[ 0.149357] ACPI: Core revision 20240322
[ 0.149849] hpet: HPET dysfunctional in PC10. Force disabled.
[ 0.149850] APIC: Switch to symmetric I/O mode setup
[ 0.149853] DMAR: Host address width 39
[ 0.149854] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.149865] DMAR: dmar0: reg_base_addr fed91000 ver 5:0 cap d2008c40660462 ecap f050da
[ 0.149869] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 0
[ 0.149871] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.149872] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.151597] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.151599] x2apic enabled
[ 0.151667] APIC: Switched APIC routing to: cluster x2apic
[ 0.156427] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
[ 0.156435] Calibrating delay loop (skipped), value calculated using timer frequency.. 4838.40 BogoMIPS (lpj=2419200)
[ 0.156504] CPU0: Thermal monitoring enabled (TM1)
[ 0.156507] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[ 0.156671] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[ 0.156673] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[ 0.156676] process: using mwait in idle threads
[ 0.156679] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.156683] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[ 0.156684] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.156684] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[ 0.156686] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.156689] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.156690] Register File Data Sampling: Mitigation: Clear Register File
[ 0.156702] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.156703] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.156704] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.156705] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[ 0.156706] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[ 0.156707] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.156709] x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8
[ 0.156710] x86/fpu: xstate_offset[11]: 840, xstate_sizes[11]: 16
[ 0.156712] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[ 0.157432] Freeing SMP alternatives memory: 48K
[ 0.157432] pid_max: default: 32768 minimum: 301
[ 0.157432] LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,ima,evm
[ 0.157432] landlock: Up and running.
[ 0.157432] Yama: becoming mindful.
[ 0.157432] AppArmor: AppArmor initialized
[ 0.157432] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.157432] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.157432] smpboot: CPU0: Intel(R) Core(TM) i9-14900HX (family: 0x6, model: 0xb7, stepping: 0x1)
[ 0.157432] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline, AnyThread deprecated, Alderlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.157432] core: cpu_core PMU driver:
[ 0.157432] ... version: 5
[ 0.157432] ... bit width: 48
[ 0.157432] ... generic registers: 8
[ 0.157432] ... value mask: 0000ffffffffffff
[ 0.157432] ... max period: 00007fffffffffff
[ 0.157432] ... fixed-purpose events: 4
[ 0.157432] ... event mask: 0001000f000000ff
[ 0.157432] signal: max sigframe size: 3632
[ 0.157432] Estimated ratio of average max frequency by base frequency (times 1024): 2218
[ 0.157432] rcu: Hierarchical SRCU implementation.
[ 0.157432] rcu: Max phase no-delay instances is 400.
[ 0.157432] Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
[ 0.159215] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.159494] smp: Bringing up secondary CPUs ...
[ 0.159593] smpboot: x86: Booting SMP configuration:
[ 0.159594] .... node #0, CPUs: #2 #4 #6 #8 #10 #12 #14 #16 #17 #18 #19 #20 #21 #22 #23 #24 #25 #26 #27 #28 #29 #30 #31
[ 0.008231] core: cpu_atom PMU driver: PEBS-via-PT
[ 0.008231] ... version: 5
[ 0.008231] ... bit width: 48
[ 0.008231] ... generic registers: 6
[ 0.008231] ... value mask: 0000ffffffffffff
[ 0.008231] ... max period: 00007fffffffffff
[ 0.008231] ... fixed-purpose events: 3
[ 0.008231] ... event mask: 000000070000003f
[ 0.173568] #1 #3 #5 #7 #9 #11 #13 #15
[ 0.182518] smp: Brought up 1 node, 32 CPUs
[ 0.182518] smpboot: Total of 32 processors activated (154828.80 BogoMIPS)
[ 0.183818] Memory: 32501348K/33324920K available (22528K kernel code, 4519K rwdata, 13792K rodata, 4996K init, 4628K bss, 777092K reserved, 0K cma-reserved)
[ 0.184933] devtmpfs: initialized
[ 0.184933] x86/mm: Memory block size: 128MB
[ 0.188210] ACPI: PM: Registering ACPI NVS region [mem 0x349df000-0x3798efff] (50003968 bytes)
[ 0.188754] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.188806] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[ 0.188931] pinctrl core: initialized pinctrl subsystem
[ 0.189171] PM: RTC time: 17:25:25, date: 2024-11-01
[ 0.189764] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.190289] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[ 0.190716] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.191105] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.191116] audit: initializing netlink subsys (disabled)
[ 0.191124] audit: type=2000 audit(1730481925.034:1): state=initialized audit_enabled=0 res=1
[ 0.191124] thermal_sys: Registered thermal governor 'fair_share'
[ 0.191124] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.191124] thermal_sys: Registered thermal governor 'step_wise'
[ 0.191124] thermal_sys: Registered thermal governor 'user_space'
[ 0.191124] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.191124] EISA bus registered
[ 0.191124] cpuidle: using governor ladder
[ 0.191124] cpuidle: using governor menu
[ 0.191459] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.191591] PCI: ECAM [mem 0xc0000000-0xce0fffff] (base 0xc0000000) for domain 0000 [bus 00-e0]
[ 0.191607] PCI: Using configuration type 1 for base access
[ 0.191751] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.191756] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.191756] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.191756] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.191756] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.192648] ACPI: Added _OSI(Module Device)
[ 0.192648] ACPI: Added _OSI(Processor Device)
[ 0.192648] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.192648] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.335567] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.MHBR], AE_NOT_FOUND (20240322/psargs-332)
[ 0.335585] ACPI: Ignoring error and continuing table load
[ 0.335609] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PTID.PBAR], AE_NOT_FOUND (20240322/dsfield-500)
[ 0.343727] ACPI: 18 ACPI AML tables successfully acquired and loaded
[ 0.363305] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
[ 0.363308] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
[ 0.365237] ACPI: Dynamic OEM Table Load:
[ 0.365251] ACPI: SSDT 0xFFFF9500C1FC5800 000394 (v02 PmRef Cpu0Cst 00003001 INTL 20200717)
[ 0.367157] ACPI: Dynamic OEM Table Load:
[ 0.367165] ACPI: SSDT 0xFFFF9500C4020000 00053F (v02 PmRef Cpu0Ist 00003000 INTL 20200717)
[ 0.369062] ACPI: Dynamic OEM Table Load:
[ 0.369069] ACPI: SSDT 0xFFFF9500C405B400 0001AB (v02 PmRef Cpu0Psd 00003000 INTL 20200717)
[ 0.370855] ACPI: Dynamic OEM Table Load:
[ 0.370861] ACPI: SSDT 0xFFFF9500C4026000 0004B5 (v02 PmRef Cpu0Hwp 00003000 INTL 20200717)
[ 0.373248] ACPI: Dynamic OEM Table Load:
[ 0.373267] ACPI: SSDT 0xFFFF9500C402A000 001BAF (v02 PmRef ApIst 00003000 INTL 20200717)
[ 0.376049] ACPI: Dynamic OEM Table Load:
[ 0.376058] ACPI: SSDT 0xFFFF9500C4028000 001038 (v02 PmRef ApHwp 00003000 INTL 20200717)
[ 0.378545] ACPI: Dynamic OEM Table Load:
[ 0.378553] ACPI: SSDT 0xFFFF9500C402C000 001349 (v02 PmRef ApPsd 00003000 INTL 20200717)
[ 0.381109] ACPI: Dynamic OEM Table Load:
[ 0.381117] ACPI: SSDT 0xFFFF9500C403D000 000FBB (v02 PmRef ApCst 00003000 INTL 20200717)
[ 0.400970] ACPI: EC: EC started
[ 0.400972] ACPI: EC: interrupt blocked
[ 0.420095] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.420098] ACPI: \_SB_.PC00.LPCB.EC__: Boot DSDT EC used to handle transactions
[ 0.420100] ACPI: Interpreter enabled
[ 0.420193] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.420194] ACPI: Using IOAPIC for interrupt routing
[ 0.422627] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.422629] PCI: Ignoring E820 reservations for host bridge windows
[ 0.424465] ACPI: Enabled 11 GPEs in block 00 to 7F
[ 0.426949] ACPI: \_SB_.PC00.PEG2.PG00: New power resource
[ 0.452248] ACPI: \_SB_.PC00.XHCI.RHUB.HS14.BTRT: New power resource
[ 0.452274] ACPI: \_SB_.PC00.XHCI.RHUB.HS14.DBTR: New power resource
[ 0.462607] ACPI: \_SB_.PC00.CNVW.WRST: New power resource
[ 0.468421] ACPI: \_SB_.PC00.RP09.PXP_: New power resource
[ 0.495411] ACPI: \PIN_: New power resource
[ 0.496297] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
[ 0.496305] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.500181] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[ 0.506396] PCI host bridge to bus 0000:00
[ 0.506399] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.506402] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.506404] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.506406] pci_bus 0000:00: root bus resource [mem 0x40000000-0xbfffffff window]
[ 0.506407] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[ 0.506409] pci_bus 0000:00: root bus resource [bus 00-e0]
[ 0.506454] pci 0000:00:00.0: [8086:a702] type 00 class 0x060000 conventional PCI endpoint
[ 0.506596] pci 0000:00:01.0: [8086:a70d] type 01 class 0x060400 PCIe Root Port
[ 0.506614] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.506678] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.506704] pci 0000:00:01.0: PTM enabled (root), 4ns granularity
[ 0.507515] pci 0000:00:01.1: [8086:a72d] type 01 class 0x060400 PCIe Root Port
[ 0.507533] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 0.507536] pci 0000:00:01.1: bridge window [io 0x3000-0x3fff]
[ 0.507539] pci 0000:00:01.1: bridge window [mem 0x4a000000-0x4b0fffff]
[ 0.507545] pci 0000:00:01.1: bridge window [mem 0x4000000000-0x4401ffffff 64bit pref]
[ 0.507597] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[ 0.507621] pci 0000:00:01.1: PTM enabled (root), 4ns granularity
[ 0.508396] pci 0000:00:04.0: [8086:a71d] type 00 class 0x118000 conventional PCI endpoint
[ 0.508413] pci 0000:00:04.0: BAR 0 [mem 0x4404200000-0x440421ffff 64bit]
[ 0.508781] pci 0000:00:08.0: [8086:a74f] type 00 class 0x088000 conventional PCI endpoint
[ 0.508792] pci 0000:00:08.0: BAR 0 [mem 0x4404241000-0x4404241fff 64bit]
[ 0.508904] pci 0000:00:0a.0: [8086:a77d] type 00 class 0x118000 PCIe Root Complex Integrated Endpoint
[ 0.508912] pci 0000:00:0a.0: BAR 0 [mem 0x4404220000-0x4404227fff 64bit]
[ 0.508932] pci 0000:00:0a.0: enabling Extended Tags
[ 0.509045] pci 0000:00:0e.0: [8086:a77f] type 00 class 0x010400 PCIe Root Complex Integrated Endpoint
[ 0.509060] pci 0000:00:0e.0: BAR 0 [mem 0x4402000000-0x4403ffffff 64bit]
[ 0.509067] pci 0000:00:0e.0: BAR 2 [mem 0x48000000-0x49ffffff]
[ 0.509083] pci 0000:00:0e.0: BAR 4 [mem 0x4404100000-0x44041fffff 64bit]
[ 0.509413] pci 0000:00:14.0: [8086:7a60] type 00 class 0x0c0330 conventional PCI endpoint
[ 0.509434] pci 0000:00:14.0: BAR 0 [mem 0x4b380000-0x4b38ffff 64bit]
[ 0.509519] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.510139] pci 0000:00:14.2: [8086:7a27] type 00 class 0x050000 conventional PCI endpoint
[ 0.510164] pci 0000:00:14.2: BAR 0 [mem 0x4404238000-0x440423bfff 64bit]
[ 0.510181] pci 0000:00:14.2: BAR 2 [mem 0x4404240000-0x4404240fff 64bit]
[ 0.510337] pci 0000:00:14.3: [8086:7a70] type 00 class 0x028000 PCIe Root Complex Integrated Endpoint
[ 0.510384] pci 0000:00:14.3: BAR 0 [mem 0x4404234000-0x4404237fff 64bit]
[ 0.510575] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
[ 0.510999] pci 0000:00:15.0: [8086:7a4c] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.511074] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.511647] pci 0000:00:15.1: [8086:7a4d] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.511714] pci 0000:00:15.1: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.512230] pci 0000:00:16.0: [8086:7a68] type 00 class 0x078000 conventional PCI endpoint
[ 0.512254] pci 0000:00:16.0: BAR 0 [mem 0x440423d000-0x440423dfff 64bit]
[ 0.512338] pci 0000:00:16.0: PME# supported from D3hot
[ 0.512931] pci 0000:00:1c.0: [8086:7a3e] type 01 class 0x060400 PCIe Root Port
[ 0.512963] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.512970] pci 0000:00:1c.0: bridge window [mem 0x4b100000-0x4b2fffff]
[ 0.513066] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.513107] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
[ 0.513987] pci 0000:00:1d.0: [8086:7a30] type 01 class 0x060400 PCIe Root Port
[ 0.514018] pci 0000:00:1d.0: PCI bridge to [bus 04-54]
[ 0.514025] pci 0000:00:1d.0: bridge window [mem 0x40000000-0x47ffffff]
[ 0.514036] pci 0000:00:1d.0: bridge window [mem 0x4410000000-0x54100fffff 64bit pref]
[ 0.514181] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.515098] pci 0000:00:1f.0: [8086:7a0c] type 00 class 0x060100 conventional PCI endpoint
[ 0.515540] pci 0000:00:1f.3: [8086:7a50] type 00 class 0x040300 conventional PCI endpoint
[ 0.515584] pci 0000:00:1f.3: BAR 0 [mem 0x4404230000-0x4404233fff 64bit]
[ 0.515638] pci 0000:00:1f.3: BAR 4 [mem 0x4404000000-0x44040fffff 64bit]
[ 0.515747] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.515855] pci 0000:00:1f.4: [8086:7a23] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.515882] pci 0000:00:1f.4: BAR 0 [mem 0x440423c000-0x440423c0ff 64bit]
[ 0.515913] pci 0000:00:1f.4: BAR 4 [io 0xefa0-0xefbf]
[ 0.516235] pci 0000:00:1f.5: [8086:7a24] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.516255] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[ 0.516412] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.516475] pci 0000:02:00.0: [10de:27e0] type 00 class 0x030000 PCIe Legacy Endpoint
[ 0.516491] pci 0000:02:00.0: BAR 0 [mem 0x4a000000-0x4affffff]
[ 0.516505] pci 0000:02:00.0: BAR 1 [mem 0x4000000000-0x43ffffffff 64bit pref]
[ 0.516519] pci 0000:02:00.0: BAR 3 [mem 0x4400000000-0x4401ffffff 64bit pref]
[ 0.516528] pci 0000:02:00.0: BAR 5 [io 0x3000-0x307f]
[ 0.516537] pci 0000:02:00.0: ROM [mem 0xfff80000-0xffffffff pref]
[ 0.516624] pci 0000:02:00.0: PME# supported from D0 D3hot
[ 0.516748] pci 0000:02:00.0: 16.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x8 link at 0000:00:01.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.517062] pci 0000:02:00.1: [10de:22bc] type 00 class 0x040300 PCIe Endpoint
[ 0.517077] pci 0000:02:00.1: BAR 0 [mem 0x4b000000-0x4b003fff]
[ 0.517267] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 0.517405] pci 0000:03:00.0: [8086:3102] type 00 class 0x020000 PCIe Endpoint
[ 0.517430] pci 0000:03:00.0: BAR 0 [mem 0x4b100000-0x4b1fffff]
[ 0.517468] pci 0000:03:00.0: BAR 3 [mem 0x4b200000-0x4b203fff]
[ 0.517628] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[ 0.517936] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.518043] pci 0000:04:00.0: [8086:5780] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.518085] pci 0000:04:00.0: PCI bridge to [bus 05-54]
[ 0.518096] pci 0000:04:00.0: bridge window [mem 0x40000000-0x47efffff]
[ 0.518110] pci 0000:04:00.0: bridge window [mem 0x4410000000-0x54100fffff 64bit pref]
[ 0.518127] pci 0000:04:00.0: enabling Extended Tags
[ 0.518265] pci 0000:04:00.0: supports D1 D2
[ 0.518266] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.518672] pci 0000:00:1d.0: PCI bridge to [bus 04-54]
[ 0.518798] pci 0000:05:00.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.518839] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.518863] pci 0000:05:00.0: bridge window [mem 0x5410000000-0x54100fffff 64bit pref]
[ 0.518881] pci 0000:05:00.0: enabling Extended Tags
[ 0.519010] pci 0000:05:00.0: supports D1 D2
[ 0.519011] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.519341] pci 0000:05:01.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.519382] pci 0000:05:01.0: PCI bridge to [bus 07-2c]
[ 0.519393] pci 0000:05:01.0: bridge window [mem 0x44000000-0x47efffff]
[ 0.519424] pci 0000:05:01.0: enabling Extended Tags
[ 0.519562] pci 0000:05:01.0: supports D1 D2
[ 0.519564] pci 0000:05:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.519882] pci 0000:05:02.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.519924] pci 0000:05:02.0: PCI bridge to [bus 2d]
[ 0.519935] pci 0000:05:02.0: bridge window [mem 0x43f00000-0x43ffffff]
[ 0.519965] pci 0000:05:02.0: enabling Extended Tags
[ 0.520094] pci 0000:05:02.0: supports D1 D2
[ 0.520095] pci 0000:05:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.520416] pci 0000:05:03.0: [8086:5780] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.520457] pci 0000:05:03.0: PCI bridge to [bus 2e-54]
[ 0.520468] pci 0000:05:03.0: bridge window [mem 0x40000000-0x43efffff]
[ 0.520499] pci 0000:05:03.0: enabling Extended Tags
[ 0.520637] pci 0000:05:03.0: supports D1 D2
[ 0.520638] pci 0000:05:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.520968] pci 0000:04:00.0: PCI bridge to [bus 05-54]
[ 0.521086] pci 0000:06:00.0: [8086:5781] type 00 class 0x0c0340 PCIe Endpoint
[ 0.521113] pci 0000:06:00.0: BAR 0 [mem 0x5410000000-0x541003ffff 64bit pref]
[ 0.521131] pci 0000:06:00.0: BAR 2 [mem 0x5410040000-0x5410040fff 64bit pref]
[ 0.521173] pci 0000:06:00.0: enabling Extended Tags
[ 0.521289] pci 0000:06:00.0: supports D1 D2
[ 0.521290] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.521565] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.521627] pci 0000:05:01.0: PCI bridge to [bus 07-2c]
[ 0.521736] pci 0000:2d:00.0: [8086:5782] type 00 class 0x0c0330 PCIe Endpoint
[ 0.521760] pci 0000:2d:00.0: BAR 0 [mem 0x43f00000-0x43f0ffff 64bit]
[ 0.521809] pci 0000:2d:00.0: enabling Extended Tags
[ 0.521893] pci 0000:2d:00.0: PME# supported from D3hot D3cold
[ 0.521931] pci 0000:2d:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x4 link at 0000:05:02.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[ 0.522075] pci 0000:05:02.0: PCI bridge to [bus 2d]
[ 0.522149] pci 0000:05:03.0: PCI bridge to [bus 2e-54]
[ 0.548935] ACPI: EC: interrupt unblocked
[ 0.548936] ACPI: EC: event unblocked
[ 0.548953] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.548954] ACPI: EC: GPE=0x6e
[ 0.548955] ACPI: \_SB_.PC00.LPCB.EC__: Boot DSDT EC initialization complete
[ 0.548957] ACPI: \_SB_.PC00.LPCB.EC__: EC: Used to handle transactions and events
[ 0.549444] iommu: Default domain type: Translated
[ 0.549444] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.549657] SCSI subsystem initialized
[ 0.549673] libata version 3.00 loaded.
[ 0.549673] ACPI: bus type USB registered
[ 0.549673] usbcore: registered new interface driver usbfs
[ 0.549673] usbcore: registered new interface driver hub
[ 0.549673] usbcore: registered new device driver usb
[ 0.549673] pps_core: LinuxPPS API ver. 1 registered
[ 0.549673] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.549673] PTP clock support registered
[ 0.549673] EDAC MC: Ver: 3.0.0
[ 0.550434] efivars: Registered efivars operations
[ 0.551511] NetLabel: Initializing
[ 0.551513] NetLabel: domain hash size = 128
[ 0.551514] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.551545] NetLabel: unlabeled traffic allowed by default
[ 0.551567] mctp: management component transport protocol core
[ 0.551567] NET: Registered PF_MCTP protocol family
[ 0.551567] PCI: Using ACPI for IRQ routing
[ 0.565432] PCI: pci_cache_line_size set to 64 bytes
[ 0.566547] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
[ 0.566692] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 0.566694] e820: reserve RAM buffer [mem 0x2b43a000-0x2bffffff]
[ 0.566696] e820: reserve RAM buffer [mem 0x2b925018-0x2bffffff]
[ 0.566697] e820: reserve RAM buffer [mem 0x2ca20000-0x2fffffff]
[ 0.566698] e820: reserve RAM buffer [mem 0x30229000-0x33ffffff]
[ 0.566699] e820: reserve RAM buffer [mem 0x3293f000-0x33ffffff]
[ 0.566700] e820: reserve RAM buffer [mem 0x37b00000-0x37ffffff]
[ 0.567447] pci 0000:02:00.0: vgaarb: setting as boot VGA device
[ 0.567447] pci 0000:02:00.0: vgaarb: bridge control possible
[ 0.567447] pci 0000:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.567447] vgaarb: loaded
[ 0.567584] clocksource: Switched to clocksource tsc-early
[ 0.568014] VFS: Disk quotas dquot_6.6.0
[ 0.568027] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.568168] AppArmor: AppArmor Filesystem Enabled
[ 0.568204] pnp: PnP ACPI init
[ 0.568494] pnp 00:00: disabling [io 0x3322-0x3323] because it overlaps 0000:00:01.1 BAR 13 [io 0x3000-0x3fff]
[ 0.568723] system 00:02: [io 0x1854-0x1857] has been reserved
[ 0.584666] system 00:05: [mem 0xfedc0000-0xfedc7fff] has been reserved
[ 0.584671] system 00:05: [mem 0xfeda0000-0xfeda0fff] has been reserved
[ 0.584673] system 00:05: [mem 0xfeda1000-0xfeda1fff] has been reserved
[ 0.584675] system 00:05: [mem 0xc0000000-0xcfffffff] has been reserved
[ 0.584677] system 00:05: [mem 0xfed20000-0xfed7ffff] could not be reserved
[ 0.584679] system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 0.584681] system 00:05: [mem 0xfed45000-0xfed8ffff] could not be reserved
[ 0.584683] system 00:05: [mem 0xfee00000-0xfeefffff] has been reserved
[ 0.585143] system 00:06: [io 0x2000-0x20fe] has been reserved
[ 0.586625] pnp: PnP ACPI: found 8 devices
[ 0.592985] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.593076] NET: Registered PF_INET protocol family
[ 0.593565] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.612582] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[ 0.612625] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.612897] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.613549] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.613685] TCP: Hash tables configured (established 262144 bind 65536)
[ 0.614001] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
[ 0.614167] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[ 0.614359] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[ 0.614511] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.614519] NET: Registered PF_XDP protocol family
[ 0.614523] pci 0000:02:00.0: ROM [mem 0xfff80000-0xffffffff pref]: can't claim; no compatible bridge window
[ 0.614548] pci 0000:05:01.0: bridge window [io 0x1000-0x0fff] to [bus 07-2c] add_size 1000
[ 0.614552] pci 0000:05:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 07-2c] add_size 200000 add_align 100000
[ 0.614557] pci 0000:05:03.0: bridge window [io 0x1000-0x0fff] to [bus 2e-54] add_size 1000
[ 0.614559] pci 0000:05:03.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 2e-54] add_size 200000 add_align 100000
[ 0.614562] pci 0000:04:00.0: bridge window [io 0x1000-0x0fff] to [bus 05-54] add_size 2000
[ 0.614564] pci 0000:00:1d.0: bridge window [io 0x1000-0x0fff] to [bus 04-54] add_size 3000
[ 0.614573] pci 0000:00:15.0: BAR 0 [mem 0x4404228000-0x4404228fff 64bit]: assigned
[ 0.614636] pci 0000:00:15.1: BAR 0 [mem 0x4404229000-0x4404229fff 64bit]: assigned
[ 0.614693] pci 0000:00:1d.0: bridge window [io 0x4000-0x6fff]: assigned
[ 0.614695] pci 0000:00:1f.5: BAR 0 [mem 0x4b300000-0x4b300fff]: assigned
[ 0.614707] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.614715] pci 0000:02:00.0: ROM [mem 0x4b080000-0x4b0fffff pref]: assigned
[ 0.614717] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 0.614719] pci 0000:00:01.1: bridge window [io 0x3000-0x3fff]
[ 0.614722] pci 0000:00:01.1: bridge window [mem 0x4a000000-0x4b0fffff]
[ 0.614725] pci 0000:00:01.1: bridge window [mem 0x4000000000-0x4401ffffff 64bit pref]
[ 0.614730] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.614740] pci 0000:00:1c.0: bridge window [mem 0x4b100000-0x4b2fffff]
[ 0.614749] pci 0000:04:00.0: bridge window [io 0x4000-0x5fff]: assigned
[ 0.614752] pci 0000:05:01.0: bridge window [mem 0x4410000000-0x44101fffff 64bit pref]: assigned
[ 0.614754] pci 0000:05:03.0: bridge window [mem 0x4410200000-0x44103fffff 64bit pref]: assigned
[ 0.614756] pci 0000:05:01.0: bridge window [io 0x4000-0x4fff]: assigned
[ 0.614757] pci 0000:05:03.0: bridge window [io 0x5000-0x5fff]: assigned
[ 0.614760] pci 0000:05:00.0: PCI bridge to [bus 06]
[ 0.614781] pci 0000:05:00.0: bridge window [mem 0x5410000000-0x54100fffff 64bit pref]
[ 0.614788] pci 0000:05:01.0: PCI bridge to [bus 07-2c]
[ 0.614791] pci 0000:05:01.0: bridge window [io 0x4000-0x4fff]
[ 0.614797] pci 0000:05:01.0: bridge window [mem 0x44000000-0x47efffff]
[ 0.614801] pci 0000:05:01.0: bridge window [mem 0x4410000000-0x44101fffff 64bit pref]
[ 0.614808] pci 0000:05:02.0: PCI bridge to [bus 2d]
[ 0.614814] pci 0000:05:02.0: bridge window [mem 0x43f00000-0x43ffffff]
[ 0.614824] pci 0000:05:03.0: PCI bridge to [bus 2e-54]
[ 0.614827] pci 0000:05:03.0: bridge window [io 0x5000-0x5fff]
[ 0.614833] pci 0000:05:03.0: bridge window [mem 0x40000000-0x43efffff]
[ 0.614837] pci 0000:05:03.0: bridge window [mem 0x4410200000-0x44103fffff 64bit pref]
[ 0.614844] pci 0000:04:00.0: PCI bridge to [bus 05-54]
[ 0.614847] pci 0000:04:00.0: bridge window [io 0x4000-0x5fff]
[ 0.614853] pci 0000:04:00.0: bridge window [mem 0x40000000-0x47efffff]
[ 0.614857] pci 0000:04:00.0: bridge window [mem 0x4410000000-0x54100fffff 64bit pref]
[ 0.614864] pci 0000:00:1d.0: PCI bridge to [bus 04-54]
[ 0.614866] pci 0000:00:1d.0: bridge window [io 0x4000-0x6fff]
[ 0.614871] pci 0000:00:1d.0: bridge window [mem 0x40000000-0x47ffffff]
[ 0.614874] pci 0000:00:1d.0: bridge window [mem 0x4410000000-0x54100fffff 64bit pref]
[ 0.614881] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.614883] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.614884] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.614886] pci_bus 0000:00: resource 7 [mem 0x40000000-0xbfffffff window]
[ 0.614888] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
[ 0.614890] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
[ 0.614891] pci_bus 0000:02: resource 1 [mem 0x4a000000-0x4b0fffff]
[ 0.614892] pci_bus 0000:02: resource 2 [mem 0x4000000000-0x4401ffffff 64bit pref]
[ 0.614894] pci_bus 0000:03: resource 1 [mem 0x4b100000-0x4b2fffff]
[ 0.614896] pci_bus 0000:04: resource 0 [io 0x4000-0x6fff]
[ 0.614897] pci_bus 0000:04: resource 1 [mem 0x40000000-0x47ffffff]
[ 0.614898] pci_bus 0000:04: resource 2 [mem 0x4410000000-0x54100fffff 64bit pref]
[ 0.614900] pci_bus 0000:05: resource 0 [io 0x4000-0x5fff]
[ 0.614901] pci_bus 0000:05: resource 1 [mem 0x40000000-0x47efffff]
[ 0.614903] pci_bus 0000:05: resource 2 [mem 0x4410000000-0x54100fffff 64bit pref]
[ 0.614904] pci_bus 0000:06: resource 2 [mem 0x5410000000-0x54100fffff 64bit pref]
[ 0.614906] pci_bus 0000:07: resource 0 [io 0x4000-0x4fff]
[ 0.614907] pci_bus 0000:07: resource 1 [mem 0x44000000-0x47efffff]
[ 0.614909] pci_bus 0000:07: resource 2 [mem 0x4410000000-0x44101fffff 64bit pref]
[ 0.614910] pci_bus 0000:2d: resource 1 [mem 0x43f00000-0x43ffffff]
[ 0.614912] pci_bus 0000:2e: resource 0 [io 0x5000-0x5fff]
[ 0.614913] pci_bus 0000:2e: resource 1 [mem 0x40000000-0x43efffff]
[ 0.614914] pci_bus 0000:2e: resource 2 [mem 0x4410200000-0x44103fffff 64bit pref]
[ 0.617124] pci 0000:02:00.1: extending delay after power-on from D3hot to 20 msec
[ 0.617155] pci 0000:02:00.1: D0 power state depends on 0000:02:00.0
[ 0.617680] pci 0000:2d:00.0: enabling device (0000 -> 0002)
[ 0.617718] PCI: CLS 64 bytes, default 64
[ 0.617765] DMAR: No RMRR found
[ 0.617766] DMAR: No ATSR found
[ 0.617766] DMAR: No SATC found
[ 0.617768] DMAR: dmar0: Using Queued invalidation
[ 0.617825] Trying to unpack rootfs image as initramfs...
[ 0.617854] pci 0000:00:00.0: Adding to iommu group 0
[ 0.617868] pci 0000:00:01.0: Adding to iommu group 1
[ 0.617880] pci 0000:00:01.1: Adding to iommu group 2
[ 0.617890] pci 0000:00:04.0: Adding to iommu group 3
[ 0.617899] pci 0000:00:08.0: Adding to iommu group 4
[ 0.617909] pci 0000:00:0a.0: Adding to iommu group 5
[ 0.617920] pci 0000:00:0e.0: Adding to iommu group 6
[ 0.617938] pci 0000:00:14.0: Adding to iommu group 7
[ 0.617947] pci 0000:00:14.2: Adding to iommu group 7
[ 0.617957] pci 0000:00:14.3: Adding to iommu group 8
[ 0.617976] pci 0000:00:15.0: Adding to iommu group 9
[ 0.617986] pci 0000:00:15.1: Adding to iommu group 9
[ 0.618000] pci 0000:00:16.0: Adding to iommu group 10
[ 0.618019] pci 0000:00:1c.0: Adding to iommu group 11
[ 0.618033] pci 0000:00:1d.0: Adding to iommu group 12
[ 0.618060] pci 0000:00:1f.0: Adding to iommu group 13
[ 0.618070] pci 0000:00:1f.3: Adding to iommu group 13
[ 0.618080] pci 0000:00:1f.4: Adding to iommu group 13
[ 0.618090] pci 0000:00:1f.5: Adding to iommu group 13
[ 0.618110] pci 0000:02:00.0: Adding to iommu group 14
[ 0.618125] pci 0000:02:00.1: Adding to iommu group 14
[ 0.618143] pci 0000:03:00.0: Adding to iommu group 15
[ 0.618161] pci 0000:04:00.0: Adding to iommu group 16
[ 0.618173] pci 0000:05:00.0: Adding to iommu group 17
[ 0.618198] pci 0000:05:01.0: Adding to iommu group 18
[ 0.618217] pci 0000:05:02.0: Adding to iommu group 19
[ 0.618229] pci 0000:05:03.0: Adding to iommu group 20
[ 0.618253] pci 0000:06:00.0: Adding to iommu group 21
[ 0.618276] pci 0000:2d:00.0: Adding to iommu group 22
[ 0.623571] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 0.623574] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.623575] software IO TLB: mapped [mem 0x0000000025ec9000-0x0000000029ec9000] (64MB)
[ 0.625995] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
[ 0.626047] clocksource: Switched to clocksource tsc
[ 0.627320] Initialise system trusted keyrings
[ 0.627331] Key type blacklist registered
[ 0.627399] workingset: timestamp_bits=36 max_order=23 bucket_order=0
[ 0.627409] zbud: loaded
[ 0.627749] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.627872] fuse: init (API version 7.40)
[ 0.628078] integrity: Platform Keyring initialized
[ 0.628083] integrity: Machine keyring initialized
[ 0.641860] Key type asymmetric registered
[ 0.641862] Asymmetric key parser 'x509' registered
[ 0.641896] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[ 0.641980] io scheduler mq-deadline registered
[ 0.642713] pcieport 0000:00:01.0: PME: Signaling with IRQ 121
[ 0.643017] pcieport 0000:00:01.1: PME: Signaling with IRQ 122
[ 0.643345] pcieport 0000:00:1c.0: PME: Signaling with IRQ 123
[ 0.643459] pcieport 0000:00:1c.0: AER: enabled with IRQ 123
[ 0.643654] pcieport 0000:00:1d.0: PME: Signaling with IRQ 124
[ 0.643733] pcieport 0000:00:1d.0: AER: enabled with IRQ 124
[ 0.643761] pcieport 0000:00:1d.0: pciehp: Slot #8 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.644705] pcieport 0000:05:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.645356] pcieport 0000:05:03.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.645582] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.645969] Monitor-Mwait will be used to enter C-1 state
[ 0.645988] Monitor-Mwait will be used to enter C-2 state
[ 0.645999] Monitor-Mwait will be used to enter C-3 state
[ 0.646005] ACPI: \_SB_.PR00: Found 3 idle states
[ 0.649161] ACPI: AC: AC Adapter [AC] (on-line)
[ 0.649250] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 0.649326] ACPI: button: Power Button [PWRB]
[ 0.649360] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[ 0.649395] ACPI: button: Sleep Button [SLPB]
[ 0.649429] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
[ 0.649463] ACPI: button: Lid Switch [LID0]
[ 0.649497] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[ 0.649540] ACPI: button: Power Button [PWRF]
[ 0.735940] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.735943] ACPI: thermal: Thermal Zone [TZ0] (25 C)
[ 0.736287] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.736998] ACPI: battery: Slot [BAT0] (battery present)
[ 0.738678] hpet_acpi_add: no address or irqs in _CRS
[ 0.738719] Linux agpgart interface v0.103
[ 0.740425] tpm_tis IFX1523:00: 2.0 TPM (device-id 0x1D, rev-id 54)
[ 0.766188] Freeing initrd memory: 74848K
[ 0.856055] ACPI: bus type drm_connector registered
[ 0.863903] loop: module loaded
[ 0.864403] tun: Universal TUN/TAP device driver, 1.6
[ 0.864534] PPP generic driver version 2.4.2
[ 0.864696] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 0.870749] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.870757] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.870989] mousedev: PS/2 mouse device common for all mice
[ 0.871151] rtc_cmos 00:01: RTC can wake from S4
[ 0.871995] rtc_cmos 00:01: registered as rtc0
[ 0.872167] rtc_cmos 00:01: setting system clock to 2024-11-01T17:25:26 UTC (1730481926)
[ 0.872211] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
[ 0.872219] i2c_dev: i2c /dev entries driver
[ 0.872661] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[ 0.874255] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 0.874272] device-mapper: uevent: version 1.0.3
[ 0.874315] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[ 0.874332] platform eisa.0: Probing EISA bus 0
[ 0.874333] platform eisa.0: EISA: Cannot allocate resource for mainboard
[ 0.874335] platform eisa.0: Cannot allocate resource for EISA slot 1
[ 0.874336] platform eisa.0: Cannot allocate resource for EISA slot 2
[ 0.874337] platform eisa.0: Cannot allocate resource for EISA slot 3
[ 0.874338] platform eisa.0: Cannot allocate resource for EISA slot 4
[ 0.874339] platform eisa.0: Cannot allocate resource for EISA slot 5
[ 0.874340] platform eisa.0: Cannot allocate resource for EISA slot 6
[ 0.874340] platform eisa.0: Cannot allocate resource for EISA slot 7
[ 0.874341] platform eisa.0: Cannot allocate resource for EISA slot 8
[ 0.874342] platform eisa.0: EISA: Detected 0 cards
[ 0.874346] intel_pstate: Intel P-state driver initializing
[ 0.878014] intel_pstate: HWP enabled
[ 0.880777] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.880974] [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
[ 0.885206] fbcon: Deferring console take-over
[ 0.885209] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[ 0.887040] drop_monitor: Initializing network drop monitor service
[ 0.887194] NET: Registered PF_INET6 protocol family
[ 0.894065] Segment Routing with IPv6
[ 0.894084] In-situ OAM (IOAM) with IPv6
[ 0.894129] NET: Registered PF_PACKET protocol family
[ 0.894169] Key type dns_resolver registered
[ 0.898470] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.900368] microcode: Current revision: 0x00000129
[ 0.902094] IPI shorthand broadcast: enabled
[ 0.904260] sched_clock: Marking stable (897001390, 7231455)->(973542124, -69309279)
[ 0.904843] registered taskstats version 1
[ 0.908617] Loading compiled-in X.509 certificates
[ 0.909394] Loaded X.509 cert 'Build time autogenerated kernel key: c84cfb4445ce6cac0f85ce5a38eaad0b7990afa9'
[ 0.913507] Demotion targets for Node 0: null
[ 0.913638] Key type .fscrypt registered
[ 0.913640] Key type fscrypt-provisioning registered
[ 0.913698] Key type trusted registered
[ 0.919566] cryptd: module verification failed: signature and/or required key missing - tainting kernel
[ 0.920466] cryptd: max_cpu_qlen set to 1000
[ 0.922228] AES CTR mode by8 optimization enabled
[ 0.933940] Key type encrypted registered
[ 0.933944] AppArmor: AppArmor sha256 policy hashing enabled
[ 0.938671] integrity: Loading X.509 certificate: UEFI:db
[ 0.938701] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 0.938702] integrity: Loading X.509 certificate: UEFI:db
[ 0.938718] integrity: Loaded X.509 cert 'Microsoft Corporation: Windows UEFI CA 2023: aefc5fbbbe055d8f8daa585473499417ab5a5272'
[ 0.938719] integrity: Loading X.509 certificate: UEFI:db
[ 0.938735] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 0.938736] integrity: Loading X.509 certificate: UEFI:db
[ 0.938750] integrity: Loaded X.509 cert 'Microsoft UEFI CA 2023: 81aa6b3244c935bce0d6628af39827421e32497d'
[ 0.938750] integrity: Loading X.509 certificate: UEFI:db
[ 0.939051] integrity: Loaded X.509 cert 'Secure Certificate: 01dcc89619884ca147983429f8a4a1a0'
[ 0.939052] integrity: Loading X.509 certificate: UEFI:db
[ 0.939201] integrity: Loaded X.509 cert 'Cus CA: d6136d376b87ef934511c12ce2c3880c'
[ 0.946389] Loading compiled-in module X.509 certificates
[ 0.946824] Loaded X.509 cert 'Build time autogenerated kernel key: c84cfb4445ce6cac0f85ce5a38eaad0b7990afa9'
[ 0.946827] ima: Allocated hash algorithm: sha256
[ 1.088698] ima: No architecture policies found
[ 1.088745] evm: Initialising EVM extended attributes:
[ 1.088749] evm: security.selinux
[ 1.088752] evm: security.SMACK64
[ 1.088754] evm: security.SMACK64EXEC
[ 1.088757] evm: security.SMACK64TRANSMUTE
[ 1.088759] evm: security.SMACK64MMAP
[ 1.088761] evm: security.apparmor
[ 1.088763] evm: security.ima
[ 1.088765] evm: security.capability
[ 1.088767] evm: HMAC attrs: 0x1
[ 1.089525] PM: Magic number: 0:284:440
[ 1.089590] clockevents broadcast: hash matches
[ 1.089649] acpi INT3519:00: hash matches
[ 1.096898] RAS: Correctable Errors collector initialized.
[ 1.109180] clk: Disabling unused clocks
[ 1.109182] PM: genpd: Disabling unused power domains
[ 1.115064] Freeing unused decrypted memory: 2028K
[ 1.116040] Freeing unused kernel image (initmem) memory: 4996K
[ 1.116056] Write protecting the kernel read-only data: 36864k
[ 1.116982] Freeing unused kernel image (rodata/data gap) memory: 544K
[ 1.124237] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.124240] Run /init as init process
[ 1.124241] with arguments:
[ 1.124242] /init
[ 1.124243] splash
[ 1.124243] with environment:
[ 1.124244] HOME=/
[ 1.124245] TERM=linux
[ 1.124245] BOOT_IMAGE=/@boot/vmlinuz-6.11.5
[ 1.124246] cryptdevice=UUID=1a8d8cdb-8d8f-4689-b744-8f32d2067f56:luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56
[ 1.224644] hid: raw HID events driver (C) Jiri Kosina
[ 1.225881] wmi_bus wmi_bus-PNP0C14:01: [Firmware Bug]: WQ00 data block query control method not found
[ 1.226759] ACPI: video: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[ 1.226789] ACPI: video: Video Device [PEGP] (multi-head: yes rom: no post: no)
[ 1.228848] vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
[ 1.228852] pci_bus 10000:e0: root bus resource [bus e0-ff]
[ 1.228853] pci_bus 10000:e0: root bus resource [mem 0x48000000-0x49ffffff]
[ 1.228854] pci_bus 10000:e0: root bus resource [mem 0x4404102000-0x44041fffff 64bit]
[ 1.228880] pci 10000:e0:1b.0: [8086:09ab] type 00 class 0x088000 conventional PCI endpoint
[ 1.229134] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.229143] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 1.229177] pci 10000:e0:1b.0: Adding to iommu group 6
[ 1.229235] pci 10000:e0:1b.4: [8086:7a44] type 01 class 0x060400 PCIe Root Port
[ 1.229275] pci 10000:e0:1b.4: PCI bridge to [bus e1]
[ 1.229284] pci 10000:e0:1b.4: bridge window [io 0x0000-0x0fff]
[ 1.229287] pci 10000:e0:1b.4: bridge window [mem 0x48000000-0x480fffff]
[ 1.229382] pci 10000:e0:1b.4: PME# supported from D0 D3hot D3cold
[ 1.229429] pci 10000:e0:1b.4: PTM enabled (root), 4ns granularity
[ 1.229580] Intel(R) 2.5G Ethernet Linux Driver
[ 1.229582] Copyright(c) 2018 Intel Corporation.
[ 1.229713] pci 10000:e0:1b.4: Adding to iommu group 6
[ 1.229732] pci 10000:e0:1b.4: Primary bus is hard wired to 0
[ 1.229800] igc 0000:03:00.0: PTM enabled, 4ns granularity
[ 1.229873] pci 10000:e1:00.0: [144d:a808] type 00 class 0x010802 PCIe Endpoint
[ 1.229904] pci 10000:e1:00.0: BAR 0 [mem 0x48000000-0x48003fff 64bit]
[ 1.230349] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[ 1.230373] pci 10000:e1:00.0: Adding to iommu group 6
[ 1.230394] pci 10000:e0:1b.4: PCI bridge to [bus e1]
[ 1.230406] pci 10000:e0:1b.4: Primary bus is hard wired to 0
[ 1.230855] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.230858] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 1.230863] xhci_hcd 0000:00:14.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 1.230965] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.11
[ 1.230969] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.230971] usb usb1: Product: xHCI Host Controller
[ 1.230972] usb usb1: Manufacturer: Linux 6.11.5 xhci-hcd
[ 1.230974] usb usb1: SerialNumber: 0000:00:14.0
[ 1.231188] hub 1-0:1.0: USB hub found
[ 1.231219] hub 1-0:1.0: 16 ports detected
[ 1.237516] ACPI: bus type thunderbolt registered
[ 1.237646] thunderbolt 0000:06:00.0: total paths: 12
[ 1.237652] thunderbolt 0000:06:00.0: IOMMU DMA protection is enabled
[ 1.241280] intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
[ 1.241581] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 1.265881] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:05/LNXVIDEO:00/input/input7
[ 1.281781] pps pps0: new PPS source ptp0
[ 1.281824] igc 0000:03:00.0 (unnamed net_device) (uninitialized): PHC added
[ 1.310751] igc 0000:03:00.0: 4.000 Gb/s available PCIe bandwidth (5.0 GT/s PCIe x1 link)
[ 1.310758] igc 0000:03:00.0 eth0: MAC: d4:93:90:44:67:64
[ 1.312891] igc 0000:03:00.0 enp3s0: renamed from eth0
[ 1.314074] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.11
[ 1.314080] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.314082] usb usb2: Product: xHCI Host Controller
[ 1.314084] usb usb2: Manufacturer: Linux 6.11.5 xhci-hcd
[ 1.314086] usb usb2: SerialNumber: 0000:00:14.0
[ 1.314412] hub 2-0:1.0: USB hub found
[ 1.314467] hub 2-0:1.0: 10 ports detected
[ 1.318416] xhci_hcd 0000:2d:00.0: xHCI Host Controller
[ 1.318426] xhci_hcd 0000:2d:00.0: new USB bus registered, assigned bus number 3
[ 1.319681] xhci_hcd 0000:2d:00.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[ 1.320183] xhci_hcd 0000:2d:00.0: xHCI Host Controller
[ 1.320187] xhci_hcd 0000:2d:00.0: new USB bus registered, assigned bus number 4
[ 1.320190] xhci_hcd 0000:2d:00.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 1.320751] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.11
[ 1.320757] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.320759] usb usb3: Product: xHCI Host Controller
[ 1.320761] usb usb3: Manufacturer: Linux 6.11.5 xhci-hcd
[ 1.320763] usb usb3: SerialNumber: 0000:2d:00.0
[ 1.320929] hub 3-0:1.0: USB hub found
[ 1.320951] hub 3-0:1.0: 2 ports detected
[ 1.341343] thunderbolt 0000:06:00.0: host router reset successful
[ 1.342047] thunderbolt 0000:06:00.0: allocating TX ring 0 of size 10
[ 1.342118] thunderbolt 0000:06:00.0: allocating RX ring 0 of size 10
[ 1.342162] thunderbolt 0000:06:00.0: control channel created
[ 1.342168] thunderbolt 0000:06:00.0: using software connection manager
[ 1.342716] thunderbolt 0000:06:00.0: device links to tunneled native ports are missing!
[ 1.342719] thunderbolt 0000:06:00.0: NHI initialized, starting thunderbolt
[ 1.342722] thunderbolt 0000:06:00.0: control channel starting...
[ 1.342725] thunderbolt 0000:06:00.0: starting TX ring 0
[ 1.342740] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 1.342747] thunderbolt 0000:06:00.0: starting RX ring 0
[ 1.342756] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 1.342765] thunderbolt 0000:06:00.0: security level set to user
[ 1.342991] thunderbolt 0000:06:00.0: current switch config:
[ 1.342994] thunderbolt 0000:06:00.0: USB4 Switch: 8087:5781 (Revision: 131, TB Version: 64)
[ 1.343000] thunderbolt 0000:06:00.0: Max Port Number: 23
[ 1.343003] thunderbolt 0000:06:00.0: Config:
[ 1.343005] thunderbolt 0000:06:00.0: Upstream Port Number: 15 Depth: 0 Route String: 0x0 Enabled: 0, PlugEventsDelay: 10ms
[ 1.343011] thunderbolt 0000:06:00.0: unknown1: 0x0 unknown4: 0x0
[ 1.346115] thunderbolt 0000:06:00.0: initializing Switch at 0x0 (depth: 0, up port: 15)
[ 1.346487] thunderbolt 0000:06:00.0: acking hot plug event on 0:13
[ 1.346613] thunderbolt 0000:06:00.0: acking hot plug event on 0:14
[ 1.346741] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
[ 1.347270] thunderbolt 0000:06:00.0: 0: credit allocation parameters:
[ 1.347275] thunderbolt 0000:06:00.0: 0: USB3: 20
[ 1.347277] thunderbolt 0000:06:00.0: 0: DP AUX: 1
[ 1.347280] thunderbolt 0000:06:00.0: 0: DP main: 6
[ 1.347282] thunderbolt 0000:06:00.0: 0: PCIe: 80
[ 1.347284] thunderbolt 0000:06:00.0: 0: DMA: 40
[ 1.349693] thunderbolt 0000:06:00.0: 0: DROM version: 3
[ 1.349697] thunderbolt 0000:06:00.0: 0: DROM data CRC32 mismatch (expected: 0x56000000, got: 0x56473b0f), continuing
[ 1.350337] thunderbolt 0000:06:00.0: 0: running tb_retimer_remove_all [thunderbolt]
[ 1.350374] thunderbolt 0000:06:00.0: 0: running tb_retimer_remove_all [thunderbolt]
[ 1.350387] thunderbolt 0000:06:00.0: 0: preventing runtime PM in DP redrive mode
[ 1.350390] thunderbolt 0000:06:00.0: 0: uid: 0xb93e650000006ecd
[ 1.351620] thunderbolt 0000:06:00.0: Port 1: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.351625] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.351628] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.351630] thunderbolt 0000:06:00.0: NFC Credits: 0x8a000000
[ 1.351632] thunderbolt 0000:06:00.0: Credits (total/control): 160/2
[ 1.352764] thunderbolt 0000:06:00.0: Port 2: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.352768] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.352771] thunderbolt 0000:06:00.0: Max counters: 0
[ 1.352773] thunderbolt 0000:06:00.0: NFC Credits: 0xa000000
[ 1.352775] thunderbolt 0000:06:00.0: Credits (total/control): 160/2
[ 1.354040] thunderbolt 0000:06:00.0: Port 3: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.354047] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.354052] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.354057] thunderbolt 0000:06:00.0: NFC Credits: 0x8a000000
[ 1.354061] thunderbolt 0000:06:00.0: Credits (total/control): 160/2
[ 1.355196] thunderbolt 0000:06:00.0: Port 4: 0:5780 (Revision: 0, TB Version: 1, Type: Port (0x1))
[ 1.355200] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.355203] thunderbolt 0000:06:00.0: Max counters: 0
[ 1.355205] thunderbolt 0000:06:00.0: NFC Credits: 0xa000000
[ 1.355210] thunderbolt 0000:06:00.0: Credits (total/control): 160/2
[ 1.356476] thunderbolt 0000:06:00.0: Port 5: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.356481] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.356483] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.356485] thunderbolt 0000:06:00.0: NFC Credits: 0x8a000000
[ 1.356488] thunderbolt 0000:06:00.0: Credits (total/control): 160/0
[ 1.357248] thunderbolt 0000:06:00.0: Port 6: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.357252] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.357255] thunderbolt 0000:06:00.0: Max counters: 0
[ 1.357257] thunderbolt 0000:06:00.0: NFC Credits: 0xa000000
[ 1.357260] thunderbolt 0000:06:00.0: Credits (total/control): 160/0
[ 1.358527] thunderbolt 0000:06:00.0: Port 7: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.358531] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.358533] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.358536] thunderbolt 0000:06:00.0: NFC Credits: 0x8a000000
[ 1.358538] thunderbolt 0000:06:00.0: Credits (total/control): 160/0
[ 1.359295] thunderbolt 0000:06:00.0: Port 8: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.359299] thunderbolt 0000:06:00.0: Max hop id (in/out): 31/31
[ 1.359302] thunderbolt 0000:06:00.0: Max counters: 0
[ 1.359304] thunderbolt 0000:06:00.0: NFC Credits: 0xa000000
[ 1.359306] thunderbolt 0000:06:00.0: Credits (total/control): 160/0
[ 1.359549] thunderbolt 0000:06:00.0: Port 9: 0:5780 (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[ 1.359554] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.359557] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.359559] thunderbolt 0000:06:00.0: NFC Credits: 0x40800000
[ 1.359562] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.359805] thunderbolt 0000:06:00.0: Port 10: 0:5780 (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[ 1.359810] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.359813] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.359815] thunderbolt 0000:06:00.0: NFC Credits: 0x40800000
[ 1.359817] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.360319] thunderbolt 0000:06:00.0: Port 11: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 1.360324] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.360326] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.360329] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.360331] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.360827] thunderbolt 0000:06:00.0: Port 12: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 1.360832] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.360835] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.360837] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.360839] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.361085] thunderbolt 0000:06:00.0: Port 13: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[ 1.361089] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.361091] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.361094] thunderbolt 0000:06:00.0: NFC Credits: 0x100000d
[ 1.361096] thunderbolt 0000:06:00.0: Credits (total/control): 16/0
[ 1.361344] thunderbolt 0000:06:00.0: Port 14: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[ 1.361348] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.361351] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.361353] thunderbolt 0000:06:00.0: NFC Credits: 0x100000d
[ 1.361355] thunderbolt 0000:06:00.0: Credits (total/control): 16/0
[ 1.362108] thunderbolt 0000:06:00.0: Port 15: 0:5780 (Revision: 0, TB Version: 1, Type: NHI (0x2))
[ 1.362113] thunderbolt 0000:06:00.0: Max hop id (in/out): 11/11
[ 1.362116] thunderbolt 0000:06:00.0: Max counters: 4
[ 1.362118] thunderbolt 0000:06:00.0: NFC Credits: 0x41c00000
[ 1.362121] thunderbolt 0000:06:00.0: Credits (total/control): 28/0
[ 1.362124] thunderbolt 0000:06:00.0: 0:16: disabled by eeprom
[ 1.362366] thunderbolt 0000:06:00.0: Port 17: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.362370] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.362373] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.362375] thunderbolt 0000:06:00.0: NFC Credits: 0x40800000
[ 1.362377] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.362623] thunderbolt 0000:06:00.0: Port 18: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.362627] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.362629] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.362632] thunderbolt 0000:06:00.0: NFC Credits: 0x40800000
[ 1.362634] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.363132] thunderbolt 0000:06:00.0: Port 19: 0:5780 (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0102))
[ 1.363137] thunderbolt 0000:06:00.0: Max hop id (in/out): 9/9
[ 1.363139] thunderbolt 0000:06:00.0: Max counters: 2
[ 1.363142] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.363144] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.363389] thunderbolt 0000:06:00.0: Port 20: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.363393] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.363396] thunderbolt 0000:06:00.0: Max counters: 1
[ 1.363398] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.363401] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.363646] thunderbolt 0000:06:00.0: Port 21: 0:5780 (Revision: 0, TB Version: 1, Type: USB (0x200101))
[ 1.363650] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.363653] thunderbolt 0000:06:00.0: Max counters: 1
[ 1.363655] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.363658] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.363902] thunderbolt 0000:06:00.0: Port 22: 0:5780 (Revision: 0, TB Version: 1, Type: USB (0x200101))
[ 1.363906] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.363909] thunderbolt 0000:06:00.0: Max counters: 1
[ 1.363911] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.363913] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.364160] thunderbolt 0000:06:00.0: Port 23: 0:5780 (Revision: 0, TB Version: 1, Type: Inactive (0x0))
[ 1.364164] thunderbolt 0000:06:00.0: Max hop id (in/out): 8/8
[ 1.364166] thunderbolt 0000:06:00.0: Max counters: 1
[ 1.364169] thunderbolt 0000:06:00.0: NFC Credits: 0x800000
[ 1.364171] thunderbolt 0000:06:00.0: Credits (total/control): 8/0
[ 1.364175] thunderbolt 0000:06:00.0: 0: running tb_retimer_remove_all [thunderbolt]
[ 1.364196] thunderbolt 0000:06:00.0: 0:16: re-enabling adapter
[ 1.364199] thunderbolt 0000:06:00.0: 0: linked ports 1 <-> 2
[ 1.364202] thunderbolt 0000:06:00.0: 0: linked ports 3 <-> 4
[ 1.372470] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
[ 1.372473] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
[ 1.372597] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
[ 1.376612] thunderbolt 0000:06:00.0: 0: NVM version 14.86
[ 1.376771] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> uni-directional, LowRes requested
[ 1.377199] thunderbolt 0000:06:00.0: 0: TMU: mode set to: uni-directional, LowRes
[ 1.378095] thunderbolt 0000:06:00.0: 0:13: DP IN resource available
[ 1.378731] thunderbolt 0000:06:00.0: 0:14: DP IN resource available
[ 1.396483] pci 10000:e0:1b.4: bridge window [mem 0x48000000-0x480fffff]: assigned
[ 1.396492] pci 10000:e0:1b.4: bridge window [io size 0x1000]: can't assign; no space
[ 1.396496] pci 10000:e0:1b.4: bridge window [io size 0x1000]: failed to assign
[ 1.396501] pci 10000:e1:00.0: BAR 0 [mem 0x48000000-0x48003fff 64bit]: assigned
[ 1.396527] pci 10000:e0:1b.4: PCI bridge to [bus e1]
[ 1.396535] pci 10000:e0:1b.4: bridge window [mem 0x48000000-0x480fffff]
[ 1.396648] pcieport 10000:e0:1b.4: can't derive routing for PCI INT A
[ 1.396652] pcieport 10000:e0:1b.4: PCI INT A: no GSI
[ 1.396815] pcieport 10000:e0:1b.4: PME: Signaling with IRQ 185
[ 1.397106] pcieport 10000:e0:1b.4: AER: enabled with IRQ 185
[ 1.397260] vmd 0000:00:0e.0: Bound to PCI domain 10000
[ 1.406976] nvme nvme0: pci function 10000:e1:00.0
[ 1.406996] pcieport 10000:e0:1b.4: can't derive routing for PCI INT A
[ 1.406999] nvme 10000:e1:00.0: PCI INT A: not connected
[ 1.408670] nvme nvme0: missing or invalid SUBNQN field.
[ 1.408845] nvme nvme0: D3 entry latency set to 8 seconds
[ 1.422459] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.11
[ 1.422467] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.422470] usb usb4: Product: xHCI Host Controller
[ 1.422473] usb usb4: Manufacturer: Linux 6.11.5 xhci-hcd
[ 1.422474] usb usb4: SerialNumber: 0000:2d:00.0
[ 1.422664] hub 4-0:1.0: USB hub found
[ 1.422698] hub 4-0:1.0: 2 ports detected
[ 1.429090] nvme nvme0: 18/0/0 default/read/poll queues
[ 1.437987] nvme0n1: p1 p2 p3
[ 1.464263] intel-lpss 0000:00:15.1: enabling device (0004 -> 0006)
[ 1.465322] idma64 idma64.1: Found Intel integrated DMA 64-bit
[ 1.550519] usb 1-6: new high-speed USB device number 2 using xhci_hcd
[ 1.710389] usb 1-6: New USB device found, idVendor=04f2, idProduct=b7e7, bcdDevice= 0.04
[ 1.710406] usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.710412] usb 1-6: Product: Chicony USB2.0 Camera
[ 1.710417] usb 1-6: Manufacturer: SunplusIT Inc
[ 1.710421] usb 1-6: SerialNumber: 01.00.00
[ 1.812001] input: FTCS1000:01 2808:0102 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0001/input/input8
[ 1.812376] input: FTCS1000:01 2808:0102 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0001/input/input9
[ 1.812922] hid-generic 0018:2808:0102.0001: input,hidraw0: I2C HID v1.00 Mouse [FTCS1000:01 2808:0102] on i2c-FTCS1000:01
[ 1.843479] usb 1-7: new full-speed USB device number 3 using xhci_hcd
[ 1.870383] input: FTCS1000:01 2808:0102 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0001/input/input11
[ 1.870958] input: FTCS1000:01 2808:0102 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-FTCS1000:01/0018:2808:0102.0001/input/input12
[ 1.871192] hid-multitouch 0018:2808:0102.0001: input,hidraw0: I2C HID v1.00 Mouse [FTCS1000:01 2808:0102] on i2c-FTCS1000:01
[ 1.974918] usb 1-7: New USB device found, idVendor=048d, idProduct=8910, bcdDevice= 0.01
[ 1.974936] usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.974942] usb 1-7: Product: ITE Device(829x)
[ 1.974946] usb 1-7: Manufacturer: ITE Tech. Inc.
[ 2.091463] usb 1-14: new full-speed USB device number 4 using xhci_hcd
[ 2.220713] usb 1-14: New USB device found, idVendor=8087, idProduct=0033, bcdDevice= 0.00
[ 2.220730] usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.235787] hid-generic 0003:048D:8910.0002: hiddev0,hidraw1: USB HID v1.10 Device [ITE Tech. Inc. ITE Device(829x)] on usb-0000:00:14.0-7/input0
[ 2.235831] usbcore: registered new interface driver usbhid
[ 2.235833] usbhid: USB HID core driver
[ 2.723950] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input6
[ 6.835700] ucsi_acpi USBC000:00: error -ETIMEDOUT: PPM init failed
[ 9.824234] raid6: avx2x4 gen() 35520 MB/s
[ 9.841322] raid6: avx2x2 gen() 21517 MB/s
[ 9.858348] raid6: avx2x1 gen() 28886 MB/s
[ 9.858350] raid6: using algorithm avx2x4 gen() 35520 MB/s
[ 9.875353] raid6: .... xor() 7067 MB/s, rmw enabled
[ 9.875354] raid6: using avx2x2 recovery algorithm
[ 9.876878] xor: automatically using best checksumming function avx
[ 9.924113] Btrfs loaded, zoned=yes, fsverity=yes
[ 9.960573] BTRFS: device label kfocus_2404 devid 1 transid 9312 /dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 (252:0) scanned by mount (751)
[ 9.961714] BTRFS info (device dm-0): first mount of filesystem aa8cb093-9cb3-4cc7-b44e-4bff76ca37fb
[ 9.961764] BTRFS info (device dm-0): using crc32c (crc32c-intel) checksum algorithm
[ 9.961776] BTRFS info (device dm-0): using free-space-tree
[ 10.157353] systemd[1]: Inserted module 'autofs4'
[ 10.377451] systemd[1]: systemd 255.4-1ubuntu8.4 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[ 10.377456] systemd[1]: Detected architecture x86-64.
[ 10.378622] systemd[1]: Hostname set to <qa-m2>.
[ 10.487199] systemd[1]: Configuration file /run/systemd/system/netplan-ovs-cleanup.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
[ 10.516899] systemd[1]: Queued start job for default target graphical.target.
[ 10.539294] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[ 10.539473] systemd[1]: Created slice system-systemd\x2dcryptsetup.slice - Encrypted Volume Units Service Slice.
[ 10.539614] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[ 10.539707] systemd[1]: Created slice user.slice - User and Session Slice.
[ 10.539734] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[ 10.539838] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[ 10.539847] systemd[1]: Expecting device dev-disk-by\x2duuid-167A\x2d6858.device - /dev/disk/by-uuid/167A-6858...
[ 10.539852] systemd[1]: Expecting device dev-disk-by\x2duuid-1a8d8cdb\x2d8d8f\x2d4689\x2db744\x2d8f32d2067f56.device - /dev/disk/by-uuid/1a8d8cdb-8d8f-4689-b744-8f32d2067f56...
[ 10.539856] systemd[1]: Expecting device dev-disk-by\x2duuid-aa8cb093\x2d9cb3\x2d4cc7\x2db44e\x2d4bff76ca37fb.device - /dev/disk/by-uuid/aa8cb093-9cb3-4cc7-b44e-4bff76ca37fb...
[ 10.539860] systemd[1]: Expecting device dev-disk-by\x2duuid-abbbc711\x2d9904\x2d466b\x2d8a35\x2d783f0d19bf50.device - /dev/disk/by-uuid/abbbc711-9904-466b-8a35-783f0d19bf50...
[ 10.539863] systemd[1]: Expecting device dev-mapper-luks\x2d1a8d8cdb\x2d8d8f\x2d4689\x2db744\x2d8f32d2067f56.device - /dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56...
[ 10.539874] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[ 10.539883] systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups.
[ 10.539890] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[ 10.539895] systemd[1]: Reached target slices.target - Slice Units.
[ 10.539902] systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
[ 10.539915] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[ 10.539950] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[ 10.540264] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[ 10.540557] systemd[1]: Listening on syslog.socket - Syslog Socket.
[ 10.540589] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[ 10.540609] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[ 10.540647] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[ 10.540690] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[ 10.540711] systemd[1]: systemd-pcrextend.socket - TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 10.540991] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ 10.541024] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 10.542454] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[ 10.542955] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[ 10.543556] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[ 10.544002] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[ 10.545864] systemd[1]: Starting systemd-journald.service - Journal Service...
[ 10.545912] systemd[1]: Finished blk-availability.service - Availability of block devices.
[ 10.546677] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[ 10.547108] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[ 10.547877] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[ 10.548632] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 10.549214] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[ 10.549787] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[ 10.550352] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[ 10.550800] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[ 10.551221] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[ 10.551639] systemd[1]: Starting modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics...
[ 10.552211] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[ 10.552226] systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 10.552717] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[ 10.552741] systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 10.553252] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ 10.554084] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[ 10.554218] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ 10.554307] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ 10.554366] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ 10.554609] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ 10.554763] pstore: Using crash dump compression: deflate
[ 10.554813] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 10.554934] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[ 10.555124] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 10.555251] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[ 10.555379] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 10.555463] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[ 10.555585] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 10.555673] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[ 10.556973] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[ 10.557079] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[ 10.558415] systemd-journald[823]: Collecting audit messages is disabled.
[ 10.558990] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[ 10.559508] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 10.559706] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[ 10.561164] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[ 10.563828] Key type psk registered
[ 10.564032] BTRFS info (device dm-0 state M): turning on sync discard
[ 10.564034] BTRFS info (device dm-0 state M): enabling auto defrag
[ 10.564035] BTRFS info (device dm-0 state M): use lzo compression, level 0
[ 10.564757] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[ 10.564819] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[ 10.565695] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[ 10.566771] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[ 10.566786] systemd[1]: systemd-tpm2-setup.service - TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 10.567105] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[ 10.568455] systemd[1]: modprobe@nvme_fabrics.service: Deactivated successfully.
[ 10.568529] systemd[1]: Finished modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics.
[ 10.589655] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[ 10.600303] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[ 10.600376] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
[ 10.600449] lp: driver loaded but no devices found
[ 10.600932] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[ 10.601103] systemd[1]: Started systemd-journald.service - Journal Service.
[ 10.605943] systemd-journald[823]: Received client request to flush runtime journal.
[ 10.606229] ppdev: user-space parallel port driver
[ 10.625120] systemd-journald[823]: /var/log/journal/86d43f3761a64806a644a560706664c5/system.journal: Journal file uses a different sequence number ID, rotating.
[ 10.625123] systemd-journald[823]: Rotating system journal.
[ 10.639113] pstore: Registered efi_pstore as persistent store backend
[ 10.676156] loop0: detected capacity change from 0 to 151296
[ 10.676212] loop1: detected capacity change from 0 to 152056
[ 10.676257] loop2: detected capacity change from 0 to 8
[ 10.676329] loop3: detected capacity change from 0 to 21952
[ 10.676769] loop4: detected capacity change from 0 to 22752
[ 10.676983] loop5: detected capacity change from 0 to 1034424
[ 10.677502] loop6: detected capacity change from 0 to 187776
[ 10.677577] loop7: detected capacity change from 0 to 79328
[ 10.679199] loop8: detected capacity change from 0 to 79520
[ 10.685228] BTRFS info: devid 1 device path /dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 changed to /dev/dm-0 scanned by (udev-worker) (931)
[ 10.685987] BTRFS info: devid 1 device path /dev/dm-0 changed to /dev/mapper/luks-1a8d8cdb-8d8f-4689-b744-8f32d2067f56 scanned by (udev-worker) (931)
[ 10.707436] input: Intel HID events as /devices/platform/INTC1051:00/input/input14
[ 10.712492] Consider using thermal netlink events interface
[ 10.727847] intel_pmc_core INT33A1:00: initialized
[ 10.767324] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 10.767380] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 10.767985] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 10.768171] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 10.768235] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 10.768295] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 10.768333] intel_rapl_msr: PL4 support detected.
[ 10.768917] intel_rapl_common: Found RAPL domain package
[ 10.768919] intel_rapl_common: Found RAPL domain core
[ 10.768921] intel_rapl_common: Found RAPL domain psys
[ 10.768946] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer
[ 10.768949] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 10.768950] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 10.768951] RAPL PMU: hw unit of domain psys 2^-14 Joules
[ 10.769770] i2c i2c-2: Successfully instantiated SPD at 0x50
[ 10.793896] Creating 1 MTD partitions on "0000:00:1f.5":
[ 10.793902] 0x000000000000-0x000002000000 : "BIOS"
[ 10.794055] intel_rapl_common: Found RAPL domain package
[ 10.795626] spd5118 2-0050: DDR5 temperature sensor: vendor 0x06:0x32 revision 1.6
[ 10.806555] Intel(R) Wireless WiFi driver for Linux
[ 10.809042] iwlwifi 0000:00:14.3: Detected crf-id 0x400410, cnv-id 0x80401 wfpm id 0x80000020
[ 10.809068] iwlwifi 0000:00:14.3: PCI dev 7a70/0094, rev=0x430, rfid=0x2010d000
[ 10.809071] iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6E AX211 160MHz
[ 10.809579] iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-so-a0-gf-a0-89.ucode failed with error -2
[ 10.809597] iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-so-a0-gf-a0-88.ucode failed with error -2
[ 10.809611] iwlwifi 0000:00:14.3: Direct firmware load for iwlwifi-so-a0-gf-a0-87.ucode failed with error -2
[ 10.813472] iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.0.2.41
[ 10.813678] iwlwifi 0000:00:14.3: loaded firmware version 86.fb5c9aeb.0 so-a0-gf-a0-86.ucode op_mode iwlmvm
[ 10.816161] ite_829x: loading out-of-tree module taints kernel.
[ 10.821035] mc: Linux media interface: v0.10
[ 10.821235] Bluetooth: Core ver 2.22
[ 10.821254] NET: Registered PF_BLUETOOTH protocol family
[ 10.821254] Bluetooth: HCI device and connection manager initialized
[ 10.821257] Bluetooth: HCI socket layer initialized
[ 10.821259] Bluetooth: L2CAP socket layer initialized
[ 10.821262] Bluetooth: SCO socket layer initialized
[ 10.821504] ite_829x 0003:048D:8910.0002: hiddev0,hidraw1: USB HID v1.10 Device [ITE Tech. Inc. ITE Device(829x)] on usb-0000:00:14.0-7/input0
[ 10.835356] videodev: Linux video capture interface: v2.00
[ 10.857103] usbcore: registered new interface driver btusb
[ 10.859468] Bluetooth: hci0: Device revision is 0
[ 10.859494] Bluetooth: hci0: Secure boot is enabled
[ 10.859499] Bluetooth: hci0: OTP lock is enabled
[ 10.859501] Bluetooth: hci0: API lock is enabled
[ 10.859502] Bluetooth: hci0: Debug lock is disabled
[ 10.859503] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[ 10.859506] Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38
[ 10.860323] ACPI Warning: \_SB.PC00.XHCI.RHUB.HS14._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20240322/nsarguments-61)
[ 10.860415] Bluetooth: hci0: DSM reset method type: 0x00
[ 10.863356] Bluetooth: hci0: Found device firmware: intel/ibt-1040-0041.sfi
[ 10.863364] Bluetooth: hci0: Boot Address: 0x100800
[ 10.863365] Bluetooth: hci0: Firmware Version: 60-48.23
[ 10.909858] MXM: GUID detected in BIOS
[ 10.910049] ACPI Warning: \_SB.PC00.PEG2.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20240322/nsarguments-61)
[ 10.910245] pci 0000:02:00.0: optimus capabilities: enabled, status dynamic power, hda bios codec supported
[ 10.910258] VGA switcheroo: detected Optimus DSM method \_SB_.PC00.PEG2.PEGP handle
[ 10.910260] nouveau: detected PR support, will not use DSM
[ 10.916249] intel_tcc_cooling: Programmable TCC Offset detected
[ 10.917046] usb 1-6: Found UVC 1.50 device Chicony USB2.0 Camera (04f2:b7e7)
[ 10.923080] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[ 10.926862] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_1 due to name collision
[ 10.926872] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_2 due to name collision
[ 10.926880] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_3 due to name collision
[ 10.926889] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_4 due to name collision
[ 10.926897] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_5 due to name collision
[ 10.926907] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_6 due to name collision
[ 10.926916] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_7 due to name collision
[ 10.926926] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_8 due to name collision
[ 10.926937] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_9 due to name collision
[ 10.926949] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_10 due to name collision
[ 10.926961] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_11 due to name collision
[ 10.926974] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_12 due to name collision
[ 10.926989] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_13 due to name collision
[ 10.927003] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_14 due to name collision
[ 10.927019] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_15 due to name collision
[ 10.927035] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_16 due to name collision
[ 10.927052] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_17 due to name collision
[ 10.927070] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_18 due to name collision
[ 10.927095] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_19 due to name collision
[ 10.927115] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_20 due to name collision
[ 10.927135] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_21 due to name collision
[ 10.927157] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_22 due to name collision
[ 10.927180] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_23 due to name collision
[ 10.927211] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_24 due to name collision
[ 10.927242] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_25 due to name collision
[ 10.927269] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_26 due to name collision
[ 10.927304] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_27 due to name collision
[ 10.927340] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_28 due to name collision
[ 10.927370] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_29 due to name collision
[ 10.927401] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_30 due to name collision
[ 10.927433] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_31 due to name collision
[ 10.927466] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_32 due to name collision
[ 10.927508] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_33 due to name collision
[ 10.927545] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_34 due to name collision
[ 10.927581] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_35 due to name collision
[ 10.927627] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_36 due to name collision
[ 10.927674] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_37 due to name collision
[ 10.927715] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_38 due to name collision
[ 10.927766] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_39 due to name collision
[ 10.927817] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_40 due to name collision
[ 10.927912] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_41 due to name collision
[ 10.927966] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_42 due to name collision
[ 10.928017] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_43 due to name collision
[ 10.928068] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_44 due to name collision
[ 10.928121] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_45 due to name collision
[ 10.928193] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_46 due to name collision
[ 10.928265] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_47 due to name collision
[ 10.928330] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_48 due to name collision
[ 10.928391] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_49 due to name collision
[ 10.928439] snd_hda_intel 0000:02:00.1: enabling device (0000 -> 0002)
[ 10.928457] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_50 due to name collision
[ 10.928543] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_51 due to name collision
[ 10.928575] snd_hda_intel 0000:02:00.1: Disabling MSI
[ 10.928580] snd_hda_intel 0000:02:00.1: Handle vga_switcheroo audio client
[ 10.928616] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_52 due to name collision
[ 10.928691] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_53 due to name collision
[ 10.928759] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_54 due to name collision
[ 10.928842] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_55 due to name collision
[ 10.928935] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_56 due to name collision
[ 10.929020] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_57 due to name collision
[ 10.929100] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_58 due to name collision
[ 10.929183] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_59 due to name collision
[ 10.929284] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_60 due to name collision
[ 10.929371] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_61 due to name collision
[ 10.929472] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_62 due to name collision
[ 10.929566] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_63 due to name collision
[ 10.929664] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_64 due to name collision
[ 10.929766] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_65 due to name collision
[ 10.929870] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_66 due to name collision
[ 10.929964] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_67 due to name collision
[ 10.930080] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_68 due to name collision
[ 10.930188] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_69 due to name collision
[ 10.930297] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_70 due to name collision
[ 10.930433] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_71 due to name collision
[ 10.930542] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_72 due to name collision
[ 10.930664] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_73 due to name collision
[ 10.930784] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_74 due to name collision
[ 10.930905] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_75 due to name collision
[ 10.931031] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_76 due to name collision
[ 10.931159] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_77 due to name collision
[ 10.931300] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_78 due to name collision
[ 10.931431] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_79 due to name collision
[ 10.931558] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_80 due to name collision
[ 10.931695] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_81 due to name collision
[ 10.931835] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_82 due to name collision
[ 10.931969] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_83 due to name collision
[ 10.932117] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_84 due to name collision
[ 10.932280] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_85 due to name collision
[ 10.932424] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_86 due to name collision
[ 10.932588] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_87 due to name collision
[ 10.932758] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_88 due to name collision
[ 10.932909] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_89 due to name collision
[ 10.933079] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_90 due to name collision
[ 10.933155] nouveau 0000:02:00.0: vgaarb: deactivate vga console
[ 10.933239] nouveau 0000:02:00.0: NVIDIA AD104 (194000a1)
[ 10.933252] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_91 due to name collision
[ 10.933411] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_92 due to name collision
[ 10.933596] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_93 due to name collision
[ 10.933763] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_94 due to name collision
[ 10.933949] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_95 due to name collision
[ 10.934120] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_96 due to name collision
[ 10.934311] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_97 due to name collision
[ 10.934504] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_98 due to name collision
[ 10.934687] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_99 due to name collision
[ 10.934885] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_100 due to name collision
[ 10.935075] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_101 due to name collision
[ 10.935280] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_102 due to name collision
[ 10.935529] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_103 due to name collision
[ 10.935770] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_104 due to name collision
[ 10.935980] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_105 due to name collision
[ 10.936199] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_106 due to name collision
[ 10.936453] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_107 due to name collision
[ 10.936683] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_108 due to name collision
[ 10.936909] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_109 due to name collision
[ 10.937135] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_110 due to name collision
[ 10.937369] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_111 due to name collision
[ 10.937606] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_112 due to name collision
[ 10.937841] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_113 due to name collision
[ 10.938089] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_114 due to name collision
[ 10.938333] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_115 due to name collision
[ 10.938581] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_116 due to name collision
[ 10.938843] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_117 due to name collision
[ 10.939104] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_118 due to name collision
[ 10.939377] ite_829x 0003:048D:8910.0002: Led rgb:kbd_backlight renamed to rgb:kbd_backlight_119 due to name collision
[ 10.958491] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card1/input15
[ 10.958554] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card1/input16
[ 10.958621] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card1/input17
[ 10.958682] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.1/0000:02:00.1/sound/card1/input18
[ 10.961969] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC1220: line_outs=1 (0x1b/0x0/0x0/0x0/0x0) type:speaker
[ 10.961976] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 10.961979] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x14/0x0/0x0/0x0/0x0)
[ 10.961981] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 10.961983] snd_hda_codec_realtek hdaudioC0D0: dig-out=0x1e/0x0
[ 10.961985] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 10.961987] snd_hda_codec_realtek hdaudioC0D0: Mic=0x18
[ 10.961989] snd_hda_codec_realtek hdaudioC0D0: Internal Mic=0x12
[ 10.968428] usb 1-6: Found UVC 1.50 device Chicony USB2.0 Camera (04f2:b7e7)
[ 10.972073] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input19
[ 10.972117] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input20
[ 10.979192] usbcore: registered new interface driver uvcvideo
[ 11.103069] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[ 11.103100] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[ 11.103110] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[ 11.103120] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[ 11.103844] iwlwifi 0000:00:14.3: loaded PNVM version e28bb9d7
[ 11.104242] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
[ 11.120653] iwlwifi 0000:00:14.3: Detected RF GF, rfid=0x2010d000
[ 11.189253] iwlwifi 0000:00:14.3: base HW address: dc:97:ba:75:8a:32
[ 11.202264] nouveau 0000:02:00.0: bios: version 95.04.63.00.24
[ 11.228461] iwlwifi 0000:00:14.3 wlp0s20f3: renamed from wlan0
[ 11.580201] BTRFS: device label kfocus_boot devid 1 transid 548 /dev/nvme0n1p2 (259:2) scanned by mount (1397)
[ 11.580802] BTRFS info (device nvme0n1p2): first mount of filesystem abbbc711-9904-466b-8a35-783f0d19bf50
[ 11.580824] BTRFS info (device nvme0n1p2): using crc32c (crc32c-intel) checksum algorithm
[ 11.580830] BTRFS info (device nvme0n1p2): using free-space-tree
[ 11.589444] Adding 524284k swap on /swap/swapfile. Priority:-2 extents:2 across:1686444k
[ 11.615045] audit: type=1400 audit(1730481937.241:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="vscode" pid=1465 comm="apparmor_parser"
[ 11.615058] audit: type=1400 audit(1730481937.241:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="geary" pid=1474 comm="apparmor_parser"
[ 11.615074] audit: type=1400 audit(1730481937.241:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Discord" pid=1453 comm="apparmor_parser"
[ 11.615094] audit: type=1400 audit(1730481937.241:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="QtWebEngineProcess" pid=1455 comm="apparmor_parser"
[ 11.615111] audit: type=1400 audit(1730481937.241:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="busybox" pid=1459 comm="apparmor_parser"
[ 11.615148] audit: type=1400 audit(1730481937.241:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=1456 comm="apparmor_parser"
[ 11.615170] audit: type=1400 audit(1730481937.241:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="devhelp" pid=1467 comm="apparmor_parser"
[ 11.615201] audit: type=1400 audit(1730481937.241:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="buildah" pid=1458 comm="apparmor_parser"
[ 11.615230] audit: type=1400 audit(1730481937.241:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-run" pid=1463 comm="apparmor_parser"
[ 11.615327] audit: type=1400 audit(1730481937.242:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=1457 comm="apparmor_parser"
[ 12.198560] nouveau 0000:02:00.0: DRM: VRAM: 12282 MiB
[ 12.198563] nouveau 0000:02:00.0: DRM: GART: 536870912 MiB
[ 12.254575] nouveau 0000:02:00.0: DRM: MM: using COPY for buffer copies
[ 12.281822] Bluetooth: hci0: Waiting for firmware download to complete
[ 12.282474] Bluetooth: hci0: Firmware loaded in 1385854 usecs
[ 12.282583] Bluetooth: hci0: Waiting for device to boot
[ 12.289868] snd_hda_intel 0000:02:00.1: bound 0000:02:00.0 (ops disp50xx_modifiers [nouveau])
[ 12.294260] acpi device:06: registered as cooling_device36
[ 12.294614] [drm] Initialized nouveau 1.4.0 for 0000:02:00.0 on minor 1
[ 12.298421] Bluetooth: hci0: Malformed MSFT vendor event: 0x02
[ 12.298456] Bluetooth: hci0: Device booted in 15572 usecs
[ 12.300487] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-1040-0041.ddc
[ 12.302368] Bluetooth: hci0: Applying Intel DDC parameters completed
[ 12.305510] Bluetooth: hci0: Firmware timestamp 2023.48 buildtype 1 build 75324
[ 12.305513] Bluetooth: hci0: Firmware SHA1: 0x23bac558
[ 12.309488] Bluetooth: hci0: Fseq status: Success (0x00)
[ 12.309491] Bluetooth: hci0: Fseq executed: 00.00.02.41
[ 12.309492] Bluetooth: hci0: Fseq BT Top: 00.00.02.41
[ 12.312967] fbcon: nouveaudrmfb (fb0) is primary device
[ 12.312970] fbcon: Deferring console take-over
[ 12.312971] nouveau 0000:02:00.0: [drm] fb0: nouveaudrmfb frame buffer device
[ 12.325466] snd_hda_codec_hdmi hdaudioC1D0: HDMI: pin NID 0x4 not registered
[ 12.754904] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 12.754907] Bluetooth: BNEP filters: protocol multicast
[ 12.754911] Bluetooth: BNEP socket layer initialized
[ 12.756339] Bluetooth: MGMT ver 1.23
[ 12.758329] NET: Registered PF_ALG protocol family
[ 12.805440] loop9: detected capacity change from 0 to 8
[ 12.860621] NET: Registered PF_QIPCRTR protocol family
[ 13.511667] iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
[ 13.511712] iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[ 13.511721] iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
[ 13.511730] iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
[ 13.512636] iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
[ 13.613925] iwlwifi 0000:00:14.3: Registered PHC clock: iwlwifi-PTP, with index: 1
[ 16.321153] igc 0000:03:00.0 enp3s0: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[ 16.483260] thunderbolt 0000:06:00.0: 0: suspending switch
[ 16.483268] thunderbolt 0000:06:00.0: 0: enabling wakeup: 0x3f
[ 16.484522] thunderbolt 0000:06:00.0: stopping RX ring 0
[ 16.484540] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[ 16.484561] thunderbolt 0000:06:00.0: stopping TX ring 0
[ 16.484572] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[ 16.484582] thunderbolt 0000:06:00.0: control channel stopped
[ 23.968715] snd_hda_codec_hdmi hdaudioC1D0: HDMI: pin NID 0x4 not registered
[ 25.918258] Bluetooth: RFCOMM TTY layer initialized
[ 25.918263] Bluetooth: RFCOMM socket layer initialized
[ 25.918267] Bluetooth: RFCOMM ver 1.11
[ 29.148667] systemd-journald[823]: /var/log/journal/86d43f3761a64806a644a560706664c5/user-1000.journal: Journal file uses a different sequence number ID, rotating.
[ 30.269637] warning: `kded5' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[ 30.504027] snd_hda_codec_hdmi hdaudioC1D0: HDMI: pin NID 0x4 not registered
[ 31.406806] thunderbolt 0000:06:00.0: control channel starting...
[ 31.406814] thunderbolt 0000:06:00.0: starting TX ring 0
[ 31.406817] xhci_hcd 0000:2d:00.0: xHC error in resume, USBSTS 0x401, Reinit
[ 31.406824] usb usb3: root hub lost power or was reset
[ 31.406823] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 31.406827] usb usb4: root hub lost power or was reset
[ 31.406830] thunderbolt 0000:06:00.0: starting RX ring 0
[ 31.406839] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 31.406847] thunderbolt 0000:06:00.0: 0: resuming switch
[ 31.406850] thunderbolt 0000:06:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[ 31.407014] thunderbolt 0000:06:00.0: 0: disabling wakeup
[ 31.416242] thunderbolt 0000:06:00.0: acking hot plug event on 0:13
[ 31.416262] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
[ 31.416268] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
[ 31.416366] thunderbolt 0000:06:00.0: acking hot plug event on 0:14
[ 31.416378] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
[ 31.416383] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[ 31.416493] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
[ 31.416883] thunderbolt 0000:06:00.0: 0: TMU: mode set to: bi-directional, HiFi
[ 31.419188] thunderbolt 0000:06:00.0: 0:13: DP IN resource available after hotplug
[ 31.419194] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 31.419316] thunderbolt 0000:06:00.0: 0:13: DP IN available
[ 31.419320] thunderbolt 0000:06:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[ 31.420084] thunderbolt 0000:06:00.0: 0:14: DP IN resource available after hotplug
[ 31.420087] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 31.420205] thunderbolt 0000:06:00.0: 0:13: DP IN available
[ 31.420207] thunderbolt 0000:06:00.0: 0:13: no suitable DP OUT adapter available, not tunneling
[ 31.420342] thunderbolt 0000:06:00.0: 0:14: DP IN available
[ 31.420346] thunderbolt 0000:06:00.0: 0:14: no suitable DP OUT adapter available, not tunneling
[ 48.067126] thunderbolt 0000:06:00.0: 0: suspending switch
[ 48.067142] thunderbolt 0000:06:00.0: 0: enabling wakeup: 0x3f
[ 48.068294] thunderbolt 0000:06:00.0: stopping RX ring 0
[ 48.068313] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[ 48.068340] thunderbolt 0000:06:00.0: stopping TX ring 0
[ 48.068354] thunderbolt 0000:06:00.0: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[ 48.068372] thunderbolt 0000:06:00.0: control channel stopped
[ 74.672411] wlp0s20f3: authenticate with a0:55:1f:2f:2c:93 (local address=dc:97:ba:75:8a:32)
[ 74.674290] wlp0s20f3: send auth to a0:55:1f:2f:2c:93 (try 1/3)
[ 74.709306] wlp0s20f3: authenticate with a0:55:1f:2f:2c:93 (local address=dc:97:ba:75:8a:32)
[ 74.709820] wlp0s20f3: send auth to a0:55:1f:2f:2c:93 (try 1/3)
[ 74.711066] wlp0s20f3: authenticated
[ 74.713477] wlp0s20f3: associate with a0:55:1f:2f:2c:93 (try 1/3)
[ 74.723013] wlp0s20f3: RX AssocResp from a0:55:1f:2f:2c:93 (capab=0x1011 status=0 aid=23)
[ 74.732008] wlp0s20f3: associated
[ 91.154234] usb 1-9: new high-speed USB device number 5 using xhci_hcd
[ 91.301556] usb 1-9: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.49
[ 91.301569] usb 1-9: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 91.301574] usb 1-9: Product: 4-Port USB 2.0 Hub
[ 91.301578] usb 1-9: Manufacturer: Generic
[ 91.305500] hub 1-9:1.0: USB hub found
[ 91.307895] hub 1-9:1.0: 4 ports detected
[ 91.599042] usb 1-9.3: new full-speed USB device number 6 using xhci_hcd
[ 91.693409] usb 1-9.3: New USB device found, idVendor=043e, idProduct=9a39, bcdDevice= 4.11
[ 91.693424] usb 1-9.3: New USB device strings: Mfr=1, Product=3, SerialNumber=4
[ 91.693430] usb 1-9.3: Product: LG Monitor Controls
[ 91.693435] usb 1-9.3: Manufacturer: LG Electronics Inc.
[ 91.693438] usb 1-9.3: SerialNumber: 005INTX1F153
[ 91.700128] hid-generic 0003:043E:9A39.0003: hiddev1,hidraw2: USB HID v1.11 Device [LG Electronics Inc. LG Monitor Controls] on usb-0000:00:14.0-9.3/input0
# Display successfully activated HERE using `lscpi -k`
[ 157.749523] xhci_hcd 0000:2d:00.0: xHC error in resume, USBSTS 0x401, Reinit
[ 157.749537] usb usb3: root hub lost power or was reset
[ 157.749541] usb usb4: root hub lost power or was reset
[ 157.749976] thunderbolt 0000:06:00.0: control channel starting...
[ 157.749988] thunderbolt 0000:06:00.0: starting TX ring 0
[ 157.750005] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 157.750067] thunderbolt 0000:06:00.0: starting RX ring 0
[ 157.750084] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 157.750099] thunderbolt 0000:06:00.0: 0: resuming switch
[ 157.750106] thunderbolt 0000:06:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[ 157.750438] thunderbolt 0000:06:00.0: 0: disabling wakeup
[ 157.752800] thunderbolt 0000:06:00.0: acking hot plug event on 0:14
[ 157.752927] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
[ 157.759334] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
[ 157.759341] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
[ 157.759459] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
[ 157.759465] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[ 157.759971] thunderbolt 0000:06:00.0: 0: TMU: mode set to: bi-directional, HiFi
[ 157.760872] thunderbolt 0000:06:00.0: 0:13: enter redrive mode, keeping powered
[ 157.762276] thunderbolt 0000:06:00.0: 0:14: DP IN resource available after hotplug
[ 157.762283] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 157.762405] thunderbolt 0000:06:00.0: 0:14: DP IN available
[ 157.762408] thunderbolt 0000:06:00.0: 0:14: no suitable DP OUT adapter available, not tunneling
[-- Attachment #3: 2024-11-01_6.11.5_tbt-barlow-ridge-02-dmesg.txt --]
[-- Type: text/plain, Size: 269578 bytes --]
[ 47.296472] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.296487] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.296503] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.296504] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.296505] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.296506] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.296506] RIP: 0010:follow_pte+0x220/0x230
[ 47.296508] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.296508] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.296509] RAX: 0000000000000000 RBX: 000077ed8e920000 RCX: ffff99cac101bb60
[ 47.296509] RDX: ffff99cac101bb58 RSI: 000077ed8e920000 RDI: ffff89230b259a98
[ 47.296510] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.296510] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.296511] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff892310d70580
[ 47.296511] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.296512] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.296512] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.296513] PKRU: 55555554
[ 47.296513] Call Trace:
[ 47.296513] <TASK>
[ 47.296514] ? show_regs+0x6c/0x80
[ 47.296515] ? __warn+0x88/0x140
[ 47.296516] ? follow_pte+0x220/0x230
[ 47.296518] ? report_bug+0x182/0x1b0
[ 47.296519] ? handle_bug+0x51/0xa0
[ 47.296520] ? exc_invalid_op+0x18/0x80
[ 47.296522] ? asm_exc_invalid_op+0x1b/0x20
[ 47.296523] ? follow_pte+0x220/0x230
[ 47.296525] follow_phys+0x4e/0x110
[ 47.296526] untrack_pfn+0x57/0x130
[ 47.296528] unmap_single_vma+0xbc/0xf0
[ 47.296529] zap_page_range_single+0x138/0x210
[ 47.296530] unmap_mapping_range+0x11b/0x140
[ 47.296531] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.296644] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.296814] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.296988] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.297107] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.297228] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.297348] ? kthread+0xe1/0x110
[ 47.297349] ? __pfx_kthread+0x10/0x10
[ 47.297350] ? ret_from_fork+0x44/0x70
[ 47.297351] ? __pfx_kthread+0x10/0x10
[ 47.297351] ? ret_from_fork_asm+0x1a/0x30
[ 47.297353] </TASK>
[ 47.297353] ---[ end trace 0000000000000000 ]---
[ 47.297358] ------------[ cut here ]------------
[ 47.297358] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.297360] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.297373] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.297388] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.297404] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.297405] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.297407] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.297407] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.297407] RIP: 0010:follow_pte+0x220/0x230
[ 47.297409] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.297409] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.297410] RAX: 0000000000000000 RBX: 000077ed8f93b000 RCX: ffff99cac101bb60
[ 47.297411] RDX: ffff99cac101bb58 RSI: 000077ed8f93b000 RDI: ffff8923b90f0450
[ 47.297411] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.297411] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.297412] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff892310d70580
[ 47.297412] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.297413] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.297413] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.297414] PKRU: 55555554
[ 47.297414] Call Trace:
[ 47.297415] <TASK>
[ 47.297415] ? show_regs+0x6c/0x80
[ 47.297416] ? __warn+0x88/0x140
[ 47.297417] ? follow_pte+0x220/0x230
[ 47.297419] ? report_bug+0x182/0x1b0
[ 47.297420] ? handle_bug+0x51/0xa0
[ 47.297421] ? exc_invalid_op+0x18/0x80
[ 47.297423] ? asm_exc_invalid_op+0x1b/0x20
[ 47.297424] ? follow_pte+0x220/0x230
[ 47.297426] follow_phys+0x4e/0x110
[ 47.297427] untrack_pfn+0x57/0x130
[ 47.297429] unmap_single_vma+0xbc/0xf0
[ 47.297430] zap_page_range_single+0x138/0x210
[ 47.297431] unmap_mapping_range+0x11b/0x140
[ 47.297432] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.297551] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.297731] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.297919] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.298040] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.298161] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.298280] ? kthread+0xe1/0x110
[ 47.298281] ? __pfx_kthread+0x10/0x10
[ 47.298282] ? ret_from_fork+0x44/0x70
[ 47.298283] ? __pfx_kthread+0x10/0x10
[ 47.298283] ? ret_from_fork_asm+0x1a/0x30
[ 47.298285] </TASK>
[ 47.298285] ---[ end trace 0000000000000000 ]---
[ 47.298290] ------------[ cut here ]------------
[ 47.298290] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.298292] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.298305] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.298320] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.298335] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.298337] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.298338] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.298338] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.298339] RIP: 0010:follow_pte+0x220/0x230
[ 47.298340] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.298341] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.298341] RAX: 0000000000000000 RBX: 0000774200000000 RCX: ffff99cac101bb60
[ 47.298342] RDX: ffff99cac101bb58 RSI: 0000774200000000 RDI: ffff89231b519870
[ 47.298342] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.298343] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.298343] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff892316d19080
[ 47.298344] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.298344] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.298345] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.298345] PKRU: 55555554
[ 47.298345] Call Trace:
[ 47.298346] <TASK>
[ 47.298346] ? show_regs+0x6c/0x80
[ 47.298347] ? __warn+0x88/0x140
[ 47.298349] ? follow_pte+0x220/0x230
[ 47.298350] ? report_bug+0x182/0x1b0
[ 47.298351] ? handle_bug+0x51/0xa0
[ 47.298353] ? exc_invalid_op+0x18/0x80
[ 47.298354] ? asm_exc_invalid_op+0x1b/0x20
[ 47.298355] ? follow_pte+0x220/0x230
[ 47.298357] follow_phys+0x4e/0x110
[ 47.298359] untrack_pfn+0x57/0x130
[ 47.298360] unmap_single_vma+0xbc/0xf0
[ 47.298361] zap_page_range_single+0x138/0x210
[ 47.298363] unmap_mapping_range+0x11b/0x140
[ 47.298364] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.298473] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.298634] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.298795] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.298964] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.299085] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.299204] ? kthread+0xe1/0x110
[ 47.299205] ? __pfx_kthread+0x10/0x10
[ 47.299206] ? ret_from_fork+0x44/0x70
[ 47.299207] ? __pfx_kthread+0x10/0x10
[ 47.299208] ? ret_from_fork_asm+0x1a/0x30
[ 47.299209] </TASK>
[ 47.299210] ---[ end trace 0000000000000000 ]---
[ 47.299224] ------------[ cut here ]------------
[ 47.299225] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.299227] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.299239] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.299254] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.299270] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.299272] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.299273] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.299273] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.299273] RIP: 0010:follow_pte+0x220/0x230
[ 47.299275] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.299276] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.299276] RAX: 0000000000000000 RBX: 00007d5c20801000 RCX: ffff99cac101bb60
[ 47.299277] RDX: ffff99cac101bb58 RSI: 00007d5c20801000 RDI: ffff89231b519b50
[ 47.299277] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.299278] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.299278] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff89230d400b00
[ 47.299279] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.299279] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.299280] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.299280] PKRU: 55555554
[ 47.299281] Call Trace:
[ 47.299281] <TASK>
[ 47.299281] ? show_regs+0x6c/0x80
[ 47.299283] ? __warn+0x88/0x140
[ 47.299284] ? follow_pte+0x220/0x230
[ 47.299286] ? report_bug+0x182/0x1b0
[ 47.299287] ? handle_bug+0x51/0xa0
[ 47.299288] ? exc_invalid_op+0x18/0x80
[ 47.299290] ? asm_exc_invalid_op+0x1b/0x20
[ 47.299291] ? follow_pte+0x220/0x230
[ 47.299293] follow_phys+0x4e/0x110
[ 47.299294] untrack_pfn+0x57/0x130
[ 47.299296] unmap_single_vma+0xbc/0xf0
[ 47.299297] zap_page_range_single+0x138/0x210
[ 47.299298] unmap_mapping_range+0x11b/0x140
[ 47.299299] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.299418] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.299595] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.299771] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.299936] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.300059] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.300178] ? kthread+0xe1/0x110
[ 47.300179] ? __pfx_kthread+0x10/0x10
[ 47.300180] ? ret_from_fork+0x44/0x70
[ 47.300181] ? __pfx_kthread+0x10/0x10
[ 47.300182] ? ret_from_fork_asm+0x1a/0x30
[ 47.300183] </TASK>
[ 47.300184] ---[ end trace 0000000000000000 ]---
[ 47.300189] ------------[ cut here ]------------
[ 47.300189] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.300191] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.300204] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.300219] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.300235] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.300237] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.300238] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.300238] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.300239] RIP: 0010:follow_pte+0x220/0x230
[ 47.300240] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.300241] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.300241] RAX: 0000000000000000 RBX: 00007741f92a5000 RCX: ffff99cac101bb60
[ 47.300242] RDX: ffff99cac101bb58 RSI: 00007741f92a5000 RDI: ffff892326f5f9e0
[ 47.300242] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.300243] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.300243] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff892316d19080
[ 47.300244] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.300244] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.300245] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.300245] PKRU: 55555554
[ 47.300246] Call Trace:
[ 47.300246] <TASK>
[ 47.300246] ? show_regs+0x6c/0x80
[ 47.300247] ? __warn+0x88/0x140
[ 47.300249] ? follow_pte+0x220/0x230
[ 47.300251] ? report_bug+0x182/0x1b0
[ 47.300252] ? handle_bug+0x51/0xa0
[ 47.300253] ? exc_invalid_op+0x18/0x80
[ 47.300254] ? asm_exc_invalid_op+0x1b/0x20
[ 47.300256] ? follow_pte+0x220/0x230
[ 47.300257] follow_phys+0x4e/0x110
[ 47.300259] untrack_pfn+0x57/0x130
[ 47.300261] unmap_single_vma+0xbc/0xf0
[ 47.300261] zap_page_range_single+0x138/0x210
[ 47.300263] unmap_mapping_range+0x11b/0x140
[ 47.300264] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.300381] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.300539] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.300699] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.300806] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.300977] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.301098] ? kthread+0xe1/0x110
[ 47.301099] ? __pfx_kthread+0x10/0x10
[ 47.301100] ? ret_from_fork+0x44/0x70
[ 47.301101] ? __pfx_kthread+0x10/0x10
[ 47.301102] ? ret_from_fork_asm+0x1a/0x30
[ 47.301103] </TASK>
[ 47.301103] ---[ end trace 0000000000000000 ]---
[ 47.301109] ------------[ cut here ]------------
[ 47.301110] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.301112] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.301125] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.301140] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.301156] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.301158] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.301159] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.301159] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.301160] RIP: 0010:follow_pte+0x220/0x230
[ 47.301161] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.301162] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.301162] RAX: 0000000000000000 RBX: 00007d5c1d661000 RCX: ffff99cac101bb60
[ 47.301163] RDX: ffff99cac101bb58 RSI: 00007d5c1d661000 RDI: ffff89239fd7a7e8
[ 47.301163] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.301164] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.301164] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff89230d400b00
[ 47.301165] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.301165] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.301166] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.301166] PKRU: 55555554
[ 47.301167] Call Trace:
[ 47.301167] <TASK>
[ 47.301167] ? show_regs+0x6c/0x80
[ 47.301168] ? __warn+0x88/0x140
[ 47.301170] ? follow_pte+0x220/0x230
[ 47.301171] ? report_bug+0x182/0x1b0
[ 47.301173] ? handle_bug+0x51/0xa0
[ 47.301174] ? exc_invalid_op+0x18/0x80
[ 47.301175] ? asm_exc_invalid_op+0x1b/0x20
[ 47.301177] ? follow_pte+0x220/0x230
[ 47.301178] follow_phys+0x4e/0x110
[ 47.301180] untrack_pfn+0x57/0x130
[ 47.301182] unmap_single_vma+0xbc/0xf0
[ 47.301182] zap_page_range_single+0x138/0x210
[ 47.301184] unmap_mapping_range+0x11b/0x140
[ 47.301185] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.301304] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.301481] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.301646] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.301754] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.301890] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.302008] ? kthread+0xe1/0x110
[ 47.302009] ? __pfx_kthread+0x10/0x10
[ 47.302009] ? ret_from_fork+0x44/0x70
[ 47.302010] ? __pfx_kthread+0x10/0x10
[ 47.302011] ? ret_from_fork_asm+0x1a/0x30
[ 47.302013] </TASK>
[ 47.302013] ---[ end trace 0000000000000000 ]---
[ 47.302019] ------------[ cut here ]------------
[ 47.302019] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.302021] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.302034] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.302049] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.302064] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.302066] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.302067] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.302067] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.302067] RIP: 0010:follow_pte+0x220/0x230
[ 47.302069] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.302070] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.302070] RAX: 0000000000000000 RBX: 00007012c6116000 RCX: ffff99cac101bb60
[ 47.302071] RDX: ffff99cac101bb58 RSI: 00007012c6116000 RDI: ffff8923b71d0da8
[ 47.302071] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.302072] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.302072] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff892312bdee00
[ 47.302073] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.302073] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.302074] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.302074] PKRU: 55555554
[ 47.302074] Call Trace:
[ 47.302075] <TASK>
[ 47.302075] ? show_regs+0x6c/0x80
[ 47.302076] ? __warn+0x88/0x140
[ 47.302078] ? follow_pte+0x220/0x230
[ 47.302079] ? report_bug+0x182/0x1b0
[ 47.302080] ? handle_bug+0x51/0xa0
[ 47.302082] ? exc_invalid_op+0x18/0x80
[ 47.302083] ? asm_exc_invalid_op+0x1b/0x20
[ 47.302084] ? follow_pte+0x220/0x230
[ 47.302086] follow_phys+0x4e/0x110
[ 47.302087] untrack_pfn+0x57/0x130
[ 47.302089] unmap_single_vma+0xbc/0xf0
[ 47.302090] zap_page_range_single+0x138/0x210
[ 47.302091] unmap_mapping_range+0x11b/0x140
[ 47.302092] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.302211] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.302383] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.302541] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.302648] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.302757] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.302891] ? kthread+0xe1/0x110
[ 47.302892] ? __pfx_kthread+0x10/0x10
[ 47.302893] ? ret_from_fork+0x44/0x70
[ 47.302894] ? __pfx_kthread+0x10/0x10
[ 47.302895] ? ret_from_fork_asm+0x1a/0x30
[ 47.302897] </TASK>
[ 47.302897] ---[ end trace 0000000000000000 ]---
[ 47.302902] ------------[ cut here ]------------
[ 47.302902] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.302904] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.302917] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.302936] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.302952] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.302954] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.302955] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.302955] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.302955] RIP: 0010:follow_pte+0x220/0x230
[ 47.302957] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.302958] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.302958] RAX: 0000000000000000 RBX: 00007741fa530000 RCX: ffff99cac101bb60
[ 47.302959] RDX: ffff99cac101bb58 RSI: 00007741fa530000 RDI: ffff89239728a8a0
[ 47.302959] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.302960] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.302960] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff892316d19080
[ 47.302960] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.302961] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.302962] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.302962] PKRU: 55555554
[ 47.302962] Call Trace:
[ 47.302963] <TASK>
[ 47.302963] ? show_regs+0x6c/0x80
[ 47.302964] ? __warn+0x88/0x140
[ 47.302966] ? follow_pte+0x220/0x230
[ 47.302967] ? report_bug+0x182/0x1b0
[ 47.302968] ? handle_bug+0x51/0xa0
[ 47.302970] ? exc_invalid_op+0x18/0x80
[ 47.302971] ? asm_exc_invalid_op+0x1b/0x20
[ 47.302973] ? follow_pte+0x220/0x230
[ 47.302975] follow_phys+0x4e/0x110
[ 47.302976] untrack_pfn+0x57/0x130
[ 47.302978] unmap_single_vma+0xbc/0xf0
[ 47.302979] zap_page_range_single+0x138/0x210
[ 47.302980] unmap_mapping_range+0x11b/0x140
[ 47.302982] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.303100] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.303282] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.303454] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.303562] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.303670] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.303778] ? kthread+0xe1/0x110
[ 47.303779] ? __pfx_kthread+0x10/0x10
[ 47.303779] ? ret_from_fork+0x44/0x70
[ 47.303780] ? __pfx_kthread+0x10/0x10
[ 47.303781] ? ret_from_fork_asm+0x1a/0x30
[ 47.303782] </TASK>
[ 47.303783] ---[ end trace 0000000000000000 ]---
[ 47.303786] ------------[ cut here ]------------
[ 47.303787] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.303788] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.303800] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.303814] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.303828] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.303829] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.303831] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.303831] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.303831] RIP: 0010:follow_pte+0x220/0x230
[ 47.303833] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.303833] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.303838] RAX: 0000000000000000 RBX: 00007d5c1e3b4000 RCX: ffff99cac101bb60
[ 47.303838] RDX: ffff99cac101bb58 RSI: 00007d5c1e3b4000 RDI: ffff8923b71f52b0
[ 47.303839] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.303840] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.303840] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff89230d400b00
[ 47.303841] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.303842] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.303843] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.303843] PKRU: 55555554
[ 47.303844] Call Trace:
[ 47.303844] <TASK>
[ 47.303844] ? show_regs+0x6c/0x80
[ 47.303845] ? __warn+0x88/0x140
[ 47.303847] ? follow_pte+0x220/0x230
[ 47.303849] ? report_bug+0x182/0x1b0
[ 47.303850] ? handle_bug+0x51/0xa0
[ 47.303851] ? exc_invalid_op+0x18/0x80
[ 47.303853] ? asm_exc_invalid_op+0x1b/0x20
[ 47.303854] ? follow_pte+0x220/0x230
[ 47.303856] follow_phys+0x4e/0x110
[ 47.303857] untrack_pfn+0x57/0x130
[ 47.303859] unmap_single_vma+0xbc/0xf0
[ 47.303860] zap_page_range_single+0x138/0x210
[ 47.303861] unmap_mapping_range+0x11b/0x140
[ 47.303862] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.303975] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.304149] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.304326] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.304446] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.304563] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.304670] ? kthread+0xe1/0x110
[ 47.304671] ? __pfx_kthread+0x10/0x10
[ 47.304672] ? ret_from_fork+0x44/0x70
[ 47.304672] ? __pfx_kthread+0x10/0x10
[ 47.304673] ? ret_from_fork_asm+0x1a/0x30
[ 47.304674] </TASK>
[ 47.304675] ---[ end trace 0000000000000000 ]---
[ 47.304678] ------------[ cut here ]------------
[ 47.304678] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.304680] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.304692] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.304705] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.304719] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.304720] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.304721] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.304722] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.304722] RIP: 0010:follow_pte+0x220/0x230
[ 47.304723] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.304724] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.304724] RAX: 0000000000000000 RBX: 00007012c4edb000 RCX: ffff99cac101bb60
[ 47.304725] RDX: ffff99cac101bb58 RSI: 00007012c4edb000 RDI: ffff8923b926bc08
[ 47.304725] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.304726] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.304726] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff892312bdee00
[ 47.304726] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.304727] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.304727] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.304728] PKRU: 55555554
[ 47.304728] Call Trace:
[ 47.304728] <TASK>
[ 47.304729] ? show_regs+0x6c/0x80
[ 47.304730] ? __warn+0x88/0x140
[ 47.304731] ? follow_pte+0x220/0x230
[ 47.304732] ? report_bug+0x182/0x1b0
[ 47.304733] ? handle_bug+0x51/0xa0
[ 47.304735] ? exc_invalid_op+0x18/0x80
[ 47.304736] ? asm_exc_invalid_op+0x1b/0x20
[ 47.304737] ? follow_pte+0x220/0x230
[ 47.304738] follow_phys+0x4e/0x110
[ 47.304740] untrack_pfn+0x57/0x130
[ 47.304741] unmap_single_vma+0xbc/0xf0
[ 47.304742] zap_page_range_single+0x138/0x210
[ 47.304743] unmap_mapping_range+0x11b/0x140
[ 47.304744] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.304864] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.305038] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.305217] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.305337] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.305459] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.305579] ? kthread+0xe1/0x110
[ 47.305580] ? __pfx_kthread+0x10/0x10
[ 47.305581] ? ret_from_fork+0x44/0x70
[ 47.305582] ? __pfx_kthread+0x10/0x10
[ 47.305583] ? ret_from_fork_asm+0x1a/0x30
[ 47.305584] </TASK>
[ 47.305584] ---[ end trace 0000000000000000 ]---
[ 47.305591] ------------[ cut here ]------------
[ 47.305592] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.305594] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.305607] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.305622] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.305638] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.305639] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.305641] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.305641] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.305641] RIP: 0010:follow_pte+0x220/0x230
[ 47.305643] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.305643] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.305644] RAX: 0000000000000000 RBX: 00007012c612e000 RCX: ffff99cac101bb60
[ 47.305645] RDX: ffff99cac101bb58 RSI: 00007012c612e000 RDI: ffff8923a00f9928
[ 47.305645] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.305646] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.305646] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff892312bdee00
[ 47.305647] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.305647] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.305648] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.305648] PKRU: 55555554
[ 47.305648] Call Trace:
[ 47.305649] <TASK>
[ 47.305649] ? show_regs+0x6c/0x80
[ 47.305650] ? __warn+0x88/0x140
[ 47.305652] ? follow_pte+0x220/0x230
[ 47.305653] ? report_bug+0x182/0x1b0
[ 47.305654] ? handle_bug+0x51/0xa0
[ 47.305656] ? exc_invalid_op+0x18/0x80
[ 47.305657] ? asm_exc_invalid_op+0x1b/0x20
[ 47.305658] ? follow_pte+0x220/0x230
[ 47.305660] follow_phys+0x4e/0x110
[ 47.305662] untrack_pfn+0x57/0x130
[ 47.305663] unmap_single_vma+0xbc/0xf0
[ 47.305664] zap_page_range_single+0x138/0x210
[ 47.305665] unmap_mapping_range+0x11b/0x140
[ 47.305667] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.305786] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.305981] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.306162] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.306281] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.306402] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.306512] ? kthread+0xe1/0x110
[ 47.306513] ? __pfx_kthread+0x10/0x10
[ 47.306514] ? ret_from_fork+0x44/0x70
[ 47.306515] ? __pfx_kthread+0x10/0x10
[ 47.306516] ? ret_from_fork_asm+0x1a/0x30
[ 47.306517] </TASK>
[ 47.306517] ---[ end trace 0000000000000000 ]---
[ 47.306522] ------------[ cut here ]------------
[ 47.306522] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.306524] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.306535] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.306549] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.306563] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.306564] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.306565] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.306566] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.306566] RIP: 0010:follow_pte+0x220/0x230
[ 47.306567] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.306568] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.306569] RAX: 0000000000000000 RBX: 00007f65e7606000 RCX: ffff99cac101bb60
[ 47.306569] RDX: ffff99cac101bb58 RSI: 00007f65e7606000 RDI: ffff8923357c1420
[ 47.306569] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.306570] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.306570] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff89230c1dc200
[ 47.306571] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.306571] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.306571] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.306572] PKRU: 55555554
[ 47.306572] Call Trace:
[ 47.306572] <TASK>
[ 47.306573] ? show_regs+0x6c/0x80
[ 47.306574] ? __warn+0x88/0x140
[ 47.306575] ? follow_pte+0x220/0x230
[ 47.306577] ? report_bug+0x182/0x1b0
[ 47.306578] ? handle_bug+0x51/0xa0
[ 47.306579] ? exc_invalid_op+0x18/0x80
[ 47.306580] ? asm_exc_invalid_op+0x1b/0x20
[ 47.306581] ? follow_pte+0x220/0x230
[ 47.306583] follow_phys+0x4e/0x110
[ 47.306584] untrack_pfn+0x57/0x130
[ 47.306585] unmap_single_vma+0xbc/0xf0
[ 47.306586] zap_page_range_single+0x138/0x210
[ 47.306587] unmap_mapping_range+0x11b/0x140
[ 47.306589] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.306695] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.306861] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.307032] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.307151] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.307272] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.307392] ? kthread+0xe1/0x110
[ 47.307392] ? __pfx_kthread+0x10/0x10
[ 47.307393] ? ret_from_fork+0x44/0x70
[ 47.307394] ? __pfx_kthread+0x10/0x10
[ 47.307395] ? ret_from_fork_asm+0x1a/0x30
[ 47.307397] </TASK>
[ 47.307397] ---[ end trace 0000000000000000 ]---
[ 47.307401] ------------[ cut here ]------------
[ 47.307402] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.307404] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.307416] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.307432] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.307447] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.307449] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.307450] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.307450] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.307451] RIP: 0010:follow_pte+0x220/0x230
[ 47.307452] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.307453] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.307453] RAX: 0000000000000000 RBX: 00007981b3cf8000 RCX: ffff99cac101bb60
[ 47.307454] RDX: ffff99cac101bb58 RSI: 00007981b3cf8000 RDI: ffff89231b5bcac8
[ 47.307454] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.307455] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.307455] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff8923086a5d80
[ 47.307456] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.307456] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.307457] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.307457] PKRU: 55555554
[ 47.307457] Call Trace:
[ 47.307458] <TASK>
[ 47.307458] ? show_regs+0x6c/0x80
[ 47.307459] ? __warn+0x88/0x140
[ 47.307461] ? follow_pte+0x220/0x230
[ 47.307462] ? report_bug+0x182/0x1b0
[ 47.307463] ? handle_bug+0x51/0xa0
[ 47.307465] ? exc_invalid_op+0x18/0x80
[ 47.307466] ? asm_exc_invalid_op+0x1b/0x20
[ 47.307467] ? follow_pte+0x220/0x230
[ 47.307469] follow_phys+0x4e/0x110
[ 47.307470] untrack_pfn+0x57/0x130
[ 47.307472] unmap_single_vma+0xbc/0xf0
[ 47.307473] zap_page_range_single+0x138/0x210
[ 47.307474] unmap_mapping_range+0x11b/0x140
[ 47.307475] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.307594] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.307774] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.307968] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.308089] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.308210] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.308329] ? kthread+0xe1/0x110
[ 47.308329] ? __pfx_kthread+0x10/0x10
[ 47.308330] ? ret_from_fork+0x44/0x70
[ 47.308331] ? __pfx_kthread+0x10/0x10
[ 47.308332] ? ret_from_fork_asm+0x1a/0x30
[ 47.308334] </TASK>
[ 47.308334] ---[ end trace 0000000000000000 ]---
[ 47.308341] ------------[ cut here ]------------
[ 47.308341] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.308343] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.308356] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.308371] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.308387] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.308388] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.308389] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.308389] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.308390] RIP: 0010:follow_pte+0x220/0x230
[ 47.308391] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.308392] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.308393] RAX: 0000000000000000 RBX: 000070aaf76b6000 RCX: ffff99cac101bb60
[ 47.308393] RDX: ffff99cac101bb58 RSI: 000070aaf76b6000 RDI: ffff89231b71b648
[ 47.308393] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.308394] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.308394] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff892315d30b00
[ 47.308395] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.308395] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.308396] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.308396] PKRU: 55555554
[ 47.308397] Call Trace:
[ 47.308397] <TASK>
[ 47.308397] ? show_regs+0x6c/0x80
[ 47.308398] ? __warn+0x88/0x140
[ 47.308400] ? follow_pte+0x220/0x230
[ 47.308401] ? report_bug+0x182/0x1b0
[ 47.308402] ? handle_bug+0x51/0xa0
[ 47.308404] ? exc_invalid_op+0x18/0x80
[ 47.308405] ? asm_exc_invalid_op+0x1b/0x20
[ 47.308406] ? follow_pte+0x220/0x230
[ 47.308408] follow_phys+0x4e/0x110
[ 47.308410] untrack_pfn+0x57/0x130
[ 47.308411] unmap_single_vma+0xbc/0xf0
[ 47.308412] zap_page_range_single+0x138/0x210
[ 47.308413] unmap_mapping_range+0x11b/0x140
[ 47.308415] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.308534] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.308706] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.308872] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.308985] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.309107] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.309226] ? kthread+0xe1/0x110
[ 47.309227] ? __pfx_kthread+0x10/0x10
[ 47.309228] ? ret_from_fork+0x44/0x70
[ 47.309229] ? __pfx_kthread+0x10/0x10
[ 47.309230] ? ret_from_fork_asm+0x1a/0x30
[ 47.309231] </TASK>
[ 47.309232] ---[ end trace 0000000000000000 ]---
[ 47.309236] ------------[ cut here ]------------
[ 47.309236] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.309238] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.309251] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.309266] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.309282] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.309284] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.309285] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.309285] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.309286] RIP: 0010:follow_pte+0x220/0x230
[ 47.309287] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.309288] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.309288] RAX: 0000000000000000 RBX: 000077a51077a000 RCX: ffff99cac101bb60
[ 47.309289] RDX: ffff99cac101bb58 RSI: 000077a51077a000 RDI: ffff892397288b80
[ 47.309289] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.309290] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.309290] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff892308031600
[ 47.309291] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.309291] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.309292] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.309292] PKRU: 55555554
[ 47.309293] Call Trace:
[ 47.309293] <TASK>
[ 47.309293] ? show_regs+0x6c/0x80
[ 47.309294] ? __warn+0x88/0x140
[ 47.309296] ? follow_pte+0x220/0x230
[ 47.309297] ? report_bug+0x182/0x1b0
[ 47.309298] ? handle_bug+0x51/0xa0
[ 47.309300] ? exc_invalid_op+0x18/0x80
[ 47.309301] ? asm_exc_invalid_op+0x1b/0x20
[ 47.309302] ? follow_pte+0x220/0x230
[ 47.309304] follow_phys+0x4e/0x110
[ 47.309306] untrack_pfn+0x57/0x130
[ 47.309307] unmap_single_vma+0xbc/0xf0
[ 47.309308] zap_page_range_single+0x138/0x210
[ 47.309309] unmap_mapping_range+0x11b/0x140
[ 47.309311] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.309423] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.309585] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.309744] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.309851] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.310032] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.310154] ? kthread+0xe1/0x110
[ 47.310155] ? __pfx_kthread+0x10/0x10
[ 47.310156] ? ret_from_fork+0x44/0x70
[ 47.310157] ? __pfx_kthread+0x10/0x10
[ 47.310158] ? ret_from_fork_asm+0x1a/0x30
[ 47.310159] </TASK>
[ 47.310160] ---[ end trace 0000000000000000 ]---
[ 47.310166] ------------[ cut here ]------------
[ 47.310166] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.310168] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.310181] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.310196] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.310211] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.310213] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.310214] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.310214] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.310215] RIP: 0010:follow_pte+0x220/0x230
[ 47.310216] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.310217] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.310217] RAX: 0000000000000000 RBX: 000077a509f17000 RCX: ffff99cac101bb60
[ 47.310218] RDX: ffff99cac101bb58 RSI: 000077a509f17000 RDI: ffff89233f07f700
[ 47.310218] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.310219] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.310219] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff892308031600
[ 47.310220] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.310220] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.310221] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.310221] PKRU: 55555554
[ 47.310222] Call Trace:
[ 47.310222] <TASK>
[ 47.310222] ? show_regs+0x6c/0x80
[ 47.310223] ? __warn+0x88/0x140
[ 47.310225] ? follow_pte+0x220/0x230
[ 47.310226] ? report_bug+0x182/0x1b0
[ 47.310228] ? handle_bug+0x51/0xa0
[ 47.310229] ? exc_invalid_op+0x18/0x80
[ 47.310230] ? asm_exc_invalid_op+0x1b/0x20
[ 47.310232] ? follow_pte+0x220/0x230
[ 47.310233] follow_phys+0x4e/0x110
[ 47.310235] untrack_pfn+0x57/0x130
[ 47.310237] unmap_single_vma+0xbc/0xf0
[ 47.310237] zap_page_range_single+0x138/0x210
[ 47.310239] unmap_mapping_range+0x11b/0x140
[ 47.310240] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.310359] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.310533] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.310693] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.310800] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.310943] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.311058] ? kthread+0xe1/0x110
[ 47.311059] ? __pfx_kthread+0x10/0x10
[ 47.311060] ? ret_from_fork+0x44/0x70
[ 47.311061] ? __pfx_kthread+0x10/0x10
[ 47.311061] ? ret_from_fork_asm+0x1a/0x30
[ 47.311063] </TASK>
[ 47.311063] ---[ end trace 0000000000000000 ]---
[ 47.311068] ------------[ cut here ]------------
[ 47.311069] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.311071] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.311083] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.311098] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.311114] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.311115] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.311116] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.311117] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.311117] RIP: 0010:follow_pte+0x220/0x230
[ 47.311118] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.311119] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.311120] RAX: 0000000000000000 RBX: 000070aaf61bc000 RCX: ffff99cac101bb60
[ 47.311120] RDX: ffff99cac101bb58 RSI: 000070aaf61bc000 RDI: ffff89233696f1f8
[ 47.311121] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.311121] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.311122] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff892315d30b00
[ 47.311122] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.311123] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.311123] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.311124] PKRU: 55555554
[ 47.311124] Call Trace:
[ 47.311124] <TASK>
[ 47.311125] ? show_regs+0x6c/0x80
[ 47.311126] ? __warn+0x88/0x140
[ 47.311127] ? follow_pte+0x220/0x230
[ 47.311129] ? report_bug+0x182/0x1b0
[ 47.311130] ? handle_bug+0x51/0xa0
[ 47.311131] ? exc_invalid_op+0x18/0x80
[ 47.311132] ? asm_exc_invalid_op+0x1b/0x20
[ 47.311134] ? follow_pte+0x220/0x230
[ 47.311135] follow_phys+0x4e/0x110
[ 47.311137] untrack_pfn+0x57/0x130
[ 47.311138] unmap_single_vma+0xbc/0xf0
[ 47.311139] zap_page_range_single+0x138/0x210
[ 47.311141] unmap_mapping_range+0x11b/0x140
[ 47.311142] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.311261] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.311433] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.311603] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.311722] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.311843] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.312011] ? kthread+0xe1/0x110
[ 47.312013] ? __pfx_kthread+0x10/0x10
[ 47.312014] ? ret_from_fork+0x44/0x70
[ 47.312015] ? __pfx_kthread+0x10/0x10
[ 47.312016] ? ret_from_fork_asm+0x1a/0x30
[ 47.312018] </TASK>
[ 47.312018] ---[ end trace 0000000000000000 ]---
[ 47.312024] ------------[ cut here ]------------
[ 47.312024] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.312026] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.312040] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.312055] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.312071] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.312072] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.312073] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.312074] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.312074] RIP: 0010:follow_pte+0x220/0x230
[ 47.312076] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.312077] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.312077] RAX: 0000000000000000 RBX: 000070aaf76bd000 RCX: ffff99cac101bb60
[ 47.312078] RDX: ffff99cac101bb58 RSI: 000070aaf76bd000 RDI: ffff8923a0b091f8
[ 47.312079] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.312079] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.312080] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff892315d30b00
[ 47.312080] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.312081] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.312081] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.312082] PKRU: 55555554
[ 47.312082] Call Trace:
[ 47.312083] <TASK>
[ 47.312083] ? show_regs+0x6c/0x80
[ 47.312084] ? __warn+0x88/0x140
[ 47.312086] ? follow_pte+0x220/0x230
[ 47.312087] ? report_bug+0x182/0x1b0
[ 47.312088] ? handle_bug+0x51/0xa0
[ 47.312090] ? exc_invalid_op+0x18/0x80
[ 47.312091] ? asm_exc_invalid_op+0x1b/0x20
[ 47.312092] ? follow_pte+0x220/0x230
[ 47.312094] follow_phys+0x4e/0x110
[ 47.312096] untrack_pfn+0x57/0x130
[ 47.312097] unmap_single_vma+0xbc/0xf0
[ 47.312098] zap_page_range_single+0x138/0x210
[ 47.312100] unmap_mapping_range+0x11b/0x140
[ 47.312101] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.312220] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.312398] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.312572] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.312679] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.312786] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.312911] ? kthread+0xe1/0x110
[ 47.312912] ? __pfx_kthread+0x10/0x10
[ 47.312913] ? ret_from_fork+0x44/0x70
[ 47.312914] ? __pfx_kthread+0x10/0x10
[ 47.312915] ? ret_from_fork_asm+0x1a/0x30
[ 47.312917] </TASK>
[ 47.312917] ---[ end trace 0000000000000000 ]---
[ 47.312921] ------------[ cut here ]------------
[ 47.312921] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.312923] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.312937] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.312952] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.312968] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.312969] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.312971] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.312971] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.312971] RIP: 0010:follow_pte+0x220/0x230
[ 47.312973] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.312974] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.312974] RAX: 0000000000000000 RBX: 000077a50ac6b000 RCX: ffff99cac101bb60
[ 47.312975] RDX: ffff99cac101bb58 RSI: 000077a50ac6b000 RDI: ffff89230c7a92b0
[ 47.312975] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.312976] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.312976] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff892308031600
[ 47.312977] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.312977] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.312978] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.312978] PKRU: 55555554
[ 47.312979] Call Trace:
[ 47.312979] <TASK>
[ 47.312979] ? show_regs+0x6c/0x80
[ 47.312980] ? __warn+0x88/0x140
[ 47.312982] ? follow_pte+0x220/0x230
[ 47.312983] ? report_bug+0x182/0x1b0
[ 47.312984] ? handle_bug+0x51/0xa0
[ 47.312986] ? exc_invalid_op+0x18/0x80
[ 47.312987] ? asm_exc_invalid_op+0x1b/0x20
[ 47.312988] ? follow_pte+0x220/0x230
[ 47.312990] follow_phys+0x4e/0x110
[ 47.312992] untrack_pfn+0x57/0x130
[ 47.312993] unmap_single_vma+0xbc/0xf0
[ 47.312994] zap_page_range_single+0x138/0x210
[ 47.312996] unmap_mapping_range+0x11b/0x140
[ 47.312997] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.313117] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.313294] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.313472] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.313592] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.313701] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.313808] ? kthread+0xe1/0x110
[ 47.313809] ? __pfx_kthread+0x10/0x10
[ 47.313809] ? ret_from_fork+0x44/0x70
[ 47.313810] ? __pfx_kthread+0x10/0x10
[ 47.313811] ? ret_from_fork_asm+0x1a/0x30
[ 47.313813] </TASK>
[ 47.313813] ---[ end trace 0000000000000000 ]---
[ 47.313817] ------------[ cut here ]------------
[ 47.313817] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.313819] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.313831] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.313845] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.313859] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.313860] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.313861] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.313861] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.313862] RIP: 0010:follow_pte+0x220/0x230
[ 47.313863] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.313864] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.313864] RAX: 0000000000000000 RBX: 00007f65f0007000 RCX: ffff99cac101bb60
[ 47.313865] RDX: ffff99cac101bb58 RSI: 00007f65f0007000 RDI: ffff89239994a000
[ 47.313865] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.313865] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.313866] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff89230c1dc200
[ 47.313866] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.313867] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.313867] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.313868] PKRU: 55555554
[ 47.313868] Call Trace:
[ 47.313868] <TASK>
[ 47.313869] ? show_regs+0x6c/0x80
[ 47.313870] ? __warn+0x88/0x140
[ 47.313871] ? follow_pte+0x220/0x230
[ 47.313876] ? report_bug+0x182/0x1b0
[ 47.313877] ? handle_bug+0x51/0xa0
[ 47.313879] ? exc_invalid_op+0x18/0x80
[ 47.313880] ? asm_exc_invalid_op+0x1b/0x20
[ 47.313881] ? follow_pte+0x220/0x230
[ 47.313883] follow_phys+0x4e/0x110
[ 47.313884] untrack_pfn+0x57/0x130
[ 47.313886] unmap_single_vma+0xbc/0xf0
[ 47.313887] zap_page_range_single+0x138/0x210
[ 47.313888] unmap_mapping_range+0x11b/0x140
[ 47.313889] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.313998] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.314175] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.314356] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.314475] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.314596] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.314705] ? kthread+0xe1/0x110
[ 47.314705] ? __pfx_kthread+0x10/0x10
[ 47.314706] ? ret_from_fork+0x44/0x70
[ 47.314707] ? __pfx_kthread+0x10/0x10
[ 47.314708] ? ret_from_fork_asm+0x1a/0x30
[ 47.314709] </TASK>
[ 47.314709] ---[ end trace 0000000000000000 ]---
[ 47.314714] ------------[ cut here ]------------
[ 47.314714] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.314716] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.314727] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.314741] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.314756] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.314757] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.314758] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.314758] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.314758] RIP: 0010:follow_pte+0x220/0x230
[ 47.314760] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.314760] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.314761] RAX: 0000000000000000 RBX: 00007f65f0012000 RCX: ffff99cac101bb60
[ 47.314761] RDX: ffff99cac101bb58 RSI: 00007f65f0012000 RDI: ffff8923085b7e30
[ 47.314762] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.314762] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.314762] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff89230c1dc200
[ 47.314763] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.314763] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.314764] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.314764] PKRU: 55555554
[ 47.314764] Call Trace:
[ 47.314765] <TASK>
[ 47.314765] ? show_regs+0x6c/0x80
[ 47.314766] ? __warn+0x88/0x140
[ 47.314767] ? follow_pte+0x220/0x230
[ 47.314769] ? report_bug+0x182/0x1b0
[ 47.314770] ? handle_bug+0x51/0xa0
[ 47.314771] ? exc_invalid_op+0x18/0x80
[ 47.314772] ? asm_exc_invalid_op+0x1b/0x20
[ 47.314773] ? follow_pte+0x220/0x230
[ 47.314775] follow_phys+0x4e/0x110
[ 47.314776] untrack_pfn+0x57/0x130
[ 47.314778] unmap_single_vma+0xbc/0xf0
[ 47.314779] zap_page_range_single+0x138/0x210
[ 47.314780] unmap_mapping_range+0x11b/0x140
[ 47.314781] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.314901] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.315078] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.315263] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.315384] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.315506] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.315624] ? kthread+0xe1/0x110
[ 47.315625] ? __pfx_kthread+0x10/0x10
[ 47.315626] ? ret_from_fork+0x44/0x70
[ 47.315627] ? __pfx_kthread+0x10/0x10
[ 47.315627] ? ret_from_fork_asm+0x1a/0x30
[ 47.315629] </TASK>
[ 47.315629] ---[ end trace 0000000000000000 ]---
[ 47.315633] ------------[ cut here ]------------
[ 47.315634] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.315636] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.315647] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.315661] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.315675] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.315676] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.315677] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.315678] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.315678] RIP: 0010:follow_pte+0x220/0x230
[ 47.315679] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.315680] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.315681] RAX: 0000000000000000 RBX: 00007e67d3c12000 RCX: ffff99cac101bb60
[ 47.315681] RDX: ffff99cac101bb58 RSI: 00007e67d3c12000 RDI: ffff892394dc8b80
[ 47.315681] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.315682] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.315682] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff89234047f900
[ 47.315683] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.315683] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.315684] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.315684] PKRU: 55555554
[ 47.315685] Call Trace:
[ 47.315685] <TASK>
[ 47.315685] ? show_regs+0x6c/0x80
[ 47.315686] ? __warn+0x88/0x140
[ 47.315688] ? follow_pte+0x220/0x230
[ 47.315689] ? report_bug+0x182/0x1b0
[ 47.315690] ? handle_bug+0x51/0xa0
[ 47.315691] ? exc_invalid_op+0x18/0x80
[ 47.315692] ? asm_exc_invalid_op+0x1b/0x20
[ 47.315694] ? follow_pte+0x220/0x230
[ 47.315695] follow_phys+0x4e/0x110
[ 47.315696] untrack_pfn+0x57/0x130
[ 47.315698] unmap_single_vma+0xbc/0xf0
[ 47.315699] zap_page_range_single+0x138/0x210
[ 47.315700] unmap_mapping_range+0x11b/0x140
[ 47.315701] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.315808] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.315978] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.316156] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.316276] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.316397] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.316516] ? kthread+0xe1/0x110
[ 47.316517] ? __pfx_kthread+0x10/0x10
[ 47.316518] ? ret_from_fork+0x44/0x70
[ 47.316519] ? __pfx_kthread+0x10/0x10
[ 47.316520] ? ret_from_fork_asm+0x1a/0x30
[ 47.316522] </TASK>
[ 47.316522] ---[ end trace 0000000000000000 ]---
[ 47.316527] ------------[ cut here ]------------
[ 47.316527] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.316529] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.316542] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.316557] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.316573] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.316574] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.316575] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.316576] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.316576] RIP: 0010:follow_pte+0x220/0x230
[ 47.316578] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.316578] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.316579] RAX: 0000000000000000 RBX: 00007e67cd920000 RCX: ffff99cac101bb60
[ 47.316579] RDX: ffff99cac101bb58 RSI: 00007e67cd920000 RDI: ffff892311626cf0
[ 47.316580] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.316580] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.316581] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff89234047f900
[ 47.316581] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.316582] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.316582] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.316583] PKRU: 55555554
[ 47.316583] Call Trace:
[ 47.316583] <TASK>
[ 47.316584] ? show_regs+0x6c/0x80
[ 47.316585] ? __warn+0x88/0x140
[ 47.316586] ? follow_pte+0x220/0x230
[ 47.316588] ? report_bug+0x182/0x1b0
[ 47.316589] ? handle_bug+0x51/0xa0
[ 47.316590] ? exc_invalid_op+0x18/0x80
[ 47.316592] ? asm_exc_invalid_op+0x1b/0x20
[ 47.316593] ? follow_pte+0x220/0x230
[ 47.316594] follow_phys+0x4e/0x110
[ 47.316596] untrack_pfn+0x57/0x130
[ 47.316598] unmap_single_vma+0xbc/0xf0
[ 47.316599] zap_page_range_single+0x138/0x210
[ 47.316600] unmap_mapping_range+0x11b/0x140
[ 47.316601] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.316715] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.316873] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.317055] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.317175] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.317297] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.317417] ? kthread+0xe1/0x110
[ 47.317418] ? __pfx_kthread+0x10/0x10
[ 47.317419] ? ret_from_fork+0x44/0x70
[ 47.317420] ? __pfx_kthread+0x10/0x10
[ 47.317420] ? ret_from_fork_asm+0x1a/0x30
[ 47.317422] </TASK>
[ 47.317422] ---[ end trace 0000000000000000 ]---
[ 47.317427] ------------[ cut here ]------------
[ 47.317428] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.317429] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.317443] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.317458] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.317474] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.317475] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.317476] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.317476] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.317477] RIP: 0010:follow_pte+0x220/0x230
[ 47.317478] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.317479] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.317480] RAX: 0000000000000000 RBX: 00007e67cf212000 RCX: ffff99cac101bb60
[ 47.317480] RDX: ffff99cac101bb58 RSI: 00007e67cf212000 RDI: ffff89230c7a99e0
[ 47.317480] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.317481] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.317481] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff89234047f900
[ 47.317482] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.317482] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.317483] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.317483] PKRU: 55555554
[ 47.317484] Call Trace:
[ 47.317484] <TASK>
[ 47.317484] ? show_regs+0x6c/0x80
[ 47.317485] ? __warn+0x88/0x140
[ 47.317487] ? follow_pte+0x220/0x230
[ 47.317488] ? report_bug+0x182/0x1b0
[ 47.317490] ? handle_bug+0x51/0xa0
[ 47.317491] ? exc_invalid_op+0x18/0x80
[ 47.317492] ? asm_exc_invalid_op+0x1b/0x20
[ 47.317494] ? follow_pte+0x220/0x230
[ 47.317495] follow_phys+0x4e/0x110
[ 47.317497] untrack_pfn+0x57/0x130
[ 47.317498] unmap_single_vma+0xbc/0xf0
[ 47.317499] zap_page_range_single+0x138/0x210
[ 47.317501] unmap_mapping_range+0x11b/0x140
[ 47.317502] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.317622] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.317799] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.317990] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.318110] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.318231] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.318351] ? kthread+0xe1/0x110
[ 47.318351] ? __pfx_kthread+0x10/0x10
[ 47.318352] ? ret_from_fork+0x44/0x70
[ 47.318353] ? __pfx_kthread+0x10/0x10
[ 47.318354] ? ret_from_fork_asm+0x1a/0x30
[ 47.318356] </TASK>
[ 47.318356] ---[ end trace 0000000000000000 ]---
[ 47.318360] ------------[ cut here ]------------
[ 47.318360] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.318362] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.318375] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.318389] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.318405] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.318406] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.318408] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.318408] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.318408] RIP: 0010:follow_pte+0x220/0x230
[ 47.318410] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.318410] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.318411] RAX: 0000000000000000 RBX: 00007f65f8140000 RCX: ffff99cac101bb60
[ 47.318412] RDX: ffff99cac101bb58 RSI: 00007f65f8140000 RDI: ffff8923351df928
[ 47.318412] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.318413] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.318413] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff89230c1dc200
[ 47.318414] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.318414] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.318415] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.318415] PKRU: 55555554
[ 47.318416] Call Trace:
[ 47.318416] <TASK>
[ 47.318416] ? show_regs+0x6c/0x80
[ 47.318417] ? __warn+0x88/0x140
[ 47.318419] ? follow_pte+0x220/0x230
[ 47.318420] ? report_bug+0x182/0x1b0
[ 47.318421] ? handle_bug+0x51/0xa0
[ 47.318423] ? exc_invalid_op+0x18/0x80
[ 47.318424] ? asm_exc_invalid_op+0x1b/0x20
[ 47.318426] ? follow_pte+0x220/0x230
[ 47.318427] follow_phys+0x4e/0x110
[ 47.318429] untrack_pfn+0x57/0x130
[ 47.318430] unmap_single_vma+0xbc/0xf0
[ 47.318431] zap_page_range_single+0x138/0x210
[ 47.318433] unmap_mapping_range+0x11b/0x140
[ 47.318434] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.318552] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.318721] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.318883] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.319052] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.319173] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.319292] ? kthread+0xe1/0x110
[ 47.319293] ? __pfx_kthread+0x10/0x10
[ 47.319294] ? ret_from_fork+0x44/0x70
[ 47.319295] ? __pfx_kthread+0x10/0x10
[ 47.319296] ? ret_from_fork_asm+0x1a/0x30
[ 47.319298] </TASK>
[ 47.319298] ---[ end trace 0000000000000000 ]---
[ 47.319302] ------------[ cut here ]------------
[ 47.319302] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.319304] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.319316] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.319331] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.319347] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.319348] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.319349] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.319350] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.319350] RIP: 0010:follow_pte+0x220/0x230
[ 47.319351] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.319352] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.319353] RAX: 0000000000000000 RBX: 00007f65f2f40000 RCX: ffff99cac101bb60
[ 47.319353] RDX: ffff99cac101bb58 RSI: 00007f65f2f40000 RDI: ffff89233dd43590
[ 47.319354] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.319354] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.319355] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff89230c1dc200
[ 47.319355] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.319356] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.319356] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.319357] PKRU: 55555554
[ 47.319357] Call Trace:
[ 47.319357] <TASK>
[ 47.319358] ? show_regs+0x6c/0x80
[ 47.319359] ? __warn+0x88/0x140
[ 47.319360] ? follow_pte+0x220/0x230
[ 47.319362] ? report_bug+0x182/0x1b0
[ 47.319363] ? handle_bug+0x51/0xa0
[ 47.319364] ? exc_invalid_op+0x18/0x80
[ 47.319366] ? asm_exc_invalid_op+0x1b/0x20
[ 47.319367] ? follow_pte+0x220/0x230
[ 47.319369] follow_phys+0x4e/0x110
[ 47.319370] untrack_pfn+0x57/0x130
[ 47.319372] unmap_single_vma+0xbc/0xf0
[ 47.319373] zap_page_range_single+0x138/0x210
[ 47.319374] unmap_mapping_range+0x11b/0x140
[ 47.319375] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.319495] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.319666] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.319826] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.319976] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.320092] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.320210] ? kthread+0xe1/0x110
[ 47.320211] ? __pfx_kthread+0x10/0x10
[ 47.320212] ? ret_from_fork+0x44/0x70
[ 47.320213] ? __pfx_kthread+0x10/0x10
[ 47.320214] ? ret_from_fork_asm+0x1a/0x30
[ 47.320215] </TASK>
[ 47.320216] ---[ end trace 0000000000000000 ]---
[ 47.320222] ------------[ cut here ]------------
[ 47.320223] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.320225] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.320237] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.320252] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.320268] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.320269] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.320270] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.320271] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.320271] RIP: 0010:follow_pte+0x220/0x230
[ 47.320272] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.320273] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.320274] RAX: 0000000000000000 RBX: 000078725f401000 RCX: ffff99cac101bb60
[ 47.320274] RDX: ffff99cac101bb58 RSI: 000078725f401000 RDI: ffff89235cebc450
[ 47.320275] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.320275] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.320276] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff892308036880
[ 47.320276] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.320277] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.320277] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.320278] PKRU: 55555554
[ 47.320278] Call Trace:
[ 47.320278] <TASK>
[ 47.320279] ? show_regs+0x6c/0x80
[ 47.320280] ? __warn+0x88/0x140
[ 47.320281] ? follow_pte+0x220/0x230
[ 47.320283] ? report_bug+0x182/0x1b0
[ 47.320284] ? handle_bug+0x51/0xa0
[ 47.320285] ? exc_invalid_op+0x18/0x80
[ 47.320287] ? asm_exc_invalid_op+0x1b/0x20
[ 47.320288] ? follow_pte+0x220/0x230
[ 47.320289] follow_phys+0x4e/0x110
[ 47.320291] untrack_pfn+0x57/0x130
[ 47.320293] unmap_single_vma+0xbc/0xf0
[ 47.320293] zap_page_range_single+0x138/0x210
[ 47.320295] unmap_mapping_range+0x11b/0x140
[ 47.320296] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.320415] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.320578] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.320737] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.320845] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.320987] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.321103] ? kthread+0xe1/0x110
[ 47.321104] ? __pfx_kthread+0x10/0x10
[ 47.321105] ? ret_from_fork+0x44/0x70
[ 47.321106] ? __pfx_kthread+0x10/0x10
[ 47.321107] ? ret_from_fork_asm+0x1a/0x30
[ 47.321108] </TASK>
[ 47.321109] ---[ end trace 0000000000000000 ]---
[ 47.321115] ------------[ cut here ]------------
[ 47.321116] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.321118] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.321130] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.321145] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.321160] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.321162] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.321163] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.321163] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.321164] RIP: 0010:follow_pte+0x220/0x230
[ 47.321165] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.321166] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.321166] RAX: 0000000000000000 RBX: 000075167a777000 RCX: ffff99cac101bb60
[ 47.321167] RDX: ffff99cac101bb58 RSI: 000075167a777000 RDI: ffff89231b199368
[ 47.321167] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.321168] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.321168] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff892315d34780
[ 47.321169] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.321169] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.321170] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.321170] PKRU: 55555554
[ 47.321171] Call Trace:
[ 47.321171] <TASK>
[ 47.321171] ? show_regs+0x6c/0x80
[ 47.321172] ? __warn+0x88/0x140
[ 47.321174] ? follow_pte+0x220/0x230
[ 47.321175] ? report_bug+0x182/0x1b0
[ 47.321177] ? handle_bug+0x51/0xa0
[ 47.321178] ? exc_invalid_op+0x18/0x80
[ 47.321179] ? asm_exc_invalid_op+0x1b/0x20
[ 47.321181] ? follow_pte+0x220/0x230
[ 47.321182] follow_phys+0x4e/0x110
[ 47.321184] untrack_pfn+0x57/0x130
[ 47.321185] unmap_single_vma+0xbc/0xf0
[ 47.321186] zap_page_range_single+0x138/0x210
[ 47.321188] unmap_mapping_range+0x11b/0x140
[ 47.321189] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.321308] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.321485] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.321662] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.321771] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.321879] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.322042] ? kthread+0xe1/0x110
[ 47.322043] ? __pfx_kthread+0x10/0x10
[ 47.322044] ? ret_from_fork+0x44/0x70
[ 47.322045] ? __pfx_kthread+0x10/0x10
[ 47.322046] ? ret_from_fork_asm+0x1a/0x30
[ 47.322048] </TASK>
[ 47.322048] ---[ end trace 0000000000000000 ]---
[ 47.322053] ------------[ cut here ]------------
[ 47.322054] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.322056] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.322069] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.322085] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.322104] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.322107] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.322108] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.322109] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.322109] RIP: 0010:follow_pte+0x220/0x230
[ 47.322111] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.322111] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.322112] RAX: 0000000000000000 RBX: 000078725c20d000 RCX: ffff99cac101bb60
[ 47.322112] RDX: ffff99cac101bb58 RSI: 000078725c20d000 RDI: ffff892394dadcc0
[ 47.322113] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.322113] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.322114] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff892308036880
[ 47.322114] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.322115] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.322115] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.322116] PKRU: 55555554
[ 47.322116] Call Trace:
[ 47.322117] <TASK>
[ 47.322117] ? show_regs+0x6c/0x80
[ 47.322118] ? __warn+0x88/0x140
[ 47.322120] ? follow_pte+0x220/0x230
[ 47.322121] ? report_bug+0x182/0x1b0
[ 47.322122] ? handle_bug+0x51/0xa0
[ 47.322124] ? exc_invalid_op+0x18/0x80
[ 47.322125] ? asm_exc_invalid_op+0x1b/0x20
[ 47.322126] ? follow_pte+0x220/0x230
[ 47.322128] follow_phys+0x4e/0x110
[ 47.322129] untrack_pfn+0x57/0x130
[ 47.322131] unmap_single_vma+0xbc/0xf0
[ 47.322132] zap_page_range_single+0x138/0x210
[ 47.322133] unmap_mapping_range+0x11b/0x140
[ 47.322134] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.322254] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.322431] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.322600] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.322707] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.322816] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.322939] ? kthread+0xe1/0x110
[ 47.322940] ? __pfx_kthread+0x10/0x10
[ 47.322941] ? ret_from_fork+0x44/0x70
[ 47.322942] ? __pfx_kthread+0x10/0x10
[ 47.322943] ? ret_from_fork_asm+0x1a/0x30
[ 47.322944] </TASK>
[ 47.322945] ---[ end trace 0000000000000000 ]---
[ 47.322950] ------------[ cut here ]------------
[ 47.322950] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.322952] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.322966] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.322983] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.322999] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.323000] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.323001] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.323001] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.323002] RIP: 0010:follow_pte+0x220/0x230
[ 47.323003] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.323004] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.323004] RAX: 0000000000000000 RBX: 00007a4958175000 RCX: ffff99cac101bb60
[ 47.323005] RDX: ffff99cac101bb58 RSI: 00007a4958175000 RDI: ffff8923975880b8
[ 47.323005] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.323006] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.323006] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff89231877b700
[ 47.323007] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.323007] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.323008] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.323008] PKRU: 55555554
[ 47.323009] Call Trace:
[ 47.323009] <TASK>
[ 47.323009] ? show_regs+0x6c/0x80
[ 47.323011] ? __warn+0x88/0x140
[ 47.323012] ? follow_pte+0x220/0x230
[ 47.323014] ? report_bug+0x182/0x1b0
[ 47.323015] ? handle_bug+0x51/0xa0
[ 47.323016] ? exc_invalid_op+0x18/0x80
[ 47.323018] ? asm_exc_invalid_op+0x1b/0x20
[ 47.323019] ? follow_pte+0x220/0x230
[ 47.323021] follow_phys+0x4e/0x110
[ 47.323023] untrack_pfn+0x57/0x130
[ 47.323024] unmap_single_vma+0xbc/0xf0
[ 47.323025] zap_page_range_single+0x138/0x210
[ 47.323027] unmap_mapping_range+0x11b/0x140
[ 47.323028] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.323147] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.323323] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.323493] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.323601] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.323711] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.323821] ? kthread+0xe1/0x110
[ 47.323822] ? __pfx_kthread+0x10/0x10
[ 47.323822] ? ret_from_fork+0x44/0x70
[ 47.323823] ? __pfx_kthread+0x10/0x10
[ 47.323824] ? ret_from_fork_asm+0x1a/0x30
[ 47.323825] </TASK>
[ 47.323826] ---[ end trace 0000000000000000 ]---
[ 47.323830] ------------[ cut here ]------------
[ 47.323831] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.323832] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.323844] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.323857] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.323871] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.323872] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.323873] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.323874] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.323874] RIP: 0010:follow_pte+0x220/0x230
[ 47.323875] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.323876] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.323877] RAX: 0000000000000000 RBX: 00007516794db000 RCX: ffff99cac101bb60
[ 47.323877] RDX: ffff99cac101bb58 RSI: 00007516794db000 RDI: ffff89230fa8a2e0
[ 47.323877] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.323878] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.323878] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff892315d34780
[ 47.323879] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.323879] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.323880] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.323880] PKRU: 55555554
[ 47.323880] Call Trace:
[ 47.323881] <TASK>
[ 47.323881] ? show_regs+0x6c/0x80
[ 47.323882] ? __warn+0x88/0x140
[ 47.323883] ? follow_pte+0x220/0x230
[ 47.323885] ? report_bug+0x182/0x1b0
[ 47.323886] ? handle_bug+0x51/0xa0
[ 47.323887] ? exc_invalid_op+0x18/0x80
[ 47.323888] ? asm_exc_invalid_op+0x1b/0x20
[ 47.323889] ? follow_pte+0x220/0x230
[ 47.323891] follow_phys+0x4e/0x110
[ 47.323892] untrack_pfn+0x57/0x130
[ 47.323894] unmap_single_vma+0xbc/0xf0
[ 47.323895] zap_page_range_single+0x138/0x210
[ 47.323896] unmap_mapping_range+0x11b/0x140
[ 47.323897] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.324070] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.324252] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.324431] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.324550] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.324670] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.324789] ? kthread+0xe1/0x110
[ 47.324790] ? __pfx_kthread+0x10/0x10
[ 47.324791] ? ret_from_fork+0x44/0x70
[ 47.324792] ? __pfx_kthread+0x10/0x10
[ 47.324793] ? ret_from_fork_asm+0x1a/0x30
[ 47.324794] </TASK>
[ 47.324795] ---[ end trace 0000000000000000 ]---
[ 47.324800] ------------[ cut here ]------------
[ 47.324800] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.324802] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.324814] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.324829] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.324845] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.324846] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.324847] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.324848] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.324848] RIP: 0010:follow_pte+0x220/0x230
[ 47.324850] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.324850] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.324851] RAX: 0000000000000000 RBX: 00007f65f814d000 RCX: ffff99cac101bb60
[ 47.324851] RDX: ffff99cac101bb58 RSI: 00007f65f814d000 RDI: ffff89231b381cc0
[ 47.324852] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.324852] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.324853] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff89230c1dc200
[ 47.324853] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.324854] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.324854] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.324855] PKRU: 55555554
[ 47.324855] Call Trace:
[ 47.324855] <TASK>
[ 47.324855] ? show_regs+0x6c/0x80
[ 47.324857] ? __warn+0x88/0x140
[ 47.324858] ? follow_pte+0x220/0x230
[ 47.324860] ? report_bug+0x182/0x1b0
[ 47.324861] ? handle_bug+0x51/0xa0
[ 47.324862] ? exc_invalid_op+0x18/0x80
[ 47.324863] ? asm_exc_invalid_op+0x1b/0x20
[ 47.324865] ? follow_pte+0x220/0x230
[ 47.324866] follow_phys+0x4e/0x110
[ 47.324868] untrack_pfn+0x57/0x130
[ 47.324869] unmap_single_vma+0xbc/0xf0
[ 47.324870] zap_page_range_single+0x138/0x210
[ 47.324872] unmap_mapping_range+0x11b/0x140
[ 47.324873] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.325039] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.325220] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.325409] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.325529] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.325649] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.325763] ? kthread+0xe1/0x110
[ 47.325764] ? __pfx_kthread+0x10/0x10
[ 47.325764] ? ret_from_fork+0x44/0x70
[ 47.325765] ? __pfx_kthread+0x10/0x10
[ 47.325766] ? ret_from_fork_asm+0x1a/0x30
[ 47.325767] </TASK>
[ 47.325768] ---[ end trace 0000000000000000 ]---
[ 47.325771] ------------[ cut here ]------------
[ 47.325771] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.325773] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.325785] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.325798] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.325812] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.325814] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.325815] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.325815] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.325815] RIP: 0010:follow_pte+0x220/0x230
[ 47.325817] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.325817] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.325818] RAX: 0000000000000000 RBX: 00007a4954340000 RCX: ffff99cac101bb60
[ 47.325818] RDX: ffff99cac101bb58 RSI: 00007a4954340000 RDI: ffff892320924cf0
[ 47.325819] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.325819] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.325819] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff89231877b700
[ 47.325820] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.325820] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.325821] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.325821] PKRU: 55555554
[ 47.325822] Call Trace:
[ 47.325822] <TASK>
[ 47.325822] ? show_regs+0x6c/0x80
[ 47.325823] ? __warn+0x88/0x140
[ 47.325825] ? follow_pte+0x220/0x230
[ 47.325826] ? report_bug+0x182/0x1b0
[ 47.325827] ? handle_bug+0x51/0xa0
[ 47.325828] ? exc_invalid_op+0x18/0x80
[ 47.325829] ? asm_exc_invalid_op+0x1b/0x20
[ 47.325831] ? follow_pte+0x220/0x230
[ 47.325832] follow_phys+0x4e/0x110
[ 47.325833] untrack_pfn+0x57/0x130
[ 47.325835] unmap_single_vma+0xbc/0xf0
[ 47.325836] zap_page_range_single+0x138/0x210
[ 47.325837] unmap_mapping_range+0x11b/0x140
[ 47.325838] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.325967] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.326142] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.326319] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.326440] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.326557] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.326666] ? kthread+0xe1/0x110
[ 47.326667] ? __pfx_kthread+0x10/0x10
[ 47.326667] ? ret_from_fork+0x44/0x70
[ 47.326668] ? __pfx_kthread+0x10/0x10
[ 47.326669] ? ret_from_fork_asm+0x1a/0x30
[ 47.326670] </TASK>
[ 47.326671] ---[ end trace 0000000000000000 ]---
[ 47.326676] ------------[ cut here ]------------
[ 47.326676] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.326678] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.326690] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.326703] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.326717] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.326719] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.326720] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.326720] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.326720] RIP: 0010:follow_pte+0x220/0x230
[ 47.326722] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.326722] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.326723] RAX: 0000000000000000 RBX: 000078725c775000 RCX: ffff99cac101bb60
[ 47.326723] RDX: ffff99cac101bb58 RSI: 000078725c775000 RDI: ffff89230897b700
[ 47.326724] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.326724] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.326725] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff892308036880
[ 47.326725] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.326726] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.326726] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.326727] PKRU: 55555554
[ 47.326727] Call Trace:
[ 47.326727] <TASK>
[ 47.326727] ? show_regs+0x6c/0x80
[ 47.326728] ? __warn+0x88/0x140
[ 47.326730] ? follow_pte+0x220/0x230
[ 47.326731] ? report_bug+0x182/0x1b0
[ 47.326732] ? handle_bug+0x51/0xa0
[ 47.326733] ? exc_invalid_op+0x18/0x80
[ 47.326735] ? asm_exc_invalid_op+0x1b/0x20
[ 47.326736] ? follow_pte+0x220/0x230
[ 47.326737] follow_phys+0x4e/0x110
[ 47.326739] untrack_pfn+0x57/0x130
[ 47.326740] unmap_single_vma+0xbc/0xf0
[ 47.326741] zap_page_range_single+0x138/0x210
[ 47.326742] unmap_mapping_range+0x11b/0x140
[ 47.326743] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.326852] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.327026] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.327205] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.327326] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.327446] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.327566] ? kthread+0xe1/0x110
[ 47.327567] ? __pfx_kthread+0x10/0x10
[ 47.327568] ? ret_from_fork+0x44/0x70
[ 47.327569] ? __pfx_kthread+0x10/0x10
[ 47.327569] ? ret_from_fork_asm+0x1a/0x30
[ 47.327571] </TASK>
[ 47.327571] ---[ end trace 0000000000000000 ]---
[ 47.327576] ------------[ cut here ]------------
[ 47.327577] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.327579] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.327591] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.327606] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.327622] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.327623] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.327624] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.327624] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.327625] RIP: 0010:follow_pte+0x220/0x230
[ 47.327626] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.327627] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.327628] RAX: 0000000000000000 RBX: 000075167a77e000 RCX: ffff99cac101bb60
[ 47.327628] RDX: ffff99cac101bb58 RSI: 000075167a77e000 RDI: ffff892352e1e398
[ 47.327629] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.327629] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.327629] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff892315d34780
[ 47.327630] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.327631] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.327631] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.327632] PKRU: 55555554
[ 47.327632] Call Trace:
[ 47.327632] <TASK>
[ 47.327633] ? show_regs+0x6c/0x80
[ 47.327634] ? __warn+0x88/0x140
[ 47.327635] ? follow_pte+0x220/0x230
[ 47.327637] ? report_bug+0x182/0x1b0
[ 47.327638] ? handle_bug+0x51/0xa0
[ 47.327639] ? exc_invalid_op+0x18/0x80
[ 47.327640] ? asm_exc_invalid_op+0x1b/0x20
[ 47.327642] ? follow_pte+0x220/0x230
[ 47.327643] follow_phys+0x4e/0x110
[ 47.327645] untrack_pfn+0x57/0x130
[ 47.327646] unmap_single_vma+0xbc/0xf0
[ 47.327647] zap_page_range_single+0x138/0x210
[ 47.327649] unmap_mapping_range+0x11b/0x140
[ 47.327650] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.327769] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.327947] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.328118] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.328238] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.328358] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.328477] ? kthread+0xe1/0x110
[ 47.328478] ? __pfx_kthread+0x10/0x10
[ 47.328479] ? ret_from_fork+0x44/0x70
[ 47.328480] ? __pfx_kthread+0x10/0x10
[ 47.328481] ? ret_from_fork_asm+0x1a/0x30
[ 47.328483] </TASK>
[ 47.328484] ---[ end trace 0000000000000000 ]---
[ 47.328488] ------------[ cut here ]------------
[ 47.328488] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.328490] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.328501] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.328515] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.328529] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.328531] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.328532] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.328532] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.328532] RIP: 0010:follow_pte+0x220/0x230
[ 47.328534] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.328534] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.328535] RAX: 0000000000000000 RBX: 00007a4955938000 RCX: ffff99cac101bb60
[ 47.328535] RDX: ffff99cac101bb58 RSI: 00007a4955938000 RDI: ffff89230fa431f8
[ 47.328536] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.328536] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.328536] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff89231877b700
[ 47.328537] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.328537] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.328538] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.328538] PKRU: 55555554
[ 47.328538] Call Trace:
[ 47.328539] <TASK>
[ 47.328539] ? show_regs+0x6c/0x80
[ 47.328540] ? __warn+0x88/0x140
[ 47.328541] ? follow_pte+0x220/0x230
[ 47.328543] ? report_bug+0x182/0x1b0
[ 47.328544] ? handle_bug+0x51/0xa0
[ 47.328545] ? exc_invalid_op+0x18/0x80
[ 47.328546] ? asm_exc_invalid_op+0x1b/0x20
[ 47.328548] ? follow_pte+0x220/0x230
[ 47.328549] follow_phys+0x4e/0x110
[ 47.328550] untrack_pfn+0x57/0x130
[ 47.328552] unmap_single_vma+0xbc/0xf0
[ 47.328553] zap_page_range_single+0x138/0x210
[ 47.328554] unmap_mapping_range+0x11b/0x140
[ 47.328555] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.328664] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.328824] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.328998] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.329112] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.329233] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.329352] ? kthread+0xe1/0x110
[ 47.329352] ? __pfx_kthread+0x10/0x10
[ 47.329353] ? ret_from_fork+0x44/0x70
[ 47.329354] ? __pfx_kthread+0x10/0x10
[ 47.329355] ? ret_from_fork_asm+0x1a/0x30
[ 47.329357] </TASK>
[ 47.329357] ---[ end trace 0000000000000000 ]---
[ 47.329360] ------------[ cut here ]------------
[ 47.329361] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.329363] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.329375] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.329390] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.329405] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.329407] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.329408] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.329408] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.329408] RIP: 0010:follow_pte+0x220/0x230
[ 47.329410] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.329410] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.329411] RAX: 0000000000000000 RBX: 00007981aae8f000 RCX: ffff99cac101bb60
[ 47.329412] RDX: ffff99cac101bb58 RSI: 00007981aae8f000 RDI: ffff892307180da8
[ 47.329412] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.329412] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.329413] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff8923086a5d80
[ 47.329413] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.329414] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.329414] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.329415] PKRU: 55555554
[ 47.329415] Call Trace:
[ 47.329415] <TASK>
[ 47.329416] ? show_regs+0x6c/0x80
[ 47.329417] ? __warn+0x88/0x140
[ 47.329418] ? follow_pte+0x220/0x230
[ 47.329420] ? report_bug+0x182/0x1b0
[ 47.329421] ? handle_bug+0x51/0xa0
[ 47.329422] ? exc_invalid_op+0x18/0x80
[ 47.329424] ? asm_exc_invalid_op+0x1b/0x20
[ 47.329425] ? follow_pte+0x220/0x230
[ 47.329427] follow_phys+0x4e/0x110
[ 47.329428] untrack_pfn+0x57/0x130
[ 47.329430] unmap_single_vma+0xbc/0xf0
[ 47.329431] zap_page_range_single+0x138/0x210
[ 47.329432] unmap_mapping_range+0x11b/0x140
[ 47.329433] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.329549] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.329733] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.329916] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.330097] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.330218] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.330337] ? kthread+0xe1/0x110
[ 47.330338] ? __pfx_kthread+0x10/0x10
[ 47.330339] ? ret_from_fork+0x44/0x70
[ 47.330340] ? __pfx_kthread+0x10/0x10
[ 47.330340] ? ret_from_fork_asm+0x1a/0x30
[ 47.330342] </TASK>
[ 47.330342] ---[ end trace 0000000000000000 ]---
[ 47.330346] ------------[ cut here ]------------
[ 47.330346] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.330348] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.330360] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.330375] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.330391] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.330392] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.330393] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.330394] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.330394] RIP: 0010:follow_pte+0x220/0x230
[ 47.330396] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.330396] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.330397] RAX: 0000000000000000 RBX: 00007981b4bbc000 RCX: ffff99cac101bb60
[ 47.330397] RDX: ffff99cac101bb58 RSI: 00007981b4bbc000 RDI: ffff8923030d1088
[ 47.330398] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.330398] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.330399] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff8923086a5d80
[ 47.330399] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.330400] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.330400] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.330401] PKRU: 55555554
[ 47.330401] Call Trace:
[ 47.330401] <TASK>
[ 47.330402] ? show_regs+0x6c/0x80
[ 47.330403] ? __warn+0x88/0x140
[ 47.330404] ? follow_pte+0x220/0x230
[ 47.330406] ? report_bug+0x182/0x1b0
[ 47.330407] ? handle_bug+0x51/0xa0
[ 47.330408] ? exc_invalid_op+0x18/0x80
[ 47.330410] ? asm_exc_invalid_op+0x1b/0x20
[ 47.330411] ? follow_pte+0x220/0x230
[ 47.330413] follow_phys+0x4e/0x110
[ 47.330414] untrack_pfn+0x57/0x130
[ 47.330416] unmap_single_vma+0xbc/0xf0
[ 47.330417] zap_page_range_single+0x138/0x210
[ 47.330418] unmap_mapping_range+0x11b/0x140
[ 47.330419] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.330538] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.330713] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.330910] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.331083] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.331205] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.331325] ? kthread+0xe1/0x110
[ 47.331326] ? __pfx_kthread+0x10/0x10
[ 47.331327] ? ret_from_fork+0x44/0x70
[ 47.331328] ? __pfx_kthread+0x10/0x10
[ 47.331329] ? ret_from_fork_asm+0x1a/0x30
[ 47.331330] </TASK>
[ 47.331331] ---[ end trace 0000000000000000 ]---
[ 47.331335] ------------[ cut here ]------------
[ 47.331335] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.331337] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.331349] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.331364] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.331379] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.331381] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.331382] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.331382] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.331383] RIP: 0010:follow_pte+0x220/0x230
[ 47.331384] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.331385] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.331385] RAX: 0000000000000000 RBX: 00007981b3d12000 RCX: ffff99cac101bb60
[ 47.331386] RDX: ffff99cac101bb58 RSI: 00007981b3d12000 RDI: ffff8923030d1ee8
[ 47.331386] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.331387] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.331387] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff8923086a5d80
[ 47.331388] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.331388] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.331389] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.331389] PKRU: 55555554
[ 47.331390] Call Trace:
[ 47.331390] <TASK>
[ 47.331390] ? show_regs+0x6c/0x80
[ 47.331391] ? __warn+0x88/0x140
[ 47.331393] ? follow_pte+0x220/0x230
[ 47.331394] ? report_bug+0x182/0x1b0
[ 47.331395] ? handle_bug+0x51/0xa0
[ 47.331397] ? exc_invalid_op+0x18/0x80
[ 47.331398] ? asm_exc_invalid_op+0x1b/0x20
[ 47.331399] ? follow_pte+0x220/0x230
[ 47.331401] follow_phys+0x4e/0x110
[ 47.331402] untrack_pfn+0x57/0x130
[ 47.331404] unmap_single_vma+0xbc/0xf0
[ 47.331405] zap_page_range_single+0x138/0x210
[ 47.331406] unmap_mapping_range+0x11b/0x140
[ 47.331407] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.331527] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.331690] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.331852] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.331976] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.332087] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.332207] ? kthread+0xe1/0x110
[ 47.332208] ? __pfx_kthread+0x10/0x10
[ 47.332209] ? ret_from_fork+0x44/0x70
[ 47.332210] ? __pfx_kthread+0x10/0x10
[ 47.332210] ? ret_from_fork_asm+0x1a/0x30
[ 47.332212] </TASK>
[ 47.332212] ---[ end trace 0000000000000000 ]---
[ 47.332215] ------------[ cut here ]------------
[ 47.332216] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.332218] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.332230] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.332245] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.332261] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.332262] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.332264] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.332264] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.332264] RIP: 0010:follow_pte+0x220/0x230
[ 47.332266] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.332267] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.332267] RAX: 0000000000000000 RBX: 00007981b4bbd000 RCX: ffff99cac101bb60
[ 47.332268] RDX: ffff99cac101bb58 RSI: 00007981b4bbd000 RDI: ffff8923030d0b80
[ 47.332268] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.332269] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.332269] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff8923086a5d80
[ 47.332270] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.332270] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.332271] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.332271] PKRU: 55555554
[ 47.332272] Call Trace:
[ 47.332272] <TASK>
[ 47.332272] ? show_regs+0x6c/0x80
[ 47.332273] ? __warn+0x88/0x140
[ 47.332275] ? follow_pte+0x220/0x230
[ 47.332276] ? report_bug+0x182/0x1b0
[ 47.332277] ? handle_bug+0x51/0xa0
[ 47.332279] ? exc_invalid_op+0x18/0x80
[ 47.332280] ? asm_exc_invalid_op+0x1b/0x20
[ 47.332282] ? follow_pte+0x220/0x230
[ 47.332283] follow_phys+0x4e/0x110
[ 47.332285] untrack_pfn+0x57/0x130
[ 47.332286] unmap_single_vma+0xbc/0xf0
[ 47.332287] zap_page_range_single+0x138/0x210
[ 47.332289] unmap_mapping_range+0x11b/0x140
[ 47.332290] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.332410] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.332592] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.332783] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.332893] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.333037] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.333149] ? kthread+0xe1/0x110
[ 47.333150] ? __pfx_kthread+0x10/0x10
[ 47.333151] ? ret_from_fork+0x44/0x70
[ 47.333152] ? __pfx_kthread+0x10/0x10
[ 47.333153] ? ret_from_fork_asm+0x1a/0x30
[ 47.333154] </TASK>
[ 47.333155] ---[ end trace 0000000000000000 ]---
[ 47.333162] ------------[ cut here ]------------
[ 47.333162] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.333164] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.333176] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.333191] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.333207] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.333208] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.333209] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.333209] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.333210] RIP: 0010:follow_pte+0x220/0x230
[ 47.333211] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.333212] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.333212] RAX: 0000000000000000 RBX: 00007981a2fc0000 RCX: ffff99cac101bb60
[ 47.333213] RDX: ffff99cac101bb58 RSI: 00007981a2fc0000 RDI: ffff892305d02170
[ 47.333213] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.333214] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.333214] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff8923086a5d80
[ 47.333215] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.333215] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.333216] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.333216] PKRU: 55555554
[ 47.333217] Call Trace:
[ 47.333217] <TASK>
[ 47.333217] ? show_regs+0x6c/0x80
[ 47.333218] ? __warn+0x88/0x140
[ 47.333220] ? follow_pte+0x220/0x230
[ 47.333221] ? report_bug+0x182/0x1b0
[ 47.333222] ? handle_bug+0x51/0xa0
[ 47.333224] ? exc_invalid_op+0x18/0x80
[ 47.333225] ? asm_exc_invalid_op+0x1b/0x20
[ 47.333226] ? follow_pte+0x220/0x230
[ 47.333228] follow_phys+0x4e/0x110
[ 47.333230] untrack_pfn+0x57/0x130
[ 47.333231] unmap_single_vma+0xbc/0xf0
[ 47.333232] zap_page_range_single+0x138/0x210
[ 47.333234] unmap_mapping_range+0x11b/0x140
[ 47.333235] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.333356] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.333540] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.333708] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.333817] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.333927] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.334089] ? kthread+0xe1/0x110
[ 47.334090] ? __pfx_kthread+0x10/0x10
[ 47.334091] ? ret_from_fork+0x44/0x70
[ 47.334092] ? __pfx_kthread+0x10/0x10
[ 47.334093] ? ret_from_fork_asm+0x1a/0x30
[ 47.334095] </TASK>
[ 47.334095] ---[ end trace 0000000000000000 ]---
[ 47.334100] ------------[ cut here ]------------
[ 47.334100] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.334102] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.334115] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.334130] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.334146] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.334147] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.334148] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.334149] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.334149] RIP: 0010:follow_pte+0x220/0x230
[ 47.334151] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.334151] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.334152] RAX: 0000000000000000 RBX: 00007981b4bc2000 RCX: ffff99cac101bb60
[ 47.334152] RDX: ffff99cac101bb58 RSI: 00007981b4bc2000 RDI: ffff89232bf6b140
[ 47.334153] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.334153] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.334154] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff8923086a5d80
[ 47.334154] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.334155] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.334155] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.334156] PKRU: 55555554
[ 47.334156] Call Trace:
[ 47.334156] <TASK>
[ 47.334157] ? show_regs+0x6c/0x80
[ 47.334158] ? __warn+0x88/0x140
[ 47.334159] ? follow_pte+0x220/0x230
[ 47.334161] ? report_bug+0x182/0x1b0
[ 47.334162] ? handle_bug+0x51/0xa0
[ 47.334163] ? exc_invalid_op+0x18/0x80
[ 47.334165] ? asm_exc_invalid_op+0x1b/0x20
[ 47.334166] ? follow_pte+0x220/0x230
[ 47.334168] follow_phys+0x4e/0x110
[ 47.334169] untrack_pfn+0x57/0x130
[ 47.334171] unmap_single_vma+0xbc/0xf0
[ 47.334172] zap_page_range_single+0x138/0x210
[ 47.334173] unmap_mapping_range+0x11b/0x140
[ 47.334174] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.334294] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.334483] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.334669] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.334786] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.334896] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.335037] ? kthread+0xe1/0x110
[ 47.335038] ? __pfx_kthread+0x10/0x10
[ 47.335039] ? ret_from_fork+0x44/0x70
[ 47.335040] ? __pfx_kthread+0x10/0x10
[ 47.335041] ? ret_from_fork_asm+0x1a/0x30
[ 47.335042] </TASK>
[ 47.335043] ---[ end trace 0000000000000000 ]---
[ 47.335046] ------------[ cut here ]------------
[ 47.335047] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.335049] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.335063] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.335076] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.335091] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.335092] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.335093] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.335093] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.335094] RIP: 0010:follow_pte+0x220/0x230
[ 47.335095] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.335096] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.335096] RAX: 0000000000000000 RBX: 00007981b3cb9000 RCX: ffff99cac101bb60
[ 47.335097] RDX: ffff99cac101bb58 RSI: 00007981b3cb9000 RDI: ffff89230ccdf088
[ 47.335097] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.335098] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.335098] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff8923086a5d80
[ 47.335099] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.335099] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.335100] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.335100] PKRU: 55555554
[ 47.335100] Call Trace:
[ 47.335101] <TASK>
[ 47.335101] ? show_regs+0x6c/0x80
[ 47.335102] ? __warn+0x88/0x140
[ 47.335104] ? follow_pte+0x220/0x230
[ 47.335105] ? report_bug+0x182/0x1b0
[ 47.335107] ? handle_bug+0x51/0xa0
[ 47.335108] ? exc_invalid_op+0x18/0x80
[ 47.335109] ? asm_exc_invalid_op+0x1b/0x20
[ 47.335111] ? follow_pte+0x220/0x230
[ 47.335113] follow_phys+0x4e/0x110
[ 47.335114] untrack_pfn+0x57/0x130
[ 47.335116] unmap_single_vma+0xbc/0xf0
[ 47.335117] zap_page_range_single+0x138/0x210
[ 47.335118] unmap_mapping_range+0x11b/0x140
[ 47.335119] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.335239] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.335423] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.335594] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.335702] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.335811] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.335920] ? kthread+0xe1/0x110
[ 47.335920] ? __pfx_kthread+0x10/0x10
[ 47.335921] ? ret_from_fork+0x44/0x70
[ 47.335922] ? __pfx_kthread+0x10/0x10
[ 47.335923] ? ret_from_fork_asm+0x1a/0x30
[ 47.335924] </TASK>
[ 47.335924] ---[ end trace 0000000000000000 ]---
[ 47.335927] ------------[ cut here ]------------
[ 47.335928] WARNING: CPU: 2 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 47.335929] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 47.335940] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 47.335954] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 47.335974] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 47.335976] CPU: 2 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 47.335977] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 47.335978] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 47.335978] RIP: 0010:follow_pte+0x220/0x230
[ 47.335980] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 47.335980] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 47.335981] RAX: 0000000000000000 RBX: 00007981b400a000 RCX: ffff99cac101bb60
[ 47.335981] RDX: ffff99cac101bb58 RSI: 00007981b400a000 RDI: ffff89230ccdfa98
[ 47.335982] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 47.335983] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 47.335983] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff8923086a5d80
[ 47.335983] FS: 0000000000000000(0000) GS:ffff892a9e900000(0000) knlGS:0000000000000000
[ 47.335984] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 47.335985] CR2: 000070e8b04ee200 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 47.335985] PKRU: 55555554
[ 47.335985] Call Trace:
[ 47.335986] <TASK>
[ 47.335986] ? show_regs+0x6c/0x80
[ 47.335987] ? __warn+0x88/0x140
[ 47.335989] ? follow_pte+0x220/0x230
[ 47.335990] ? report_bug+0x182/0x1b0
[ 47.335992] ? handle_bug+0x51/0xa0
[ 47.335993] ? exc_invalid_op+0x18/0x80
[ 47.335995] ? asm_exc_invalid_op+0x1b/0x20
[ 47.335996] ? follow_pte+0x220/0x230
[ 47.335997] follow_phys+0x4e/0x110
[ 47.335999] untrack_pfn+0x57/0x130
[ 47.336001] unmap_single_vma+0xbc/0xf0
[ 47.336002] zap_page_range_single+0x138/0x210
[ 47.336003] unmap_mapping_range+0x11b/0x140
[ 47.336004] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 47.336115] _nv000741rm+0x35/0xf6 [nvidia]
[ 47.336291] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 47.336479] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 47.336600] ? _main_loop+0x7e/0x140 [nvidia]
[ 47.336720] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 47.336831] ? kthread+0xe1/0x110
[ 47.336832] ? __pfx_kthread+0x10/0x10
[ 47.336832] ? ret_from_fork+0x44/0x70
[ 47.336833] ? __pfx_kthread+0x10/0x10
[ 47.336834] ? ret_from_fork_asm+0x1a/0x30
[ 47.336835] </TASK>
[ 47.336836] ---[ end trace 0000000000000000 ]---
[ 73.396392] ------------[ cut here ]------------
[ 73.396400] WARNING: CPU: 0 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 73.396420] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 73.396509] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 73.396606] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 73.396708] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 73.396719] CPU: 0 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 73.396729] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 73.396732] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 73.396735] RIP: 0010:follow_pte+0x220/0x230
[ 73.396745] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 73.396750] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 73.396755] RAX: 0000000000000000 RBX: 00007f65bdc00000 RCX: ffff99cac101bb60
[ 73.396759] RDX: ffff99cac101bb58 RSI: 00007f65bdc00000 RDI: ffff89230f28b7b8
[ 73.396761] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 73.396764] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 73.396767] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff89230c1dc200
[ 73.396769] FS: 0000000000000000(0000) GS:ffff892a9e800000(0000) knlGS:0000000000000000
[ 73.396773] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 73.396776] CR2: 0000648dba8370b8 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 73.396780] PKRU: 55555554
[ 73.396782] Call Trace:
[ 73.396785] <TASK>
[ 73.396792] ? show_regs+0x6c/0x80
[ 73.396801] ? __warn+0x88/0x140
[ 73.396810] ? follow_pte+0x220/0x230
[ 73.396818] ? report_bug+0x182/0x1b0
[ 73.396826] ? handle_bug+0x51/0xa0
[ 73.396836] ? exc_invalid_op+0x18/0x80
[ 73.396843] ? asm_exc_invalid_op+0x1b/0x20
[ 73.396852] ? follow_pte+0x220/0x230
[ 73.396861] follow_phys+0x4e/0x110
[ 73.396870] untrack_pfn+0x57/0x130
[ 73.396881] ? _nv013031rm+0x21/0x80 [nvidia]
[ 73.398671] unmap_single_vma+0xbc/0xf0
[ 73.398678] zap_page_range_single+0x138/0x210
[ 73.398686] unmap_mapping_range+0x11b/0x140
[ 73.398692] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 73.399362] _nv000741rm+0x35/0xf6 [nvidia]
[ 73.400153] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 73.400917] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 73.401587] ? _main_loop+0x7e/0x140 [nvidia]
[ 73.402059] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 73.402497] ? kthread+0xe1/0x110
[ 73.402501] ? __pfx_kthread+0x10/0x10
[ 73.402505] ? ret_from_fork+0x44/0x70
[ 73.402508] ? __pfx_kthread+0x10/0x10
[ 73.402511] ? ret_from_fork_asm+0x1a/0x30
[ 73.402518] </TASK>
[ 73.402519] ---[ end trace 0000000000000000 ]---
[ 73.402569] ------------[ cut here ]------------
[ 73.402571] WARNING: CPU: 0 PID: 1141 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 73.402581] Modules linked in: nvidia_uvm(POE) ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) snd_hda_codec_realtek(E) drm_gpuvm(E) drm_exec(E) snd_hda_codec_generic(E) gpu_sched(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) nvidia(POE) intel_uncore_frequency(E) intel_uncore_frequency_common(E) intel_tcc_cooling(E) x86_pkg_temp_thermal(E) intel_powerclamp(E) snd_hda_codec_hdmi(E) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_soc_core(E) snd_compress(E) ac97_bus(E) snd_pcm_dmaengine(E)
[ 73.402639] snd_hda_intel(E) snd_intel_dspcfg(E) snd_intel_sdw_acpi(E) snd_hda_codec(E) snd_hda_core(E) snd_hwdep(E) snd_pcm(E) uvcvideo(E) videobuf2_vmalloc(E) iwlmvm(E) btusb(E) snd_seq_midi(E) uvc(E) coretemp(E) btrtl(E) videobuf2_memops(E) i915(E) snd_seq_midi_event(E) btintel(E) videobuf2_v4l2(E) mac80211(E) kvm_intel(E) snd_rawmidi(E) btbcm(E) videodev(E) btmtk(E) videobuf2_common(E) ite_829x(OE) snd_seq(E) libarc4(E) drm_buddy(E) mc(E) led_class_multicolor(E) processor_thermal_device_pci(E) bluetooth(E) kvm(E) snd_seq_device(E) spd5118(E) processor_thermal_device(E) drm_display_helper(E) cmdlinepart(E) iwlwifi(E) mei_hdcp(E) mei_pxp(E) snd_timer(E) processor_thermal_wt_hint(E) processor_thermal_rfim(E) cec(E) spi_nor(E) rapl(E) processor_thermal_rapl(E) mtd(E) intel_rapl_msr(E) i2c_i801(E) snd(E) drm_ttm_helper(E) nvidia_wmi_ec_backlight(E) mxm_wmi(E) intel_cstate(E) intel_rapl_common(E) rc_core(E) i2c_mux(E) mei_me(E) processor_thermal_wt_req(E) soundcore(E) spi_intel_pci(E) cfg80211(E) ttm(E) i2c_smbus(E)
[ 73.402703] i2c_algo_bit(E) processor_thermal_power_floor(E) spi_intel(E) mei(E) processor_thermal_mbox(E) intel_pmc_core(E) int3403_thermal(E) int340x_thermal_zone(E) intel_vsec(E) int3400_thermal(E) pmt_telemetry(E) intel_hid(E) pmt_class(E) acpi_thermal_rel(E) joydev(E) sparse_keymap(E) acpi_pad(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) hid_generic(E) nvme_core(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) thunderbolt(E) sha1_ssse3(E) ucsi_acpi(E) psmouse(E) intel_lpss_pci(E) typec_ucsi(E) igc(E) xhci_pci(E) intel_lpss(E) xhci_pci_renesas(E) vmd(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) hid(E) video(E) wmi(E)
[ 73.402770] pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 73.402778] CPU: 0 UID: 0 PID: 1141 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 73.402784] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 73.402786] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 73.402787] RIP: 0010:follow_pte+0x220/0x230
[ 73.402793] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 73.402795] RSP: 0018:ffff99cac101bb10 EFLAGS: 00010246
[ 73.402798] RAX: 0000000000000000 RBX: 00007f65e8c2e000 RCX: ffff99cac101bb60
[ 73.402800] RDX: ffff99cac101bb58 RSI: 00007f65e8c2e000 RDI: ffff8923bbc08fd0
[ 73.402802] RBP: ffff99cac101bb48 R08: ffff99cac101bd18 R09: 0000000000000000
[ 73.402803] R10: 0000000000000000 R11: 0000000000000000 R12: ffff99cac101bba8
[ 73.402805] R13: 0000000000000000 R14: ffff99cac101bb58 R15: ffff89230c1dc200
[ 73.402807] FS: 0000000000000000(0000) GS:ffff892a9e800000(0000) knlGS:0000000000000000
[ 73.402809] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 73.402811] CR2: 0000648dba8370b8 CR3: 000000012aa3e000 CR4: 0000000000f50ef0
[ 73.402813] PKRU: 55555554
[ 73.402814] Call Trace:
[ 73.402815] <TASK>
[ 73.402816] ? show_regs+0x6c/0x80
[ 73.402821] ? __warn+0x88/0x140
[ 73.402826] ? follow_pte+0x220/0x230
[ 73.402831] ? report_bug+0x182/0x1b0
[ 73.402835] ? handle_bug+0x51/0xa0
[ 73.402840] ? exc_invalid_op+0x18/0x80
[ 73.402845] ? asm_exc_invalid_op+0x1b/0x20
[ 73.402849] ? follow_pte+0x220/0x230
[ 73.402855] follow_phys+0x4e/0x110
[ 73.402860] untrack_pfn+0x57/0x130
[ 73.402866] unmap_single_vma+0xbc/0xf0
[ 73.402869] zap_page_range_single+0x138/0x210
[ 73.402874] unmap_mapping_range+0x11b/0x140
[ 73.402878] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 73.403429] _nv000741rm+0x35/0xf6 [nvidia]
[ 73.404063] ? rm_execute_work_item+0x141/0x1f0 [nvidia]
[ 73.404623] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 73.404964] ? _main_loop+0x7e/0x140 [nvidia]
[ 73.405207] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 73.405394] ? kthread+0xe1/0x110
[ 73.405395] ? __pfx_kthread+0x10/0x10
[ 73.405396] ? ret_from_fork+0x44/0x70
[ 73.405398] ? __pfx_kthread+0x10/0x10
[ 73.405399] ? ret_from_fork_asm+0x1a/0x30
[ 73.405401] </TASK>
[ 73.405401] ---[ end trace 0000000000000000 ]---
[ 73.410280] usb 1-9: new full-speed USB device number 5 using xhci_hcd
[ 73.551116] usb 1-9: not running at top speed; connect to a high speed hub
[ 73.565330] usb 1-9: New USB device found, idVendor=2109, idProduct=0103, bcdDevice= 2.00
[ 73.565341] usb 1-9: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 73.565346] usb 1-9: Product: USB 2.0 BILLBOARD
[ 73.565349] usb 1-9: Manufacturer: VIA Technologies Inc.
[ 73.565352] usb 1-9: SerialNumber: 0000000000000001
# lspci -k run here. USB-C-attached 4k display is then discovered and works as excpected.
[ 174.857360] thunderbolt 0000:06:00.0: control channel starting...
[ 174.857374] thunderbolt 0000:06:00.0: starting TX ring 0
[ 174.857393] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[ 174.857404] thunderbolt 0000:06:00.0: starting RX ring 0
[ 174.857419] thunderbolt 0000:06:00.0: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[ 174.857434] thunderbolt 0000:06:00.0: 0: resuming switch
[ 174.857439] thunderbolt 0000:06:00.0: restoring Switch at 0x0 (depth: 0, up port: 15)
[ 174.858449] xhci_hcd 0000:2d:00.0: xHC error in resume, USBSTS 0x401, Reinit
[ 174.858458] usb usb3: root hub lost power or was reset
[ 174.858464] usb usb4: root hub lost power or was reset
[ 174.860572] thunderbolt 0000:06:00.0: 0: disabling wakeup
[ 174.861510] thunderbolt 0000:06:00.0: acking hot plug event on 0:14
[ 174.861553] thunderbolt 0000:06:00.0: acking hot plug event on 0:16
[ 174.869557] thunderbolt 0000:06:00.0: 0: TMU: supports uni-directional mode
[ 174.869567] thunderbolt 0000:06:00.0: 0: TMU: supports enhanced uni-directional mode
[ 174.869734] thunderbolt 0000:06:00.0: 0: TMU: current mode: off
[ 174.869741] thunderbolt 0000:06:00.0: 0: TMU: mode change off -> bi-directional, HiFi requested
[ 174.870197] thunderbolt 0000:06:00.0: 0: TMU: mode set to: bi-directional, HiFi
[ 174.871097] thunderbolt 0000:06:00.0: 0:13: enter redrive mode, keeping powered
[ 174.872621] thunderbolt 0000:06:00.0: 0:14: DP IN resource available after hotplug
[ 174.872634] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 174.872765] thunderbolt 0000:06:00.0: 0:14: DP IN available
[ 174.872778] thunderbolt 0000:06:00.0: 0:14: no suitable DP OUT adapter available, not tunneling
[ 210.068848] fbcon: Taking over console
[ 211.771738] Console: switching to colour frame buffer device 160x45
# Another 4k display is attached here over USB-C. It is discovered and works as expected.
[ 356.122241] usb 1-10: new high-speed USB device number 6 using xhci_hcd
[ 356.127314] thunderbolt 0000:06:00.0: acking hot unplug event on 0:14
[ 356.127460] thunderbolt 0000:06:00.0: 0:14: DP IN resource unavailable
[ 356.128854] thunderbolt 0000:06:00.0: 0:14: enter redrive mode, keeping powered
[ 356.128864] thunderbolt 0000:06:00.0: bandwidth consumption changed, re-calculating estimated bandwidth
[ 356.128867] thunderbolt 0000:06:00.0: bandwidth re-calculation done
[ 356.128869] thunderbolt 0000:06:00.0: looking for DP IN <-> DP OUT pairs:
[ 356.128871] thunderbolt 0000:06:00.0: no suitable DP IN adapter available, not tunneling
[ 356.269964] usb 1-10: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.49
[ 356.269977] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 356.269982] usb 1-10: Product: 4-Port USB 2.0 Hub
[ 356.269985] usb 1-10: Manufacturer: Generic
[ 356.274729] hub 1-10:1.0: USB hub found
[ 356.276212] hub 1-10:1.0: 4 ports detected
[ 357.494135] usb 1-10.3: new full-speed USB device number 7 using xhci_hcd
[ 357.586181] usb 1-10.3: New USB device found, idVendor=043e, idProduct=9a39, bcdDevice= 4.11
[ 357.586188] usb 1-10.3: New USB device strings: Mfr=1, Product=3, SerialNumber=4
[ 357.586191] usb 1-10.3: Product: LG Monitor Controls
[ 357.586193] usb 1-10.3: Manufacturer: LG Electronics Inc.
[ 357.586195] usb 1-10.3: SerialNumber: 005INTX1F153
[ 357.593972] hid-generic 0003:043E:9A39.0003: hiddev1,hidraw2: USB HID v1.11 Device [LG Electronics Inc. LG Monitor Controls] on usb-0000:00:14.0-10.3/input0
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-11-01 23:13 ` Aaron Rainbolt
@ 2024-11-04 6:01 ` Mika Westerberg
2024-11-05 20:16 ` Aaron Rainbolt
0 siblings, 1 reply; 29+ messages in thread
From: Mika Westerberg @ 2024-11-04 6:01 UTC (permalink / raw)
To: Aaron Rainbolt
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
Hi,
On Fri, Nov 01, 2024 at 06:13:34PM -0500, Aaron Rainbolt wrote:
> Thanks! We have tested the 6.11.5 kernel with this patch. Here's the
> report from our testing team. dmesg logs are attached.
>
> -----
>
> 1. Created 2024-11-01_6.11.5_tbt-barlow-ridge-01.dmesg,
> 2024-11-01_6.11.5_tbt-barlow-ridge-02.dmesg.
> Version 01 is with nouveau. Version 02 is with Nivida (rebuilt); could
> NOT build keyboard module (complained did not support 6.11 kernel).
> 2. In both cases, hot-plug does not wake display. However, after lspci
> -k, displays wake and are reliable.
Okay, thanks again for testing!
It means disabling adapter 16 in DROM is actually intentional as that
is not connected to the dGPU and so makes sense.
> * Boot the system up, nothing connected.
> * Wait for Barlow Ridge to enter runtime suspend. This takes ~15
> seconds so waiting for > 15 seconds should be enough.
> * Plug in USB-C monitor to the USB-C port of the Barlow Ridge.
> Screen shows in log, screen wakes, but then no signal is received, and
> no image ever appears. Screen then sleeps after its timeout.
> * Run lspci -k to wake up the monitors. Once this is run, the display
> shows correctly and is stable. Adding another USB-C display after this
> also works correctly: It is recognized and lights up in seconds to
> show the desktop background, and remains stable.
>
> Notice that pre-6.5 kernels work fine with Barlow Ridge, which implies
> that new code is causing this. It may be new support code for tbt
> capability (and therefore pretty much required). But regardless, it's
> still new code. With the current patch, we can run a udev rule that
> enables hot plugging that likely always work, or (worst case) at least
> empowers the customer to refresh monitors by clicking a button.
We definitely want to fix this properly so there is no need for anyone
to run 'lspci' or similar hacks but because I'm unable to reproduce this
with my reference Barlow Ridge setup, I need some help from you.
You say with v6.5 it works? That's interesting because we only added
this redrive mode workaround for v6.9 and without that the domain surely
will not be kept powered but maybe I'm missing something.
I wonder if your test team could provide log from v6.5 as well following
the same steps, no need to run 'lspci' just do:
1. Boot the system up, nothing connected.
2. Wait for ~15 seconds for the domain to enter runtime suspend.
3. Plug in USB-C monitor to the USB-C port of Barlow Ridge.
4. Verify that it wakes up and, there is picture on the screen.
5. Wait for ~15 seconds.
Expectation: After step 5 the monitor still displays picture.
If this works as above then I'm really surprised but if that's the case
then we can maybe think of another approach of dealing with the redrive
mode.
> -----
>
> To my awareness, we have not yet reported the "device links to tunneled
> native ports are missing" error to the hardware manufacturer. I'll see
> if we can get that reported. Thanks for the heads-up!
Okay thanks. The corresponding "requirement" is here:
https://learn.microsoft.com/en-us/windows-hardware/drivers/pci/dsd-for-pcie-root-ports#map-native-protocols-pcie-displayport-tunneled-through-usb4-to-usb4-host-routers
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-11-04 6:01 ` Mika Westerberg
@ 2024-11-05 20:16 ` Aaron Rainbolt
2024-11-06 6:06 ` Mika Westerberg
0 siblings, 1 reply; 29+ messages in thread
From: Aaron Rainbolt @ 2024-11-05 20:16 UTC (permalink / raw)
To: Mika Westerberg
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
On Mon, 4 Nov 2024 08:01:59 +0200
Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
...snip...
> Okay, thanks again for testing!
>
> It means disabling adapter 16 in DROM is actually intentional as that
> is not connected to the dGPU and so makes sense.
>
> > * Boot the system up, nothing connected.
> > * Wait for Barlow Ridge to enter runtime suspend. This takes ~15
> > seconds so waiting for > 15 seconds should be enough.
> > * Plug in USB-C monitor to the USB-C port of the Barlow Ridge.
> > Screen shows in log, screen wakes, but then no signal is
> > received, and no image ever appears. Screen then sleeps after its
> > timeout.
> > * Run lspci -k to wake up the monitors. Once this is run, the
> > display shows correctly and is stable. Adding another USB-C display
> > after this also works correctly: It is recognized and lights up in
> > seconds to show the desktop background, and remains stable.
> >
> > Notice that pre-6.5 kernels work fine with Barlow Ridge, which
> > implies that new code is causing this. It may be new support code
> > for tbt capability (and therefore pretty much required). But
> > regardless, it's still new code. With the current patch, we can run
> > a udev rule that enables hot plugging that likely always work, or
> > (worst case) at least empowers the customer to refresh monitors by
> > clicking a button.
>
> We definitely want to fix this properly so there is no need for anyone
> to run 'lspci' or similar hacks but because I'm unable to reproduce
> this with my reference Barlow Ridge setup, I need some help from you.
>
> You say with v6.5 it works? That's interesting because we only added
> this redrive mode workaround for v6.9 and without that the domain
> surely will not be kept powered but maybe I'm missing something.
6.5 is *broken*. 6.1 works correctly, but that's probably because it
doesn't have Thunderbolt support for Barlow Ridge chips at all. I
suspect this is because the chip is just acting as a USB-C controller,
and that works just fine without the Thunderbolt driver.
> I wonder if your test team could provide log from v6.5 as well
> following the same steps, no need to run 'lspci' just do:
>
> 1. Boot the system up, nothing connected.
> 2. Wait for ~15 seconds for the domain to enter runtime suspend.
> 3. Plug in USB-C monitor to the USB-C port of Barlow Ridge.
> 4. Verify that it wakes up and, there is picture on the screen.
> 5. Wait for ~15 seconds.
>
> Expectation: After step 5 the monitor still displays picture.
>
> If this works as above then I'm really surprised but if that's the
> case then we can maybe think of another approach of dealing with the
> redrive mode.
We'd be happy to run this testing on the 6.1 kernel if it would be
helpful. Will that work, or is 6.1 too old?
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-11-05 20:16 ` Aaron Rainbolt
@ 2024-11-06 6:06 ` Mika Westerberg
2024-11-06 17:01 ` Aaron Rainbolt
0 siblings, 1 reply; 29+ messages in thread
From: Mika Westerberg @ 2024-11-06 6:06 UTC (permalink / raw)
To: Aaron Rainbolt
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
Hi Aaron,
On Tue, Nov 05, 2024 at 02:16:36PM -0600, Aaron Rainbolt wrote:
> On Mon, 4 Nov 2024 08:01:59 +0200
> Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
>
> ...snip...
>
> > Okay, thanks again for testing!
> >
> > It means disabling adapter 16 in DROM is actually intentional as that
> > is not connected to the dGPU and so makes sense.
> >
> > > * Boot the system up, nothing connected.
> > > * Wait for Barlow Ridge to enter runtime suspend. This takes ~15
> > > seconds so waiting for > 15 seconds should be enough.
> > > * Plug in USB-C monitor to the USB-C port of the Barlow Ridge.
> > > Screen shows in log, screen wakes, but then no signal is
> > > received, and no image ever appears. Screen then sleeps after its
> > > timeout.
> > > * Run lspci -k to wake up the monitors. Once this is run, the
> > > display shows correctly and is stable. Adding another USB-C display
> > > after this also works correctly: It is recognized and lights up in
> > > seconds to show the desktop background, and remains stable.
> > >
> > > Notice that pre-6.5 kernels work fine with Barlow Ridge, which
> > > implies that new code is causing this. It may be new support code
> > > for tbt capability (and therefore pretty much required). But
> > > regardless, it's still new code. With the current patch, we can run
> > > a udev rule that enables hot plugging that likely always work, or
> > > (worst case) at least empowers the customer to refresh monitors by
> > > clicking a button.
> >
> > We definitely want to fix this properly so there is no need for anyone
> > to run 'lspci' or similar hacks but because I'm unable to reproduce
> > this with my reference Barlow Ridge setup, I need some help from you.
> >
> > You say with v6.5 it works? That's interesting because we only added
> > this redrive mode workaround for v6.9 and without that the domain
> > surely will not be kept powered but maybe I'm missing something.
>
> 6.5 is *broken*. 6.1 works correctly, but that's probably because it
> doesn't have Thunderbolt support for Barlow Ridge chips at all. I
> suspect this is because the chip is just acting as a USB-C controller,
> and that works just fine without the Thunderbolt driver.
Exactly so while it "works" for this particular case all other cases
will not pass.
> > I wonder if your test team could provide log from v6.5 as well
> > following the same steps, no need to run 'lspci' just do:
> >
> > 1. Boot the system up, nothing connected.
> > 2. Wait for ~15 seconds for the domain to enter runtime suspend.
> > 3. Plug in USB-C monitor to the USB-C port of Barlow Ridge.
> > 4. Verify that it wakes up and, there is picture on the screen.
> > 5. Wait for ~15 seconds.
> >
> > Expectation: After step 5 the monitor still displays picture.
> >
> > If this works as above then I'm really surprised but if that's the
> > case then we can maybe think of another approach of dealing with the
> > redrive mode.
>
> We'd be happy to run this testing on the 6.1 kernel if it would be
> helpful. Will that work, or is 6.1 too old?
Unfortunately that does not help here. I need to figure something else
how to detect the redrive case with this firmware but first, does this
work in Windows? I mean if you install Windows to this same system does
it work as expected?
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-11-06 6:06 ` Mika Westerberg
@ 2024-11-06 17:01 ` Aaron Rainbolt
2024-11-07 9:45 ` Mika Westerberg
0 siblings, 1 reply; 29+ messages in thread
From: Aaron Rainbolt @ 2024-11-06 17:01 UTC (permalink / raw)
To: Mika Westerberg
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
On Wed, 6 Nov 2024 08:06:35 +0200
Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
> Hi Aaron,
>
> On Tue, Nov 05, 2024 at 02:16:36PM -0600, Aaron Rainbolt wrote:
> > On Mon, 4 Nov 2024 08:01:59 +0200
> > Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
> >
> > ...snip...
> >
> > > Okay, thanks again for testing!
> > >
> > > It means disabling adapter 16 in DROM is actually intentional as
> > > that is not connected to the dGPU and so makes sense.
> > >
> > > > * Boot the system up, nothing connected.
> > > > * Wait for Barlow Ridge to enter runtime suspend. This takes ~15
> > > > seconds so waiting for > 15 seconds should be enough.
> > > > * Plug in USB-C monitor to the USB-C port of the Barlow Ridge.
> > > > Screen shows in log, screen wakes, but then no signal is
> > > > received, and no image ever appears. Screen then sleeps after
> > > > its timeout.
> > > > * Run lspci -k to wake up the monitors. Once this is run, the
> > > > display shows correctly and is stable. Adding another USB-C
> > > > display after this also works correctly: It is recognized and
> > > > lights up in seconds to show the desktop background, and
> > > > remains stable.
> > > >
> > > > Notice that pre-6.5 kernels work fine with Barlow Ridge, which
> > > > implies that new code is causing this. It may be new support
> > > > code for tbt capability (and therefore pretty much required).
> > > > But regardless, it's still new code. With the current patch, we
> > > > can run a udev rule that enables hot plugging that likely
> > > > always work, or (worst case) at least empowers the customer to
> > > > refresh monitors by clicking a button.
> > >
> > > We definitely want to fix this properly so there is no need for
> > > anyone to run 'lspci' or similar hacks but because I'm unable to
> > > reproduce this with my reference Barlow Ridge setup, I need some
> > > help from you.
> > >
> > > You say with v6.5 it works? That's interesting because we only
> > > added this redrive mode workaround for v6.9 and without that the
> > > domain surely will not be kept powered but maybe I'm missing
> > > something.
> >
> > 6.5 is *broken*. 6.1 works correctly, but that's probably because it
> > doesn't have Thunderbolt support for Barlow Ridge chips at all. I
> > suspect this is because the chip is just acting as a USB-C
> > controller, and that works just fine without the Thunderbolt
> > driver.
>
> Exactly so while it "works" for this particular case all other cases
> will not pass.
>
> > > I wonder if your test team could provide log from v6.5 as well
> > > following the same steps, no need to run 'lspci' just do:
> > >
> > > 1. Boot the system up, nothing connected.
> > > 2. Wait for ~15 seconds for the domain to enter runtime suspend.
> > > 3. Plug in USB-C monitor to the USB-C port of Barlow Ridge.
> > > 4. Verify that it wakes up and, there is picture on the screen.
> > > 5. Wait for ~15 seconds.
> > >
> > > Expectation: After step 5 the monitor still displays picture.
> > >
> > > If this works as above then I'm really surprised but if that's the
> > > case then we can maybe think of another approach of dealing with
> > > the redrive mode.
> >
> > We'd be happy to run this testing on the 6.1 kernel if it would be
> > helpful. Will that work, or is 6.1 too old?
>
> Unfortunately that does not help here. I need to figure something else
> how to detect the redrive case with this firmware but first, does this
> work in Windows? I mean if you install Windows to this same system
> does it work as expected?
It does work as expected under Windows 11, with one major caveat. We
used a Windows 11 ISO with a setup.exe created on April 05 2023 for
installing the test system, and after initial installation it behaved
exactly the same way as Linux behaves now (displays going blank soon
after being plugged in). However, after installing all available
Windows updates, the issue resolved, and the displays worked exactly as
intended (the screens are recognized when attached and do not end up
disconnecting after a timeout).
Would it be helpful to test on Windows 11, and provide a report and
system logs?
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-11-06 17:01 ` Aaron Rainbolt
@ 2024-11-07 9:45 ` Mika Westerberg
2024-11-11 8:22 ` Mika Westerberg
0 siblings, 1 reply; 29+ messages in thread
From: Mika Westerberg @ 2024-11-07 9:45 UTC (permalink / raw)
To: Aaron Rainbolt
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
Hi,
On Wed, Nov 06, 2024 at 11:01:34AM -0600, Aaron Rainbolt wrote:
> > Unfortunately that does not help here. I need to figure something else
> > how to detect the redrive case with this firmware but first, does this
> > work in Windows? I mean if you install Windows to this same system
> > does it work as expected?
>
> It does work as expected under Windows 11, with one major caveat. We
> used a Windows 11 ISO with a setup.exe created on April 05 2023 for
> installing the test system, and after initial installation it behaved
> exactly the same way as Linux behaves now (displays going blank soon
> after being plugged in). However, after installing all available
> Windows updates, the issue resolved, and the displays worked exactly as
> intended (the screens are recognized when attached and do not end up
> disconnecting after a timeout).
>
> Would it be helpful to test on Windows 11, and provide a report and
> system logs?
Unfortunately, I don't know anything about Windows ;-)
However, I asked our Thunderbolt hardware/firmware team about this, if
they have any idea how it was solved in Windows side. Might take a
couple of days though.
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-11-07 9:45 ` Mika Westerberg
@ 2024-11-11 8:22 ` Mika Westerberg
2024-11-12 21:44 ` Aaron Rainbolt
0 siblings, 1 reply; 29+ messages in thread
From: Mika Westerberg @ 2024-11-11 8:22 UTC (permalink / raw)
To: Aaron Rainbolt
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
Hi,
On Thu, Nov 07, 2024 at 11:45:44AM +0200, Mika Westerberg wrote:
> Hi,
>
> On Wed, Nov 06, 2024 at 11:01:34AM -0600, Aaron Rainbolt wrote:
> > > Unfortunately that does not help here. I need to figure something else
> > > how to detect the redrive case with this firmware but first, does this
> > > work in Windows? I mean if you install Windows to this same system
> > > does it work as expected?
> >
> > It does work as expected under Windows 11, with one major caveat. We
> > used a Windows 11 ISO with a setup.exe created on April 05 2023 for
> > installing the test system, and after initial installation it behaved
> > exactly the same way as Linux behaves now (displays going blank soon
> > after being plugged in). However, after installing all available
> > Windows updates, the issue resolved, and the displays worked exactly as
> > intended (the screens are recognized when attached and do not end up
> > disconnecting after a timeout).
> >
> > Would it be helpful to test on Windows 11, and provide a report and
> > system logs?
>
> Unfortunately, I don't know anything about Windows ;-)
>
> However, I asked our Thunderbolt hardware/firmware team about this, if
> they have any idea how it was solved in Windows side. Might take a
> couple of days though.
While waiting for this, I wonder if you guys could do one more
experiment? I would like to get the traces what is happening there
(hoping something pops out there). Following steps:
1. Download and install tbtools [1].
2. Build and install the kernel with my "redrive" patch.
3. Boot the system up, nothing connected.
4. Wait until the Barlow Ridge is in runtime suspend (so wait for
~30s or so)
5. Enable tracing:
# tbtrace enable
6. Plug in USB-C monitor to the USB-C port of the Barlow Ridge. Do not
run 'lspci -k'. Expectation here is that there is no picture on
the monitor (in other words the issue reproduces).
7. Stop tracing and take full dump:
# tbtrace disable
# tbtrace dump -vv > trace.out
8. Send trace.out along with full dmesg to me.
Thanks!
[1] https://github.com/intel/tbtools
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-11-11 8:22 ` Mika Westerberg
@ 2024-11-12 21:44 ` Aaron Rainbolt
2024-11-14 11:51 ` Mika Westerberg
0 siblings, 1 reply; 29+ messages in thread
From: Aaron Rainbolt @ 2024-11-12 21:44 UTC (permalink / raw)
To: Mika Westerberg
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
[-- Attachment #1: Type: text/plain, Size: 3111 bytes --]
On Mon, 11 Nov 2024 10:22:23 +0200
Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
> Hi,
>
> On Thu, Nov 07, 2024 at 11:45:44AM +0200, Mika Westerberg wrote:
> > Hi,
> >
> > On Wed, Nov 06, 2024 at 11:01:34AM -0600, Aaron Rainbolt wrote:
> > > > Unfortunately that does not help here. I need to figure
> > > > something else how to detect the redrive case with this
> > > > firmware but first, does this work in Windows? I mean if you
> > > > install Windows to this same system does it work as expected?
> > >
> > > It does work as expected under Windows 11, with one major caveat.
> > > We used a Windows 11 ISO with a setup.exe created on April 05
> > > 2023 for installing the test system, and after initial
> > > installation it behaved exactly the same way as Linux behaves now
> > > (displays going blank soon after being plugged in). However,
> > > after installing all available Windows updates, the issue
> > > resolved, and the displays worked exactly as intended (the
> > > screens are recognized when attached and do not end up
> > > disconnecting after a timeout).
> > >
> > > Would it be helpful to test on Windows 11, and provide a report
> > > and system logs?
> >
> > Unfortunately, I don't know anything about Windows ;-)
> >
> > However, I asked our Thunderbolt hardware/firmware team about this,
> > if they have any idea how it was solved in Windows side. Might take
> > a couple of days though.
>
> While waiting for this, I wonder if you guys could do one more
> experiment? I would like to get the traces what is happening there
> (hoping something pops out there). Following steps:
>
> 1. Download and install tbtools [1].
> 2. Build and install the kernel with my "redrive" patch.
> 3. Boot the system up, nothing connected.
> 4. Wait until the Barlow Ridge is in runtime suspend (so wait for
> ~30s or so)
> 5. Enable tracing:
>
> # tbtrace enable
>
> 6. Plug in USB-C monitor to the USB-C port of the Barlow Ridge. Do
> not run 'lspci -k'. Expectation here is that there is no picture on
> the monitor (in other words the issue reproduces).
>
> 7. Stop tracing and take full dump:
>
> # tbtrace disable
> # tbtrace dump -vv > trace.out
>
> 8. Send trace.out along with full dmesg to me.
>
> Thanks!
>
> [1] https://github.com/intel/tbtools
Testing done as requested. Notes from tester:
* I verified lsmod |grep thunderbolt which showed module.
* When running sudo ./tbtrace enable, output was Thunderbolt/USB4
tracing: Enabled.
* When plugging in monitor, it wakes the backlight, but there is no
image. syslog shows it as LG monitor controls. The monitor reports
"no signal" and eventually turns off the backlight to save power.
* When running sudo ./tbtrace disable, output was Thunderbolt/USB4
tracing: Disabled.
* Output was save using tbtrace dump -vv > trace.out and sudo dmesg >
trace.dmesg. trace.out is an empty file.
---
(Yes, that's correct, trace.out is empty. I attached it nonetheless,
but it's a 0-byte file. I'm guessing the Thunderbolt chip probably
didn't come out of suspend?)
[-- Attachment #2: trace.dmesg --]
[-- Type: application/octet-stream, Size: 266385 bytes --]
[ 67.136211] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.136233] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.136258] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.136260] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.136262] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.136263] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.136264] RIP: 0010:follow_pte+0x220/0x230
[ 67.136266] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.136267] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.136268] RAX: 0000000000000000 RBX: 00007b0e50775000 RCX: ffffa5a103117b60
[ 67.136269] RDX: ffffa5a103117b58 RSI: 00007b0e50775000 RDI: ffff8ef890383870
[ 67.136270] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.136270] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.136271] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef855ba4780
[ 67.136272] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.136273] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.136274] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.136274] PKRU: 55555554
[ 67.136275] Call Trace:
[ 67.136275] <TASK>
[ 67.136276] ? show_regs+0x6c/0x80
[ 67.136278] ? __warn+0x88/0x140
[ 67.136280] ? follow_pte+0x220/0x230
[ 67.136282] ? report_bug+0x182/0x1b0
[ 67.136284] ? handle_bug+0x51/0xa0
[ 67.136286] ? exc_invalid_op+0x18/0x80
[ 67.136289] ? asm_exc_invalid_op+0x1b/0x20
[ 67.136291] ? follow_pte+0x220/0x230
[ 67.136293] follow_phys+0x4e/0x110
[ 67.136296] untrack_pfn+0x57/0x130
[ 67.136298] unmap_single_vma+0xbc/0xf0
[ 67.136300] zap_page_range_single+0x138/0x210
[ 67.136302] unmap_mapping_range+0x11b/0x140
[ 67.136304] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.136476] _nv000708rm+0x35/0x100 [nvidia]
[ 67.136739] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.137005] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.137179] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.137354] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.137527] ? kthread+0xe1/0x110
[ 67.137529] ? __pfx_kthread+0x10/0x10
[ 67.137530] ? ret_from_fork+0x44/0x70
[ 67.137531] ? __pfx_kthread+0x10/0x10
[ 67.137533] ? ret_from_fork_asm+0x1a/0x30
[ 67.137535] </TASK>
[ 67.137536] ---[ end trace 0000000000000000 ]---
[ 67.137550] ------------[ cut here ]------------
[ 67.137551] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.137554] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.137573] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.137596] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.137623] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.137625] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.137627] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.137627] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.137628] RIP: 0010:follow_pte+0x220/0x230
[ 67.137630] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.137631] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.137632] RAX: 0000000000000000 RBX: 00007b0e4e940000 RCX: ffffa5a103117b60
[ 67.137633] RDX: ffffa5a103117b58 RSI: 00007b0e4e940000 RDI: ffff8ef8426c74d8
[ 67.137633] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.137634] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.137635] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef855ba4780
[ 67.137635] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.137636] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.137637] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.137637] PKRU: 55555554
[ 67.137638] Call Trace:
[ 67.137638] <TASK>
[ 67.137639] ? show_regs+0x6c/0x80
[ 67.137640] ? __warn+0x88/0x140
[ 67.137643] ? follow_pte+0x220/0x230
[ 67.137645] ? report_bug+0x182/0x1b0
[ 67.137646] ? handle_bug+0x51/0xa0
[ 67.137649] ? exc_invalid_op+0x18/0x80
[ 67.137651] ? asm_exc_invalid_op+0x1b/0x20
[ 67.137652] ? follow_pte+0x220/0x230
[ 67.137655] follow_phys+0x4e/0x110
[ 67.137657] untrack_pfn+0x57/0x130
[ 67.137659] unmap_single_vma+0xbc/0xf0
[ 67.137661] zap_page_range_single+0x138/0x210
[ 67.137663] unmap_mapping_range+0x11b/0x140
[ 67.137664] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.137874] _nv000708rm+0x35/0x100 [nvidia]
[ 67.138113] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.138348] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.138509] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.138668] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.138883] ? kthread+0xe1/0x110
[ 67.138885] ? __pfx_kthread+0x10/0x10
[ 67.138887] ? ret_from_fork+0x44/0x70
[ 67.138888] ? __pfx_kthread+0x10/0x10
[ 67.138890] ? ret_from_fork_asm+0x1a/0x30
[ 67.138893] </TASK>
[ 67.138893] ---[ end trace 0000000000000000 ]---
[ 67.138900] ------------[ cut here ]------------
[ 67.138901] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.138904] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.138922] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.138945] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.138967] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.138970] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.138971] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.138972] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.138972] RIP: 0010:follow_pte+0x220/0x230
[ 67.138975] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.138976] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.138976] RAX: 0000000000000000 RBX: 00007b0e4f470000 RCX: ffffa5a103117b60
[ 67.138977] RDX: ffffa5a103117b58 RSI: 00007b0e4f470000 RDI: ffff8ef885845c08
[ 67.138978] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.138978] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.138979] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef855ba4780
[ 67.138980] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.138980] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.138981] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.138982] PKRU: 55555554
[ 67.138982] Call Trace:
[ 67.138983] <TASK>
[ 67.138983] ? show_regs+0x6c/0x80
[ 67.138985] ? __warn+0x88/0x140
[ 67.138987] ? follow_pte+0x220/0x230
[ 67.138989] ? report_bug+0x182/0x1b0
[ 67.138991] ? handle_bug+0x51/0xa0
[ 67.138993] ? exc_invalid_op+0x18/0x80
[ 67.138995] ? asm_exc_invalid_op+0x1b/0x20
[ 67.138997] ? follow_pte+0x220/0x230
[ 67.138999] follow_phys+0x4e/0x110
[ 67.139001] untrack_pfn+0x57/0x130
[ 67.139004] unmap_single_vma+0xbc/0xf0
[ 67.139005] zap_page_range_single+0x138/0x210
[ 67.139007] unmap_mapping_range+0x11b/0x140
[ 67.139009] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.139167] _nv000708rm+0x35/0x100 [nvidia]
[ 67.139400] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.139640] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.139843] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.140006] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.140164] ? kthread+0xe1/0x110
[ 67.140166] ? __pfx_kthread+0x10/0x10
[ 67.140167] ? ret_from_fork+0x44/0x70
[ 67.140168] ? __pfx_kthread+0x10/0x10
[ 67.140169] ? ret_from_fork_asm+0x1a/0x30
[ 67.140172] </TASK>
[ 67.140172] ---[ end trace 0000000000000000 ]---
[ 67.140181] ------------[ cut here ]------------
[ 67.140181] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.140184] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.140202] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.140223] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.140246] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.140248] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.140250] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.140250] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.140251] RIP: 0010:follow_pte+0x220/0x230
[ 67.140253] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.140254] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.140255] RAX: 0000000000000000 RBX: 000073f6ff41b000 RCX: ffffa5a103117b60
[ 67.140255] RDX: ffffa5a103117b58 RSI: 000073f6ff41b000 RDI: ffff8ef86ef58fd0
[ 67.140256] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.140257] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.140257] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef84d3d3180
[ 67.140258] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.140259] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.140259] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.140260] PKRU: 55555554
[ 67.140260] Call Trace:
[ 67.140261] <TASK>
[ 67.140261] ? show_regs+0x6c/0x80
[ 67.140263] ? __warn+0x88/0x140
[ 67.140265] ? follow_pte+0x220/0x230
[ 67.140267] ? report_bug+0x182/0x1b0
[ 67.140269] ? handle_bug+0x51/0xa0
[ 67.140271] ? exc_invalid_op+0x18/0x80
[ 67.140273] ? asm_exc_invalid_op+0x1b/0x20
[ 67.140275] ? follow_pte+0x220/0x230
[ 67.140277] follow_phys+0x4e/0x110
[ 67.140279] untrack_pfn+0x57/0x130
[ 67.140282] unmap_single_vma+0xbc/0xf0
[ 67.140283] zap_page_range_single+0x138/0x210
[ 67.140285] unmap_mapping_range+0x11b/0x140
[ 67.140287] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.140408] _nv000708rm+0x35/0x100 [nvidia]
[ 67.140564] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.140715] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.140876] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.140988] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.141097] ? kthread+0xe1/0x110
[ 67.141098] ? __pfx_kthread+0x10/0x10
[ 67.141099] ? ret_from_fork+0x44/0x70
[ 67.141100] ? __pfx_kthread+0x10/0x10
[ 67.141101] ? ret_from_fork_asm+0x1a/0x30
[ 67.141102] </TASK>
[ 67.141103] ---[ end trace 0000000000000000 ]---
[ 67.141107] ------------[ cut here ]------------
[ 67.141108] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.141110] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.141137] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.141151] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.141167] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.141169] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.141170] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.141170] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.141170] RIP: 0010:follow_pte+0x220/0x230
[ 67.141172] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.141172] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.141173] RAX: 0000000000000000 RBX: 000073f6ff4d6000 RCX: ffffa5a103117b60
[ 67.141173] RDX: ffffa5a103117b58 RSI: 000073f6ff4d6000 RDI: ffff8ef86eb59ee8
[ 67.141174] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.141174] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.141175] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef84d3d3180
[ 67.141175] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.141176] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.141176] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.141177] PKRU: 55555554
[ 67.141177] Call Trace:
[ 67.141177] <TASK>
[ 67.141178] ? show_regs+0x6c/0x80
[ 67.141179] ? __warn+0x88/0x140
[ 67.141180] ? follow_pte+0x220/0x230
[ 67.141182] ? report_bug+0x182/0x1b0
[ 67.141183] ? handle_bug+0x51/0xa0
[ 67.141184] ? exc_invalid_op+0x18/0x80
[ 67.141186] ? asm_exc_invalid_op+0x1b/0x20
[ 67.141187] ? follow_pte+0x220/0x230
[ 67.141188] follow_phys+0x4e/0x110
[ 67.141190] untrack_pfn+0x57/0x130
[ 67.141192] unmap_single_vma+0xbc/0xf0
[ 67.141193] zap_page_range_single+0x138/0x210
[ 67.141194] unmap_mapping_range+0x11b/0x140
[ 67.141197] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.141309] _nv000708rm+0x35/0x100 [nvidia]
[ 67.141477] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.141643] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.141768] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.141883] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.141991] ? kthread+0xe1/0x110
[ 67.141992] ? __pfx_kthread+0x10/0x10
[ 67.141993] ? ret_from_fork+0x44/0x70
[ 67.141994] ? __pfx_kthread+0x10/0x10
[ 67.141995] ? ret_from_fork_asm+0x1a/0x30
[ 67.141996] </TASK>
[ 67.141997] ---[ end trace 0000000000000000 ]---
[ 67.142003] ------------[ cut here ]------------
[ 67.142003] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.142005] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.142017] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.142031] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.142047] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.142048] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.142049] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.142050] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.142050] RIP: 0010:follow_pte+0x220/0x230
[ 67.142052] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.142052] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.142053] RAX: 0000000000000000 RBX: 00007aced8f33000 RCX: ffffa5a103117b60
[ 67.142053] RDX: ffffa5a103117b58 RSI: 00007aced8f33000 RDI: ffff8ef875264da8
[ 67.142054] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.142054] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.142055] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef84d3d2680
[ 67.142055] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.142056] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.142056] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.142056] PKRU: 55555554
[ 67.142057] Call Trace:
[ 67.142057] <TASK>
[ 67.142057] ? show_regs+0x6c/0x80
[ 67.142058] ? __warn+0x88/0x140
[ 67.142060] ? follow_pte+0x220/0x230
[ 67.142061] ? report_bug+0x182/0x1b0
[ 67.142063] ? handle_bug+0x51/0xa0
[ 67.142064] ? exc_invalid_op+0x18/0x80
[ 67.142065] ? asm_exc_invalid_op+0x1b/0x20
[ 67.142067] ? follow_pte+0x220/0x230
[ 67.142068] follow_phys+0x4e/0x110
[ 67.142070] untrack_pfn+0x57/0x130
[ 67.142071] unmap_single_vma+0xbc/0xf0
[ 67.142072] zap_page_range_single+0x138/0x210
[ 67.142074] unmap_mapping_range+0x11b/0x140
[ 67.142075] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.142186] _nv000708rm+0x35/0x100 [nvidia]
[ 67.142351] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.142507] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.142615] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.142713] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.142866] ? kthread+0xe1/0x110
[ 67.142867] ? __pfx_kthread+0x10/0x10
[ 67.142868] ? ret_from_fork+0x44/0x70
[ 67.142869] ? __pfx_kthread+0x10/0x10
[ 67.142870] ? ret_from_fork_asm+0x1a/0x30
[ 67.142872] </TASK>
[ 67.142873] ---[ end trace 0000000000000000 ]---
[ 67.142877] ------------[ cut here ]------------
[ 67.142878] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.142880] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.142894] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.142912] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.142951] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.142952] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.142953] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.142953] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.142954] RIP: 0010:follow_pte+0x220/0x230
[ 67.142955] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.142955] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.142956] RAX: 0000000000000000 RBX: 0000796ee6601000 RCX: ffffa5a103117b60
[ 67.142956] RDX: ffffa5a103117b58 RSI: 0000796ee6601000 RDI: ffff8ef85bd3b088
[ 67.142957] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.142957] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.142958] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef856b8b180
[ 67.142958] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.142959] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.142959] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.142960] PKRU: 55555554
[ 67.142960] Call Trace:
[ 67.142960] <TASK>
[ 67.142960] ? show_regs+0x6c/0x80
[ 67.142962] ? __warn+0x88/0x140
[ 67.142963] ? follow_pte+0x220/0x230
[ 67.142964] ? report_bug+0x182/0x1b0
[ 67.142966] ? handle_bug+0x51/0xa0
[ 67.142967] ? exc_invalid_op+0x18/0x80
[ 67.142968] ? asm_exc_invalid_op+0x1b/0x20
[ 67.142970] ? follow_pte+0x220/0x230
[ 67.142971] follow_phys+0x4e/0x110
[ 67.142973] untrack_pfn+0x57/0x130
[ 67.142974] unmap_single_vma+0xbc/0xf0
[ 67.142975] zap_page_range_single+0x138/0x210
[ 67.142977] unmap_mapping_range+0x11b/0x140
[ 67.142978] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.143088] _nv000708rm+0x35/0x100 [nvidia]
[ 67.143250] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.143412] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.143525] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.143637] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.143759] ? kthread+0xe1/0x110
[ 67.143761] ? __pfx_kthread+0x10/0x10
[ 67.143762] ? ret_from_fork+0x44/0x70
[ 67.143763] ? __pfx_kthread+0x10/0x10
[ 67.143764] ? ret_from_fork_asm+0x1a/0x30
[ 67.143766] </TASK>
[ 67.143766] ---[ end trace 0000000000000000 ]---
[ 67.143770] ------------[ cut here ]------------
[ 67.143771] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.143773] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.143785] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.143802] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.143827] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.143829] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.143830] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.143831] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.143831] RIP: 0010:follow_pte+0x220/0x230
[ 67.143832] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.143833] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.143834] RAX: 0000000000000000 RBX: 00007d8b83f75000 RCX: ffffa5a103117b60
[ 67.143834] RDX: ffffa5a103117b58 RSI: 00007d8b83f75000 RDI: ffff8ef8cf218958
[ 67.143834] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.143835] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.143835] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef84fc22100
[ 67.143836] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.143836] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.143837] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.143837] PKRU: 55555554
[ 67.143838] Call Trace:
[ 67.143838] <TASK>
[ 67.143838] ? show_regs+0x6c/0x80
[ 67.143839] ? __warn+0x88/0x140
[ 67.143841] ? follow_pte+0x220/0x230
[ 67.143842] ? report_bug+0x182/0x1b0
[ 67.143843] ? handle_bug+0x51/0xa0
[ 67.143845] ? exc_invalid_op+0x18/0x80
[ 67.143846] ? asm_exc_invalid_op+0x1b/0x20
[ 67.143847] ? follow_pte+0x220/0x230
[ 67.143849] follow_phys+0x4e/0x110
[ 67.143850] untrack_pfn+0x57/0x130
[ 67.143852] unmap_single_vma+0xbc/0xf0
[ 67.143853] zap_page_range_single+0x138/0x210
[ 67.143854] unmap_mapping_range+0x11b/0x140
[ 67.143856] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.143965] _nv000708rm+0x35/0x100 [nvidia]
[ 67.144134] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.144300] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.144399] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.144499] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.144599] ? kthread+0xe1/0x110
[ 67.144600] ? __pfx_kthread+0x10/0x10
[ 67.144600] ? ret_from_fork+0x44/0x70
[ 67.144601] ? __pfx_kthread+0x10/0x10
[ 67.144602] ? ret_from_fork_asm+0x1a/0x30
[ 67.144603] </TASK>
[ 67.144604] ---[ end trace 0000000000000000 ]---
[ 67.144607] ------------[ cut here ]------------
[ 67.144608] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.144609] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.144621] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.144634] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.144648] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.144649] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.144650] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.144650] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.144651] RIP: 0010:follow_pte+0x220/0x230
[ 67.144652] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.144653] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.144653] RAX: 0000000000000000 RBX: 00007aced81d2000 RCX: ffffa5a103117b60
[ 67.144654] RDX: ffffa5a103117b58 RSI: 00007aced81d2000 RDI: ffff8ef87a3a40b8
[ 67.144654] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.144654] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.144655] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef84d3d2680
[ 67.144655] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.144656] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.144656] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.144657] PKRU: 55555554
[ 67.144657] Call Trace:
[ 67.144657] <TASK>
[ 67.144657] ? show_regs+0x6c/0x80
[ 67.144658] ? __warn+0x88/0x140
[ 67.144660] ? follow_pte+0x220/0x230
[ 67.144661] ? report_bug+0x182/0x1b0
[ 67.144662] ? handle_bug+0x51/0xa0
[ 67.144663] ? exc_invalid_op+0x18/0x80
[ 67.144664] ? asm_exc_invalid_op+0x1b/0x20
[ 67.144666] ? follow_pte+0x220/0x230
[ 67.144667] follow_phys+0x4e/0x110
[ 67.144668] untrack_pfn+0x57/0x130
[ 67.144670] unmap_single_vma+0xbc/0xf0
[ 67.144671] zap_page_range_single+0x138/0x210
[ 67.144672] unmap_mapping_range+0x11b/0x140
[ 67.144673] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.144799] _nv000708rm+0x35/0x100 [nvidia]
[ 67.144966] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.145136] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.145249] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.145362] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.145477] ? kthread+0xe1/0x110
[ 67.145478] ? __pfx_kthread+0x10/0x10
[ 67.145479] ? ret_from_fork+0x44/0x70
[ 67.145480] ? __pfx_kthread+0x10/0x10
[ 67.145481] ? ret_from_fork_asm+0x1a/0x30
[ 67.145482] </TASK>
[ 67.145483] ---[ end trace 0000000000000000 ]---
[ 67.145488] ------------[ cut here ]------------
[ 67.145489] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.145491] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.145503] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.145519] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.145535] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.145537] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.145538] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.145538] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.145538] RIP: 0010:follow_pte+0x220/0x230
[ 67.145540] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.145540] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.145541] RAX: 0000000000000000 RBX: 0000796ee4101000 RCX: ffffa5a103117b60
[ 67.145542] RDX: ffffa5a103117b58 RSI: 0000796ee4101000 RDI: ffff8ef8c496f700
[ 67.145542] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.145542] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.145543] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef856b8b180
[ 67.145543] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.145544] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.145544] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.145545] PKRU: 55555554
[ 67.145545] Call Trace:
[ 67.145545] <TASK>
[ 67.145546] ? show_regs+0x6c/0x80
[ 67.145547] ? __warn+0x88/0x140
[ 67.145548] ? follow_pte+0x220/0x230
[ 67.145550] ? report_bug+0x182/0x1b0
[ 67.145551] ? handle_bug+0x51/0xa0
[ 67.145552] ? exc_invalid_op+0x18/0x80
[ 67.145554] ? asm_exc_invalid_op+0x1b/0x20
[ 67.145555] ? follow_pte+0x220/0x230
[ 67.145557] follow_phys+0x4e/0x110
[ 67.145558] untrack_pfn+0x57/0x130
[ 67.145560] unmap_single_vma+0xbc/0xf0
[ 67.145561] zap_page_range_single+0x138/0x210
[ 67.145562] unmap_mapping_range+0x11b/0x140
[ 67.145563] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.145677] _nv000708rm+0x35/0x100 [nvidia]
[ 67.145850] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.146006] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.146116] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.146230] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.146344] ? kthread+0xe1/0x110
[ 67.146345] ? __pfx_kthread+0x10/0x10
[ 67.146345] ? ret_from_fork+0x44/0x70
[ 67.146346] ? __pfx_kthread+0x10/0x10
[ 67.146347] ? ret_from_fork_asm+0x1a/0x30
[ 67.146349] </TASK>
[ 67.146349] ---[ end trace 0000000000000000 ]---
[ 67.146356] ------------[ cut here ]------------
[ 67.146356] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.146358] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.146374] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.146386] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.146401] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.146402] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.146403] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.146403] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.146404] RIP: 0010:follow_pte+0x220/0x230
[ 67.146405] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.146405] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.146406] RAX: 0000000000000000 RBX: 00007d8b8053b000 RCX: ffffa5a103117b60
[ 67.146406] RDX: ffffa5a103117b58 RSI: 00007d8b8053b000 RDI: ffff8ef8463c8e60
[ 67.146407] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.146407] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.146408] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef84fc22100
[ 67.146408] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.146408] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.146409] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.146409] PKRU: 55555554
[ 67.146410] Call Trace:
[ 67.146410] <TASK>
[ 67.146410] ? show_regs+0x6c/0x80
[ 67.146411] ? __warn+0x88/0x140
[ 67.146412] ? follow_pte+0x220/0x230
[ 67.146414] ? report_bug+0x182/0x1b0
[ 67.146415] ? handle_bug+0x51/0xa0
[ 67.146416] ? exc_invalid_op+0x18/0x80
[ 67.146417] ? asm_exc_invalid_op+0x1b/0x20
[ 67.146418] ? follow_pte+0x220/0x230
[ 67.146420] follow_phys+0x4e/0x110
[ 67.146421] untrack_pfn+0x57/0x130
[ 67.146423] unmap_single_vma+0xbc/0xf0
[ 67.146423] zap_page_range_single+0x138/0x210
[ 67.146425] unmap_mapping_range+0x11b/0x140
[ 67.146426] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.146539] _nv000708rm+0x35/0x100 [nvidia]
[ 67.146685] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.146842] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.146945] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.147056] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.147169] ? kthread+0xe1/0x110
[ 67.147170] ? __pfx_kthread+0x10/0x10
[ 67.147171] ? ret_from_fork+0x44/0x70
[ 67.147172] ? __pfx_kthread+0x10/0x10
[ 67.147173] ? ret_from_fork_asm+0x1a/0x30
[ 67.147174] </TASK>
[ 67.147174] ---[ end trace 0000000000000000 ]---
[ 67.147180] ------------[ cut here ]------------
[ 67.147180] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.147182] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.147194] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.147217] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.147233] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.147234] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.147235] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.147236] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.147236] RIP: 0010:follow_pte+0x220/0x230
[ 67.147238] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.147238] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.147239] RAX: 0000000000000000 RBX: 00007b6b51215000 RCX: ffffa5a103117b60
[ 67.147240] RDX: ffffa5a103117b58 RSI: 00007b6b51215000 RDI: ffff8ef8d5ce45c0
[ 67.147240] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.147240] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.147241] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef851004d00
[ 67.147241] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.147242] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.147242] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.147243] PKRU: 55555554
[ 67.147243] Call Trace:
[ 67.147243] <TASK>
[ 67.147244] ? show_regs+0x6c/0x80
[ 67.147245] ? __warn+0x88/0x140
[ 67.147249] ? follow_pte+0x220/0x230
[ 67.147250] ? report_bug+0x182/0x1b0
[ 67.147251] ? handle_bug+0x51/0xa0
[ 67.147253] ? exc_invalid_op+0x18/0x80
[ 67.147254] ? asm_exc_invalid_op+0x1b/0x20
[ 67.147255] ? follow_pte+0x220/0x230
[ 67.147257] follow_phys+0x4e/0x110
[ 67.147258] untrack_pfn+0x57/0x130
[ 67.147260] unmap_single_vma+0xbc/0xf0
[ 67.147261] zap_page_range_single+0x138/0x210
[ 67.147262] unmap_mapping_range+0x11b/0x140
[ 67.147263] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.147377] _nv000708rm+0x35/0x100 [nvidia]
[ 67.147542] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.147703] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.147843] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.147944] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.148054] ? kthread+0xe1/0x110
[ 67.148055] ? __pfx_kthread+0x10/0x10
[ 67.148055] ? ret_from_fork+0x44/0x70
[ 67.148056] ? __pfx_kthread+0x10/0x10
[ 67.148057] ? ret_from_fork_asm+0x1a/0x30
[ 67.148059] </TASK>
[ 67.148059] ---[ end trace 0000000000000000 ]---
[ 67.148063] ------------[ cut here ]------------
[ 67.148064] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.148065] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.148078] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.148092] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.148108] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.148109] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.148110] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.148111] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.148111] RIP: 0010:follow_pte+0x220/0x230
[ 67.148113] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.148113] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.148114] RAX: 0000000000000000 RBX: 0000796ee465b000 RCX: ffffa5a103117b60
[ 67.148114] RDX: ffffa5a103117b58 RSI: 0000796ee465b000 RDI: ffff8ef89fb27928
[ 67.148115] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.148115] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.148115] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef856b8b180
[ 67.148116] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.148116] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.148117] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.148117] PKRU: 55555554
[ 67.148118] Call Trace:
[ 67.148118] <TASK>
[ 67.148118] ? show_regs+0x6c/0x80
[ 67.148119] ? __warn+0x88/0x140
[ 67.148121] ? follow_pte+0x220/0x230
[ 67.148122] ? report_bug+0x182/0x1b0
[ 67.148123] ? handle_bug+0x51/0xa0
[ 67.148125] ? exc_invalid_op+0x18/0x80
[ 67.148126] ? asm_exc_invalid_op+0x1b/0x20
[ 67.148127] ? follow_pte+0x220/0x230
[ 67.148129] follow_phys+0x4e/0x110
[ 67.148131] untrack_pfn+0x57/0x130
[ 67.148132] unmap_single_vma+0xbc/0xf0
[ 67.148133] zap_page_range_single+0x138/0x210
[ 67.148134] unmap_mapping_range+0x11b/0x140
[ 67.148136] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.148249] _nv000708rm+0x35/0x100 [nvidia]
[ 67.148408] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.148566] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.148665] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.148789] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.148889] ? kthread+0xe1/0x110
[ 67.148890] ? __pfx_kthread+0x10/0x10
[ 67.148891] ? ret_from_fork+0x44/0x70
[ 67.148892] ? __pfx_kthread+0x10/0x10
[ 67.148892] ? ret_from_fork_asm+0x1a/0x30
[ 67.148896] </TASK>
[ 67.148896] ---[ end trace 0000000000000000 ]---
[ 67.148900] ------------[ cut here ]------------
[ 67.148900] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.148902] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.148914] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.148929] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.148945] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.148946] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.148947] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.148948] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.148948] RIP: 0010:follow_pte+0x220/0x230
[ 67.148950] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.148950] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.148951] RAX: 0000000000000000 RBX: 00007d8b817d7000 RCX: ffffa5a103117b60
[ 67.148951] RDX: ffffa5a103117b58 RSI: 00007d8b817d7000 RDI: ffff8ef8d62deb80
[ 67.148952] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.148952] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.148953] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef84fc22100
[ 67.148953] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.148954] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.148954] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.148955] PKRU: 55555554
[ 67.148955] Call Trace:
[ 67.148955] <TASK>
[ 67.148955] ? show_regs+0x6c/0x80
[ 67.148957] ? __warn+0x88/0x140
[ 67.148958] ? follow_pte+0x220/0x230
[ 67.148960] ? report_bug+0x182/0x1b0
[ 67.148961] ? handle_bug+0x51/0xa0
[ 67.148962] ? exc_invalid_op+0x18/0x80
[ 67.148964] ? asm_exc_invalid_op+0x1b/0x20
[ 67.148965] ? follow_pte+0x220/0x230
[ 67.148967] follow_phys+0x4e/0x110
[ 67.148968] untrack_pfn+0x57/0x130
[ 67.148970] unmap_single_vma+0xbc/0xf0
[ 67.148971] zap_page_range_single+0x138/0x210
[ 67.148972] unmap_mapping_range+0x11b/0x140
[ 67.148973] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.149086] _nv000708rm+0x35/0x100 [nvidia]
[ 67.149249] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.149411] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.149521] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.149635] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.149738] ? kthread+0xe1/0x110
[ 67.149740] ? __pfx_kthread+0x10/0x10
[ 67.149741] ? ret_from_fork+0x44/0x70
[ 67.149742] ? __pfx_kthread+0x10/0x10
[ 67.149743] ? ret_from_fork_asm+0x1a/0x30
[ 67.149745] </TASK>
[ 67.149745] ---[ end trace 0000000000000000 ]---
[ 67.149749] ------------[ cut here ]------------
[ 67.149749] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.149751] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.149763] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.149778] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.149798] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.149800] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.149801] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.149801] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.149802] RIP: 0010:follow_pte+0x220/0x230
[ 67.149803] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.149804] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.149804] RAX: 0000000000000000 RBX: 00007aced8f36000 RCX: ffffa5a103117b60
[ 67.149805] RDX: ffffa5a103117b58 RSI: 00007aced8f36000 RDI: ffff8ef84c295928
[ 67.149805] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.149806] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.149806] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef84d3d2680
[ 67.149807] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.149807] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.149808] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.149808] PKRU: 55555554
[ 67.149808] Call Trace:
[ 67.149809] <TASK>
[ 67.149809] ? show_regs+0x6c/0x80
[ 67.149810] ? __warn+0x88/0x140
[ 67.149812] ? follow_pte+0x220/0x230
[ 67.149813] ? report_bug+0x182/0x1b0
[ 67.149814] ? handle_bug+0x51/0xa0
[ 67.149816] ? exc_invalid_op+0x18/0x80
[ 67.149817] ? asm_exc_invalid_op+0x1b/0x20
[ 67.149818] ? follow_pte+0x220/0x230
[ 67.149820] follow_phys+0x4e/0x110
[ 67.149821] untrack_pfn+0x57/0x130
[ 67.149823] unmap_single_vma+0xbc/0xf0
[ 67.149824] zap_page_range_single+0x138/0x210
[ 67.149826] unmap_mapping_range+0x11b/0x140
[ 67.149827] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.149938] _nv000708rm+0x35/0x100 [nvidia]
[ 67.150100] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.150265] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.150375] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.150487] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.150598] ? kthread+0xe1/0x110
[ 67.150599] ? __pfx_kthread+0x10/0x10
[ 67.150600] ? ret_from_fork+0x44/0x70
[ 67.150601] ? __pfx_kthread+0x10/0x10
[ 67.150601] ? ret_from_fork_asm+0x1a/0x30
[ 67.150603] </TASK>
[ 67.150603] ---[ end trace 0000000000000000 ]---
[ 67.150607] ------------[ cut here ]------------
[ 67.150607] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.150609] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.150630] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.150644] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.150660] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.150662] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.150663] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.150663] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.150664] RIP: 0010:follow_pte+0x220/0x230
[ 67.150665] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.150666] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.150666] RAX: 0000000000000000 RBX: 000076e4ab6dd000 RCX: ffffa5a103117b60
[ 67.150667] RDX: ffffa5a103117b58 RSI: 000076e4ab6dd000 RDI: ffff8ef87de74a10
[ 67.150667] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.150667] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.150668] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef865371080
[ 67.150668] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.150669] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.150669] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.150670] PKRU: 55555554
[ 67.150670] Call Trace:
[ 67.150670] <TASK>
[ 67.150671] ? show_regs+0x6c/0x80
[ 67.150672] ? __warn+0x88/0x140
[ 67.150673] ? follow_pte+0x220/0x230
[ 67.150675] ? report_bug+0x182/0x1b0
[ 67.150676] ? handle_bug+0x51/0xa0
[ 67.150677] ? exc_invalid_op+0x18/0x80
[ 67.150678] ? asm_exc_invalid_op+0x1b/0x20
[ 67.150680] ? follow_pte+0x220/0x230
[ 67.150681] follow_phys+0x4e/0x110
[ 67.150683] untrack_pfn+0x57/0x130
[ 67.150684] unmap_single_vma+0xbc/0xf0
[ 67.150685] zap_page_range_single+0x138/0x210
[ 67.150687] unmap_mapping_range+0x11b/0x140
[ 67.150688] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.150841] _nv000708rm+0x35/0x100 [nvidia]
[ 67.151006] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.151168] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.151278] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.151390] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.151500] ? kthread+0xe1/0x110
[ 67.151501] ? __pfx_kthread+0x10/0x10
[ 67.151502] ? ret_from_fork+0x44/0x70
[ 67.151503] ? __pfx_kthread+0x10/0x10
[ 67.151503] ? ret_from_fork_asm+0x1a/0x30
[ 67.151505] </TASK>
[ 67.151505] ---[ end trace 0000000000000000 ]---
[ 67.151511] ------------[ cut here ]------------
[ 67.151512] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.151513] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.151526] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.151540] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.151556] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.151557] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.151558] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.151559] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.151561] RIP: 0010:follow_pte+0x220/0x230
[ 67.151564] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.151564] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.151565] RAX: 0000000000000000 RBX: 0000726026746000 RCX: ffffa5a103117b60
[ 67.151565] RDX: ffffa5a103117b58 RSI: 0000726026746000 RDI: ffff8ef8877580b8
[ 67.151565] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.151566] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.151566] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef8517b5800
[ 67.151567] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.151567] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.151567] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.151568] PKRU: 55555554
[ 67.151568] Call Trace:
[ 67.151568] <TASK>
[ 67.151569] ? show_regs+0x6c/0x80
[ 67.151570] ? __warn+0x88/0x140
[ 67.151571] ? follow_pte+0x220/0x230
[ 67.151572] ? report_bug+0x182/0x1b0
[ 67.151573] ? handle_bug+0x51/0xa0
[ 67.151574] ? exc_invalid_op+0x18/0x80
[ 67.151576] ? asm_exc_invalid_op+0x1b/0x20
[ 67.151577] ? follow_pte+0x220/0x230
[ 67.151578] follow_phys+0x4e/0x110
[ 67.151580] untrack_pfn+0x57/0x130
[ 67.151581] unmap_single_vma+0xbc/0xf0
[ 67.151582] zap_page_range_single+0x138/0x210
[ 67.151583] unmap_mapping_range+0x11b/0x140
[ 67.151584] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.151682] _nv000708rm+0x35/0x100 [nvidia]
[ 67.151839] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.152000] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.152110] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.152222] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.152334] ? kthread+0xe1/0x110
[ 67.152335] ? __pfx_kthread+0x10/0x10
[ 67.152336] ? ret_from_fork+0x44/0x70
[ 67.152337] ? __pfx_kthread+0x10/0x10
[ 67.152338] ? ret_from_fork_asm+0x1a/0x30
[ 67.152339] </TASK>
[ 67.152339] ---[ end trace 0000000000000000 ]---
[ 67.152346] ------------[ cut here ]------------
[ 67.152347] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.152348] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.152360] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.152372] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.152389] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.152391] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.152392] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.152402] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.152402] RIP: 0010:follow_pte+0x220/0x230
[ 67.152404] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.152404] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.152405] RAX: 0000000000000000 RBX: 000076c8a9323000 RCX: ffffa5a103117b60
[ 67.152405] RDX: ffffa5a103117b58 RSI: 000076c8a9323000 RDI: ffff8ef85b49a450
[ 67.152406] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.152406] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.152406] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef8583a7900
[ 67.152407] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.152407] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.152408] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.152408] PKRU: 55555554
[ 67.152409] Call Trace:
[ 67.152409] <TASK>
[ 67.152409] ? show_regs+0x6c/0x80
[ 67.152410] ? __warn+0x88/0x140
[ 67.152412] ? follow_pte+0x220/0x230
[ 67.152413] ? report_bug+0x182/0x1b0
[ 67.152414] ? handle_bug+0x51/0xa0
[ 67.152416] ? exc_invalid_op+0x18/0x80
[ 67.152417] ? asm_exc_invalid_op+0x1b/0x20
[ 67.152418] ? follow_pte+0x220/0x230
[ 67.152420] follow_phys+0x4e/0x110
[ 67.152421] untrack_pfn+0x57/0x130
[ 67.152423] unmap_single_vma+0xbc/0xf0
[ 67.152424] zap_page_range_single+0x138/0x210
[ 67.152425] unmap_mapping_range+0x11b/0x140
[ 67.152426] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.152534] _nv000708rm+0x35/0x100 [nvidia]
[ 67.152678] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.152834] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.152940] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.153051] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.153160] ? kthread+0xe1/0x110
[ 67.153161] ? __pfx_kthread+0x10/0x10
[ 67.153162] ? ret_from_fork+0x44/0x70
[ 67.153163] ? __pfx_kthread+0x10/0x10
[ 67.153164] ? ret_from_fork_asm+0x1a/0x30
[ 67.153166] </TASK>
[ 67.153166] ---[ end trace 0000000000000000 ]---
[ 67.153171] ------------[ cut here ]------------
[ 67.153171] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.153173] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.153185] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.153200] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.153216] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.153217] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.153218] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.153219] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.153219] RIP: 0010:follow_pte+0x220/0x230
[ 67.153221] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.153221] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.153222] RAX: 0000000000000000 RBX: 00007260259d2000 RCX: ffffa5a103117b60
[ 67.153222] RDX: ffffa5a103117b58 RSI: 00007260259d2000 RDI: ffff8ef887759368
[ 67.153223] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.153223] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.153224] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef8517b5800
[ 67.153224] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.153225] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.153225] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.153226] PKRU: 55555554
[ 67.153226] Call Trace:
[ 67.153226] <TASK>
[ 67.153226] ? show_regs+0x6c/0x80
[ 67.153228] ? __warn+0x88/0x140
[ 67.153229] ? follow_pte+0x220/0x230
[ 67.153230] ? report_bug+0x182/0x1b0
[ 67.153232] ? handle_bug+0x51/0xa0
[ 67.153233] ? exc_invalid_op+0x18/0x80
[ 67.153234] ? asm_exc_invalid_op+0x1b/0x20
[ 67.153236] ? follow_pte+0x220/0x230
[ 67.153237] follow_phys+0x4e/0x110
[ 67.153239] untrack_pfn+0x57/0x130
[ 67.153241] unmap_single_vma+0xbc/0xf0
[ 67.153242] zap_page_range_single+0x138/0x210
[ 67.153243] unmap_mapping_range+0x11b/0x140
[ 67.153244] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.153353] _nv000708rm+0x35/0x100 [nvidia]
[ 67.153521] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.153679] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.153807] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.153918] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.154032] ? kthread+0xe1/0x110
[ 67.154033] ? __pfx_kthread+0x10/0x10
[ 67.154033] ? ret_from_fork+0x44/0x70
[ 67.154034] ? __pfx_kthread+0x10/0x10
[ 67.154035] ? ret_from_fork_asm+0x1a/0x30
[ 67.154037] </TASK>
[ 67.154037] ---[ end trace 0000000000000000 ]---
[ 67.154048] ------------[ cut here ]------------
[ 67.154049] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.154051] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.154066] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.154080] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.154106] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.154107] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.154108] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.154109] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.154109] RIP: 0010:follow_pte+0x220/0x230
[ 67.154111] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.154111] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.154112] RAX: 0000000000000000 RBX: 000076c8a4d3b000 RCX: ffffa5a103117b60
[ 67.154112] RDX: ffffa5a103117b58 RSI: 000076c8a4d3b000 RDI: ffff8ef86f0ae170
[ 67.154113] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.154113] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.154114] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef8583a7900
[ 67.154114] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.154115] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.154115] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.154116] PKRU: 55555554
[ 67.154116] Call Trace:
[ 67.154116] <TASK>
[ 67.154117] ? show_regs+0x6c/0x80
[ 67.154118] ? __warn+0x88/0x140
[ 67.154119] ? follow_pte+0x220/0x230
[ 67.154121] ? report_bug+0x182/0x1b0
[ 67.154122] ? handle_bug+0x51/0xa0
[ 67.154123] ? exc_invalid_op+0x18/0x80
[ 67.154125] ? asm_exc_invalid_op+0x1b/0x20
[ 67.154126] ? follow_pte+0x220/0x230
[ 67.154127] follow_phys+0x4e/0x110
[ 67.154129] untrack_pfn+0x57/0x130
[ 67.154131] unmap_single_vma+0xbc/0xf0
[ 67.154131] zap_page_range_single+0x138/0x210
[ 67.154133] unmap_mapping_range+0x11b/0x140
[ 67.154134] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.154250] _nv000708rm+0x35/0x100 [nvidia]
[ 67.154418] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.154569] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.154668] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.154794] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.154897] ? kthread+0xe1/0x110
[ 67.154898] ? __pfx_kthread+0x10/0x10
[ 67.154899] ? ret_from_fork+0x44/0x70
[ 67.154900] ? __pfx_kthread+0x10/0x10
[ 67.154900] ? ret_from_fork_asm+0x1a/0x30
[ 67.154902] </TASK>
[ 67.154902] ---[ end trace 0000000000000000 ]---
[ 67.154907] ------------[ cut here ]------------
[ 67.154907] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.154909] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.154922] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.154937] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.154953] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.154955] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.154956] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.154956] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.154957] RIP: 0010:follow_pte+0x220/0x230
[ 67.154958] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.154959] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.154959] RAX: 0000000000000000 RBX: 0000726026747000 RCX: ffffa5a103117b60
[ 67.154960] RDX: ffffa5a103117b58 RSI: 0000726026747000 RDI: ffff8ef85b93b7b8
[ 67.154960] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.154961] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.154961] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef8517b5800
[ 67.154962] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.154962] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.154963] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.154963] PKRU: 55555554
[ 67.154964] Call Trace:
[ 67.154964] <TASK>
[ 67.154964] ? show_regs+0x6c/0x80
[ 67.154965] ? __warn+0x88/0x140
[ 67.154967] ? follow_pte+0x220/0x230
[ 67.154968] ? report_bug+0x182/0x1b0
[ 67.154970] ? handle_bug+0x51/0xa0
[ 67.154971] ? exc_invalid_op+0x18/0x80
[ 67.154972] ? asm_exc_invalid_op+0x1b/0x20
[ 67.154974] ? follow_pte+0x220/0x230
[ 67.154975] follow_phys+0x4e/0x110
[ 67.154977] untrack_pfn+0x57/0x130
[ 67.154978] unmap_single_vma+0xbc/0xf0
[ 67.154979] zap_page_range_single+0x138/0x210
[ 67.154981] unmap_mapping_range+0x11b/0x140
[ 67.154982] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.155091] _nv000708rm+0x35/0x100 [nvidia]
[ 67.155258] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.155426] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.155534] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.155634] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.155738] ? kthread+0xe1/0x110
[ 67.155739] ? __pfx_kthread+0x10/0x10
[ 67.155740] ? ret_from_fork+0x44/0x70
[ 67.155742] ? __pfx_kthread+0x10/0x10
[ 67.155743] ? ret_from_fork_asm+0x1a/0x30
[ 67.155744] </TASK>
[ 67.155745] ---[ end trace 0000000000000000 ]---
[ 67.155748] ------------[ cut here ]------------
[ 67.155748] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.155750] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.155763] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.155779] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.155796] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.155797] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.155798] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.155799] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.155799] RIP: 0010:follow_pte+0x220/0x230
[ 67.155800] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.155801] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.155801] RAX: 0000000000000000 RBX: 000076c8a71f0000 RCX: ffffa5a103117b60
[ 67.155802] RDX: ffffa5a103117b58 RSI: 000076c8a71f0000 RDI: ffff8ef8cf1e3e30
[ 67.155802] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.155803] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.155803] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef8583a7900
[ 67.155803] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.155804] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.155804] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.155805] PKRU: 55555554
[ 67.155805] Call Trace:
[ 67.155805] <TASK>
[ 67.155806] ? show_regs+0x6c/0x80
[ 67.155807] ? __warn+0x88/0x140
[ 67.155808] ? follow_pte+0x220/0x230
[ 67.155810] ? report_bug+0x182/0x1b0
[ 67.155811] ? handle_bug+0x51/0xa0
[ 67.155812] ? exc_invalid_op+0x18/0x80
[ 67.155813] ? asm_exc_invalid_op+0x1b/0x20
[ 67.155814] ? follow_pte+0x220/0x230
[ 67.155816] follow_phys+0x4e/0x110
[ 67.155819] untrack_pfn+0x57/0x130
[ 67.155820] unmap_single_vma+0xbc/0xf0
[ 67.155821] zap_page_range_single+0x138/0x210
[ 67.155822] unmap_mapping_range+0x11b/0x140
[ 67.155831] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.155939] _nv000708rm+0x35/0x100 [nvidia]
[ 67.156108] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.156280] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.156385] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.156497] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.156608] ? kthread+0xe1/0x110
[ 67.156609] ? __pfx_kthread+0x10/0x10
[ 67.156610] ? ret_from_fork+0x44/0x70
[ 67.156611] ? __pfx_kthread+0x10/0x10
[ 67.156611] ? ret_from_fork_asm+0x1a/0x30
[ 67.156613] </TASK>
[ 67.156613] ---[ end trace 0000000000000000 ]---
[ 67.156618] ------------[ cut here ]------------
[ 67.156618] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.156620] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.156633] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.156647] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.156663] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.156665] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.156666] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.156666] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.156667] RIP: 0010:follow_pte+0x220/0x230
[ 67.156668] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.156669] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.156670] RAX: 0000000000000000 RBX: 00007b6b59e08000 RCX: ffffa5a103117b60
[ 67.156670] RDX: ffffa5a103117b58 RSI: 00007b6b59e08000 RDI: ffff8ef888fa4228
[ 67.156670] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.156671] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.156671] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef851004d00
[ 67.156672] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.156672] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.156673] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.156673] PKRU: 55555554
[ 67.156674] Call Trace:
[ 67.156674] <TASK>
[ 67.156674] ? show_regs+0x6c/0x80
[ 67.156675] ? __warn+0x88/0x140
[ 67.156677] ? follow_pte+0x220/0x230
[ 67.156678] ? report_bug+0x182/0x1b0
[ 67.156679] ? handle_bug+0x51/0xa0
[ 67.156681] ? exc_invalid_op+0x18/0x80
[ 67.156682] ? asm_exc_invalid_op+0x1b/0x20
[ 67.156683] ? follow_pte+0x220/0x230
[ 67.156685] follow_phys+0x4e/0x110
[ 67.156687] untrack_pfn+0x57/0x130
[ 67.156688] unmap_single_vma+0xbc/0xf0
[ 67.156689] zap_page_range_single+0x138/0x210
[ 67.156691] unmap_mapping_range+0x11b/0x140
[ 67.156692] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.156852] _nv000708rm+0x35/0x100 [nvidia]
[ 67.157023] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.157188] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.157299] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.157411] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.157521] ? kthread+0xe1/0x110
[ 67.157522] ? __pfx_kthread+0x10/0x10
[ 67.157523] ? ret_from_fork+0x44/0x70
[ 67.157524] ? __pfx_kthread+0x10/0x10
[ 67.157524] ? ret_from_fork_asm+0x1a/0x30
[ 67.157526] </TASK>
[ 67.157526] ---[ end trace 0000000000000000 ]---
[ 67.157533] ------------[ cut here ]------------
[ 67.157533] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.157535] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.157548] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.157563] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.157580] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.157581] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.157582] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.157583] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.157583] RIP: 0010:follow_pte+0x220/0x230
[ 67.157585] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.157585] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.157586] RAX: 0000000000000000 RBX: 000073f71ce01000 RCX: ffffa5a103117b60
[ 67.157586] RDX: ffffa5a103117b58 RSI: 000073f71ce01000 RDI: ffff8ef8c5162678
[ 67.157587] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.157587] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.157588] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef84d3d3180
[ 67.157588] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.157589] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.157589] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.157590] PKRU: 55555554
[ 67.157590] Call Trace:
[ 67.157590] <TASK>
[ 67.157591] ? show_regs+0x6c/0x80
[ 67.157592] ? __warn+0x88/0x140
[ 67.157593] ? follow_pte+0x220/0x230
[ 67.157595] ? report_bug+0x182/0x1b0
[ 67.157596] ? handle_bug+0x51/0xa0
[ 67.157597] ? exc_invalid_op+0x18/0x80
[ 67.157599] ? asm_exc_invalid_op+0x1b/0x20
[ 67.157600] ? follow_pte+0x220/0x230
[ 67.157602] follow_phys+0x4e/0x110
[ 67.157603] untrack_pfn+0x57/0x130
[ 67.157605] unmap_single_vma+0xbc/0xf0
[ 67.157606] zap_page_range_single+0x138/0x210
[ 67.157607] unmap_mapping_range+0x11b/0x140
[ 67.157609] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.157710] _nv000708rm+0x35/0x100 [nvidia]
[ 67.157874] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.158029] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.158140] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.158253] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.158366] ? kthread+0xe1/0x110
[ 67.158367] ? __pfx_kthread+0x10/0x10
[ 67.158368] ? ret_from_fork+0x44/0x70
[ 67.158369] ? __pfx_kthread+0x10/0x10
[ 67.158369] ? ret_from_fork_asm+0x1a/0x30
[ 67.158371] </TASK>
[ 67.158371] ---[ end trace 0000000000000000 ]---
[ 67.158375] ------------[ cut here ]------------
[ 67.158376] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.158378] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.158391] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.158405] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.158422] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.158423] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.158424] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.158425] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.158425] RIP: 0010:follow_pte+0x220/0x230
[ 67.158427] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.158431] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.158432] RAX: 0000000000000000 RBX: 000073f717ee9000 RCX: ffffa5a103117b60
[ 67.158432] RDX: ffffa5a103117b58 RSI: 000073f717ee9000 RDI: ffff8ef874752730
[ 67.158433] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.158433] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.158433] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef84d3d3180
[ 67.158434] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.158434] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.158435] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.158435] PKRU: 55555554
[ 67.158435] Call Trace:
[ 67.158436] <TASK>
[ 67.158436] ? show_regs+0x6c/0x80
[ 67.158437] ? __warn+0x88/0x140
[ 67.158438] ? follow_pte+0x220/0x230
[ 67.158440] ? report_bug+0x182/0x1b0
[ 67.158441] ? handle_bug+0x51/0xa0
[ 67.158442] ? exc_invalid_op+0x18/0x80
[ 67.158443] ? asm_exc_invalid_op+0x1b/0x20
[ 67.158444] ? follow_pte+0x220/0x230
[ 67.158446] follow_phys+0x4e/0x110
[ 67.158447] untrack_pfn+0x57/0x130
[ 67.158449] unmap_single_vma+0xbc/0xf0
[ 67.158449] zap_page_range_single+0x138/0x210
[ 67.158451] unmap_mapping_range+0x11b/0x140
[ 67.158452] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.158550] _nv000708rm+0x35/0x100 [nvidia]
[ 67.158698] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.158858] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.158960] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.159071] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.159181] ? kthread+0xe1/0x110
[ 67.159182] ? __pfx_kthread+0x10/0x10
[ 67.159183] ? ret_from_fork+0x44/0x70
[ 67.159184] ? __pfx_kthread+0x10/0x10
[ 67.159185] ? ret_from_fork_asm+0x1a/0x30
[ 67.159187] </TASK>
[ 67.159187] ---[ end trace 0000000000000000 ]---
[ 67.159192] ------------[ cut here ]------------
[ 67.159192] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.159194] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.159207] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.159222] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.159238] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.159240] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.159241] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.159241] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.159242] RIP: 0010:follow_pte+0x220/0x230
[ 67.159243] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.159244] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.159244] RAX: 0000000000000000 RBX: 000073f71c221000 RCX: ffffa5a103117b60
[ 67.159245] RDX: ffffa5a103117b58 RSI: 000073f71c221000 RDI: ffff8ef85becb700
[ 67.159245] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.159246] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.159246] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef84d3d3180
[ 67.159247] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.159247] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.159248] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.159248] PKRU: 55555554
[ 67.159249] Call Trace:
[ 67.159249] <TASK>
[ 67.159249] ? show_regs+0x6c/0x80
[ 67.159250] ? __warn+0x88/0x140
[ 67.159252] ? follow_pte+0x220/0x230
[ 67.159253] ? report_bug+0x182/0x1b0
[ 67.159255] ? handle_bug+0x51/0xa0
[ 67.159256] ? exc_invalid_op+0x18/0x80
[ 67.159257] ? asm_exc_invalid_op+0x1b/0x20
[ 67.159258] ? follow_pte+0x220/0x230
[ 67.159260] follow_phys+0x4e/0x110
[ 67.159262] untrack_pfn+0x57/0x130
[ 67.159263] unmap_single_vma+0xbc/0xf0
[ 67.159264] zap_page_range_single+0x138/0x210
[ 67.159266] unmap_mapping_range+0x11b/0x140
[ 67.159267] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.159378] _nv000708rm+0x35/0x100 [nvidia]
[ 67.159546] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.159710] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.159857] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.159966] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.160078] ? kthread+0xe1/0x110
[ 67.160079] ? __pfx_kthread+0x10/0x10
[ 67.160080] ? ret_from_fork+0x44/0x70
[ 67.160081] ? __pfx_kthread+0x10/0x10
[ 67.160081] ? ret_from_fork_asm+0x1a/0x30
[ 67.160083] </TASK>
[ 67.160083] ---[ end trace 0000000000000000 ]---
[ 67.160088] ------------[ cut here ]------------
[ 67.160088] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.160090] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.160103] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.160118] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.160134] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.160135] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.160137] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.160137] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.160137] RIP: 0010:follow_pte+0x220/0x230
[ 67.160139] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.160139] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.160140] RAX: 0000000000000000 RBX: 00007b6b66f4e000 RCX: ffffa5a103117b60
[ 67.160140] RDX: ffffa5a103117b58 RSI: 00007b6b66f4e000 RDI: ffff8ef877ab3e30
[ 67.160141] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.160141] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.160142] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef851004d00
[ 67.160142] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.160143] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.160143] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.160144] PKRU: 55555554
[ 67.160144] Call Trace:
[ 67.160144] <TASK>
[ 67.160145] ? show_regs+0x6c/0x80
[ 67.160146] ? __warn+0x88/0x140
[ 67.160147] ? follow_pte+0x220/0x230
[ 67.160149] ? report_bug+0x182/0x1b0
[ 67.160150] ? handle_bug+0x51/0xa0
[ 67.160151] ? exc_invalid_op+0x18/0x80
[ 67.160153] ? asm_exc_invalid_op+0x1b/0x20
[ 67.160154] ? follow_pte+0x220/0x230
[ 67.160156] follow_phys+0x4e/0x110
[ 67.160157] untrack_pfn+0x57/0x130
[ 67.160159] unmap_single_vma+0xbc/0xf0
[ 67.160160] zap_page_range_single+0x138/0x210
[ 67.160161] unmap_mapping_range+0x11b/0x140
[ 67.160162] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.160276] _nv000708rm+0x35/0x100 [nvidia]
[ 67.160439] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.160606] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.160705] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.160850] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.160959] ? kthread+0xe1/0x110
[ 67.160960] ? __pfx_kthread+0x10/0x10
[ 67.160961] ? ret_from_fork+0x44/0x70
[ 67.160962] ? __pfx_kthread+0x10/0x10
[ 67.160962] ? ret_from_fork_asm+0x1a/0x30
[ 67.160964] </TASK>
[ 67.160964] ---[ end trace 0000000000000000 ]---
[ 67.160969] ------------[ cut here ]------------
[ 67.160969] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.160971] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.160984] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.161001] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.161018] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.161020] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.161021] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.161022] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.161022] RIP: 0010:follow_pte+0x220/0x230
[ 67.161023] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.161024] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.161025] RAX: 0000000000000000 RBX: 00007b6b60fb8000 RCX: ffffa5a103117b60
[ 67.161025] RDX: ffffa5a103117b58 RSI: 00007b6b60fb8000 RDI: ffff8ef877aebd78
[ 67.161026] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.161026] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.161026] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef851004d00
[ 67.161027] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.161027] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.161028] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.161028] PKRU: 55555554
[ 67.161029] Call Trace:
[ 67.161029] <TASK>
[ 67.161029] ? show_regs+0x6c/0x80
[ 67.161030] ? __warn+0x88/0x140
[ 67.161032] ? follow_pte+0x220/0x230
[ 67.161033] ? report_bug+0x182/0x1b0
[ 67.161035] ? handle_bug+0x51/0xa0
[ 67.161036] ? exc_invalid_op+0x18/0x80
[ 67.161037] ? asm_exc_invalid_op+0x1b/0x20
[ 67.161041] ? follow_pte+0x220/0x230
[ 67.161043] follow_phys+0x4e/0x110
[ 67.161044] untrack_pfn+0x57/0x130
[ 67.161046] unmap_single_vma+0xbc/0xf0
[ 67.161047] zap_page_range_single+0x138/0x210
[ 67.161048] unmap_mapping_range+0x11b/0x140
[ 67.161049] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.161163] _nv000708rm+0x35/0x100 [nvidia]
[ 67.161333] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.161495] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.161605] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.161705] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.161852] ? kthread+0xe1/0x110
[ 67.161853] ? __pfx_kthread+0x10/0x10
[ 67.161854] ? ret_from_fork+0x44/0x70
[ 67.161855] ? __pfx_kthread+0x10/0x10
[ 67.161857] ? ret_from_fork_asm+0x1a/0x30
[ 67.161859] </TASK>
[ 67.161859] ---[ end trace 0000000000000000 ]---
[ 67.161866] ------------[ cut here ]------------
[ 67.161867] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.161869] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.161882] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.161897] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.161914] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.161916] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.161917] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.161918] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.161918] RIP: 0010:follow_pte+0x220/0x230
[ 67.161920] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.161920] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.161921] RAX: 0000000000000000 RBX: 00007865f3601000 RCX: ffffa5a103117b60
[ 67.161922] RDX: ffffa5a103117b58 RSI: 00007865f3601000 RDI: ffff8ef8c5148f18
[ 67.161922] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.161923] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.161923] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef85582d280
[ 67.161924] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.161924] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.161925] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.161925] PKRU: 55555554
[ 67.161926] Call Trace:
[ 67.161926] <TASK>
[ 67.161927] ? show_regs+0x6c/0x80
[ 67.161928] ? __warn+0x88/0x140
[ 67.161929] ? follow_pte+0x220/0x230
[ 67.161930] ? report_bug+0x182/0x1b0
[ 67.161931] ? handle_bug+0x51/0xa0
[ 67.161933] ? exc_invalid_op+0x18/0x80
[ 67.161934] ? asm_exc_invalid_op+0x1b/0x20
[ 67.161935] ? follow_pte+0x220/0x230
[ 67.161936] follow_phys+0x4e/0x110
[ 67.161938] untrack_pfn+0x57/0x130
[ 67.161939] unmap_single_vma+0xbc/0xf0
[ 67.161940] zap_page_range_single+0x138/0x210
[ 67.161942] unmap_mapping_range+0x11b/0x140
[ 67.161943] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.162053] _nv000708rm+0x35/0x100 [nvidia]
[ 67.162221] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.162385] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.162497] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.162609] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.162720] ? kthread+0xe1/0x110
[ 67.162721] ? __pfx_kthread+0x10/0x10
[ 67.162722] ? ret_from_fork+0x44/0x70
[ 67.162728] ? __pfx_kthread+0x10/0x10
[ 67.162729] ? ret_from_fork_asm+0x1a/0x30
[ 67.162732] </TASK>
[ 67.162732] ---[ end trace 0000000000000000 ]---
[ 67.162737] ------------[ cut here ]------------
[ 67.162737] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.162739] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.162752] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.162767] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.162782] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.162784] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.162785] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.162786] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.162786] RIP: 0010:follow_pte+0x220/0x230
[ 67.162787] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.162788] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.162789] RAX: 0000000000000000 RBX: 00007c9c53775000 RCX: ffffa5a103117b60
[ 67.162789] RDX: ffffa5a103117b58 RSI: 00007c9c53775000 RDI: ffff8ef8cf178730
[ 67.162790] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.162790] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.162790] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef84fc20b00
[ 67.162791] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.162791] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.162792] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.162793] PKRU: 55555554
[ 67.162793] Call Trace:
[ 67.162793] <TASK>
[ 67.162793] ? show_regs+0x6c/0x80
[ 67.162795] ? __warn+0x88/0x140
[ 67.162796] ? follow_pte+0x220/0x230
[ 67.162798] ? report_bug+0x182/0x1b0
[ 67.162799] ? handle_bug+0x51/0xa0
[ 67.162800] ? exc_invalid_op+0x18/0x80
[ 67.162801] ? asm_exc_invalid_op+0x1b/0x20
[ 67.162803] ? follow_pte+0x220/0x230
[ 67.162804] follow_phys+0x4e/0x110
[ 67.162806] untrack_pfn+0x57/0x130
[ 67.162807] unmap_single_vma+0xbc/0xf0
[ 67.162808] zap_page_range_single+0x138/0x210
[ 67.162810] unmap_mapping_range+0x11b/0x140
[ 67.162811] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.162922] _nv000708rm+0x35/0x100 [nvidia]
[ 67.163090] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.163252] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.163352] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.163452] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.163551] ? kthread+0xe1/0x110
[ 67.163552] ? __pfx_kthread+0x10/0x10
[ 67.163552] ? ret_from_fork+0x44/0x70
[ 67.163553] ? __pfx_kthread+0x10/0x10
[ 67.163554] ? ret_from_fork_asm+0x1a/0x30
[ 67.163555] </TASK>
[ 67.163556] ---[ end trace 0000000000000000 ]---
[ 67.163560] ------------[ cut here ]------------
[ 67.163560] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.163562] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.163573] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.163587] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.163602] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.163603] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.163604] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.163604] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.163605] RIP: 0010:follow_pte+0x220/0x230
[ 67.163606] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.163607] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.163607] RAX: 0000000000000000 RBX: 00007865f153b000 RCX: ffffa5a103117b60
[ 67.163608] RDX: ffffa5a103117b58 RSI: 00007865f153b000 RDI: ffff8ef880d4d088
[ 67.163608] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.163609] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.163609] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef85582d280
[ 67.163609] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.163610] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.163610] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.163611] PKRU: 55555554
[ 67.163611] Call Trace:
[ 67.163611] <TASK>
[ 67.163612] ? show_regs+0x6c/0x80
[ 67.163613] ? __warn+0x88/0x140
[ 67.163614] ? follow_pte+0x220/0x230
[ 67.163615] ? report_bug+0x182/0x1b0
[ 67.163616] ? handle_bug+0x51/0xa0
[ 67.163618] ? exc_invalid_op+0x18/0x80
[ 67.163619] ? asm_exc_invalid_op+0x1b/0x20
[ 67.163620] ? follow_pte+0x220/0x230
[ 67.163622] follow_phys+0x4e/0x110
[ 67.163623] untrack_pfn+0x57/0x130
[ 67.163624] unmap_single_vma+0xbc/0xf0
[ 67.163625] zap_page_range_single+0x138/0x210
[ 67.163626] unmap_mapping_range+0x11b/0x140
[ 67.163628] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.163729] _nv000708rm+0x35/0x100 [nvidia]
[ 67.163888] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.164053] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.164165] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.164277] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.164387] ? kthread+0xe1/0x110
[ 67.164388] ? __pfx_kthread+0x10/0x10
[ 67.164389] ? ret_from_fork+0x44/0x70
[ 67.164390] ? __pfx_kthread+0x10/0x10
[ 67.164390] ? ret_from_fork_asm+0x1a/0x30
[ 67.164392] </TASK>
[ 67.164392] ---[ end trace 0000000000000000 ]---
[ 67.164397] ------------[ cut here ]------------
[ 67.164397] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.164399] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.164412] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.164427] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.164443] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.164445] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.164446] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.164446] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.164446] RIP: 0010:follow_pte+0x220/0x230
[ 67.164448] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.164448] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.164449] RAX: 0000000000000000 RBX: 00007b6b625b8000 RCX: ffffa5a103117b60
[ 67.164450] RDX: ffffa5a103117b58 RSI: 00007b6b625b8000 RDI: ffff8ef8cf2dee60
[ 67.164450] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.164450] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.164451] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef851004d00
[ 67.164451] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.164452] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.164452] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.164453] PKRU: 55555554
[ 67.164453] Call Trace:
[ 67.164453] <TASK>
[ 67.164454] ? show_regs+0x6c/0x80
[ 67.164455] ? __warn+0x88/0x140
[ 67.164456] ? follow_pte+0x220/0x230
[ 67.164458] ? report_bug+0x182/0x1b0
[ 67.164459] ? handle_bug+0x51/0xa0
[ 67.164461] ? exc_invalid_op+0x18/0x80
[ 67.164462] ? asm_exc_invalid_op+0x1b/0x20
[ 67.164463] ? follow_pte+0x220/0x230
[ 67.164465] follow_phys+0x4e/0x110
[ 67.164466] untrack_pfn+0x57/0x130
[ 67.164468] unmap_single_vma+0xbc/0xf0
[ 67.164469] zap_page_range_single+0x138/0x210
[ 67.164470] unmap_mapping_range+0x11b/0x140
[ 67.164471] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.164581] _nv000708rm+0x35/0x100 [nvidia]
[ 67.164740] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.164897] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.165011] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.165123] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.165236] ? kthread+0xe1/0x110
[ 67.165237] ? __pfx_kthread+0x10/0x10
[ 67.165238] ? ret_from_fork+0x44/0x70
[ 67.165239] ? __pfx_kthread+0x10/0x10
[ 67.165239] ? ret_from_fork_asm+0x1a/0x30
[ 67.165241] </TASK>
[ 67.165241] ---[ end trace 0000000000000000 ]---
[ 67.165244] ------------[ cut here ]------------
[ 67.165245] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.165247] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.165259] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.165274] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.165290] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.165292] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.165293] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.165293] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.165294] RIP: 0010:follow_pte+0x220/0x230
[ 67.165295] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.165296] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.165296] RAX: 0000000000000000 RBX: 00007c9c4bf40000 RCX: ffffa5a103117b60
[ 67.165297] RDX: ffffa5a103117b58 RSI: 00007c9c4bf40000 RDI: ffff8ef8d15bb928
[ 67.165297] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.165298] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.165298] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef84fc20b00
[ 67.165298] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.165299] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.165299] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.165300] PKRU: 55555554
[ 67.165300] Call Trace:
[ 67.165301] <TASK>
[ 67.165301] ? show_regs+0x6c/0x80
[ 67.165302] ? __warn+0x88/0x140
[ 67.165304] ? follow_pte+0x220/0x230
[ 67.165305] ? report_bug+0x182/0x1b0
[ 67.165306] ? handle_bug+0x51/0xa0
[ 67.165308] ? exc_invalid_op+0x18/0x80
[ 67.165309] ? asm_exc_invalid_op+0x1b/0x20
[ 67.165310] ? follow_pte+0x220/0x230
[ 67.165312] follow_phys+0x4e/0x110
[ 67.165314] untrack_pfn+0x57/0x130
[ 67.165315] unmap_single_vma+0xbc/0xf0
[ 67.165316] zap_page_range_single+0x138/0x210
[ 67.165317] unmap_mapping_range+0x11b/0x140
[ 67.165319] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.165421] _nv000708rm+0x35/0x100 [nvidia]
[ 67.165567] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.165714] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.165874] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.165990] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.166103] ? kthread+0xe1/0x110
[ 67.166104] ? __pfx_kthread+0x10/0x10
[ 67.166105] ? ret_from_fork+0x44/0x70
[ 67.166106] ? __pfx_kthread+0x10/0x10
[ 67.166107] ? ret_from_fork_asm+0x1a/0x30
[ 67.166109] </TASK>
[ 67.166109] ---[ end trace 0000000000000000 ]---
[ 67.166114] ------------[ cut here ]------------
[ 67.166115] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.166117] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.166129] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.166144] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.166161] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.166162] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.166163] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.166164] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.166164] RIP: 0010:follow_pte+0x220/0x230
[ 67.166166] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.166166] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.166167] RAX: 0000000000000000 RBX: 00007865f2844000 RCX: ffffa5a103117b60
[ 67.166168] RDX: ffffa5a103117b58 RSI: 00007865f2844000 RDI: ffff8ef8a0dbe170
[ 67.166168] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.166168] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.166169] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef85582d280
[ 67.166169] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.166170] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.166170] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.166171] PKRU: 55555554
[ 67.166171] Call Trace:
[ 67.166171] <TASK>
[ 67.166172] ? show_regs+0x6c/0x80
[ 67.166173] ? __warn+0x88/0x140
[ 67.166175] ? follow_pte+0x220/0x230
[ 67.166176] ? report_bug+0x182/0x1b0
[ 67.166177] ? handle_bug+0x51/0xa0
[ 67.166179] ? exc_invalid_op+0x18/0x80
[ 67.166180] ? asm_exc_invalid_op+0x1b/0x20
[ 67.166181] ? follow_pte+0x220/0x230
[ 67.166183] follow_phys+0x4e/0x110
[ 67.166185] untrack_pfn+0x57/0x130
[ 67.166186] unmap_single_vma+0xbc/0xf0
[ 67.166187] zap_page_range_single+0x138/0x210
[ 67.166189] unmap_mapping_range+0x11b/0x140
[ 67.166190] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.166301] _nv000708rm+0x35/0x100 [nvidia]
[ 67.166467] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.166634] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.166740] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.166851] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.166963] ? kthread+0xe1/0x110
[ 67.166964] ? __pfx_kthread+0x10/0x10
[ 67.166964] ? ret_from_fork+0x44/0x70
[ 67.166965] ? __pfx_kthread+0x10/0x10
[ 67.166966] ? ret_from_fork_asm+0x1a/0x30
[ 67.166968] </TASK>
[ 67.166968] ---[ end trace 0000000000000000 ]---
[ 67.166972] ------------[ cut here ]------------
[ 67.166972] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.166974] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.166987] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.167001] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.167017] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.167019] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.167020] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.167020] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.167021] RIP: 0010:follow_pte+0x220/0x230
[ 67.167024] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.167025] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.167026] RAX: 0000000000000000 RBX: 00007c9c5028f000 RCX: ffffa5a103117b60
[ 67.167026] RDX: ffffa5a103117b58 RSI: 00007c9c5028f000 RDI: ffff8ef88add5140
[ 67.167027] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.167027] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.167028] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef84fc20b00
[ 67.167028] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.167028] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.167029] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.167029] PKRU: 55555554
[ 67.167030] Call Trace:
[ 67.167030] <TASK>
[ 67.167030] ? show_regs+0x6c/0x80
[ 67.167031] ? __warn+0x88/0x140
[ 67.167033] ? follow_pte+0x220/0x230
[ 67.167034] ? report_bug+0x182/0x1b0
[ 67.167035] ? handle_bug+0x51/0xa0
[ 67.167036] ? exc_invalid_op+0x18/0x80
[ 67.167037] ? asm_exc_invalid_op+0x1b/0x20
[ 67.167039] ? follow_pte+0x220/0x230
[ 67.167040] follow_phys+0x4e/0x110
[ 67.167042] untrack_pfn+0x57/0x130
[ 67.167043] unmap_single_vma+0xbc/0xf0
[ 67.167044] zap_page_range_single+0x138/0x210
[ 67.167046] unmap_mapping_range+0x11b/0x140
[ 67.167047] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.167158] _nv000708rm+0x35/0x100 [nvidia]
[ 67.167322] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.167470] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.167568] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.167668] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.167796] ? kthread+0xe1/0x110
[ 67.167797] ? __pfx_kthread+0x10/0x10
[ 67.167798] ? ret_from_fork+0x44/0x70
[ 67.167800] ? __pfx_kthread+0x10/0x10
[ 67.167801] ? ret_from_fork_asm+0x1a/0x30
[ 67.167803] </TASK>
[ 67.167803] ---[ end trace 0000000000000000 ]---
[ 67.167809] ------------[ cut here ]------------
[ 67.167809] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.167811] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.167823] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.167842] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.167859] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.167860] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.167861] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.167862] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.167862] RIP: 0010:follow_pte+0x220/0x230
[ 67.167864] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.167865] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.167865] RAX: 0000000000000000 RBX: 000077b6a2288000 RCX: ffffa5a103117b60
[ 67.167866] RDX: ffffa5a103117b58 RSI: 000077b6a2288000 RDI: ffff8ef85c249088
[ 67.167866] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.167867] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.167867] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef855bc1600
[ 67.167868] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.167869] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.167869] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.167870] PKRU: 55555554
[ 67.167870] Call Trace:
[ 67.167871] <TASK>
[ 67.167871] ? show_regs+0x6c/0x80
[ 67.167873] ? __warn+0x88/0x140
[ 67.167874] ? follow_pte+0x220/0x230
[ 67.167876] ? report_bug+0x182/0x1b0
[ 67.167877] ? handle_bug+0x51/0xa0
[ 67.167878] ? exc_invalid_op+0x18/0x80
[ 67.167880] ? asm_exc_invalid_op+0x1b/0x20
[ 67.167881] ? follow_pte+0x220/0x230
[ 67.167883] follow_phys+0x4e/0x110
[ 67.167885] untrack_pfn+0x57/0x130
[ 67.167886] unmap_single_vma+0xbc/0xf0
[ 67.167887] zap_page_range_single+0x138/0x210
[ 67.167889] unmap_mapping_range+0x11b/0x140
[ 67.167890] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.168000] _nv000708rm+0x35/0x100 [nvidia]
[ 67.168164] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.168335] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.168446] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.168558] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.168668] ? kthread+0xe1/0x110
[ 67.168669] ? __pfx_kthread+0x10/0x10
[ 67.168669] ? ret_from_fork+0x44/0x70
[ 67.168670] ? __pfx_kthread+0x10/0x10
[ 67.168671] ? ret_from_fork_asm+0x1a/0x30
[ 67.168673] </TASK>
[ 67.168673] ---[ end trace 0000000000000000 ]---
[ 67.168677] ------------[ cut here ]------------
[ 67.168678] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.168680] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.168693] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.168707] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.168728] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.168730] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.168731] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.168732] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.168732] RIP: 0010:follow_pte+0x220/0x230
[ 67.168733] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.168734] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.168735] RAX: 0000000000000000 RBX: 000077b6a04de000 RCX: ffffa5a103117b60
[ 67.168736] RDX: ffffa5a103117b58 RSI: 000077b6a04de000 RDI: ffff8ef8753ac678
[ 67.168736] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.168737] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.168737] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef855bc1600
[ 67.168738] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.168738] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.168739] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.168740] PKRU: 55555554
[ 67.168740] Call Trace:
[ 67.168741] <TASK>
[ 67.168741] ? show_regs+0x6c/0x80
[ 67.168742] ? __warn+0x88/0x140
[ 67.168744] ? follow_pte+0x220/0x230
[ 67.168746] ? report_bug+0x182/0x1b0
[ 67.168747] ? handle_bug+0x51/0xa0
[ 67.168749] ? exc_invalid_op+0x18/0x80
[ 67.168750] ? asm_exc_invalid_op+0x1b/0x20
[ 67.168752] ? follow_pte+0x220/0x230
[ 67.168753] follow_phys+0x4e/0x110
[ 67.168755] untrack_pfn+0x57/0x130
[ 67.168757] unmap_single_vma+0xbc/0xf0
[ 67.168758] zap_page_range_single+0x138/0x210
[ 67.168759] unmap_mapping_range+0x11b/0x140
[ 67.168761] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.168870] _nv000708rm+0x35/0x100 [nvidia]
[ 67.169035] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.169201] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.169312] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.169423] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.169532] ? kthread+0xe1/0x110
[ 67.169533] ? __pfx_kthread+0x10/0x10
[ 67.169534] ? ret_from_fork+0x44/0x70
[ 67.169535] ? __pfx_kthread+0x10/0x10
[ 67.169536] ? ret_from_fork_asm+0x1a/0x30
[ 67.169537] </TASK>
[ 67.169538] ---[ end trace 0000000000000000 ]---
[ 67.169542] ------------[ cut here ]------------
[ 67.169543] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.169545] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.169560] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.169572] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.169587] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.169589] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.169590] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.169590] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.169590] RIP: 0010:follow_pte+0x220/0x230
[ 67.169592] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.169592] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.169593] RAX: 0000000000000000 RBX: 000077b6a124d000 RCX: ffffa5a103117b60
[ 67.169593] RDX: ffffa5a103117b58 RSI: 000077b6a124d000 RDI: ffff8ef877ab65c0
[ 67.169594] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.169594] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.169594] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef855bc1600
[ 67.169595] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.169595] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.169596] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.169596] PKRU: 55555554
[ 67.169596] Call Trace:
[ 67.169597] <TASK>
[ 67.169597] ? show_regs+0x6c/0x80
[ 67.169598] ? __warn+0x88/0x140
[ 67.169599] ? follow_pte+0x220/0x230
[ 67.169601] ? report_bug+0x182/0x1b0
[ 67.169602] ? handle_bug+0x51/0xa0
[ 67.169603] ? exc_invalid_op+0x18/0x80
[ 67.169604] ? asm_exc_invalid_op+0x1b/0x20
[ 67.169605] ? follow_pte+0x220/0x230
[ 67.169607] follow_phys+0x4e/0x110
[ 67.169608] untrack_pfn+0x57/0x130
[ 67.169609] unmap_single_vma+0xbc/0xf0
[ 67.169610] zap_page_range_single+0x138/0x210
[ 67.169612] unmap_mapping_range+0x11b/0x140
[ 67.169613] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.169710] _nv000708rm+0x35/0x100 [nvidia]
[ 67.169871] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.170029] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.170139] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.170250] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.170359] ? kthread+0xe1/0x110
[ 67.170360] ? __pfx_kthread+0x10/0x10
[ 67.170360] ? ret_from_fork+0x44/0x70
[ 67.170361] ? __pfx_kthread+0x10/0x10
[ 67.170362] ? ret_from_fork_asm+0x1a/0x30
[ 67.170364] </TASK>
[ 67.170364] ---[ end trace 0000000000000000 ]---
[ 67.170368] ------------[ cut here ]------------
[ 67.170368] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.170370] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.170382] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.170397] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.170413] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.170414] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.170415] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.170416] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.170416] RIP: 0010:follow_pte+0x220/0x230
[ 67.170417] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.170418] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.170419] RAX: 0000000000000000 RBX: 000076e49b420000 RCX: ffffa5a103117b60
[ 67.170419] RDX: ffffa5a103117b58 RSI: 000076e49b420000 RDI: ffff8ef846fb4000
[ 67.170420] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.170420] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.170420] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef865371080
[ 67.170421] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.170421] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.170422] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.170422] PKRU: 55555554
[ 67.170423] Call Trace:
[ 67.170423] <TASK>
[ 67.170423] ? show_regs+0x6c/0x80
[ 67.170424] ? __warn+0x88/0x140
[ 67.170426] ? follow_pte+0x220/0x230
[ 67.170427] ? report_bug+0x182/0x1b0
[ 67.170428] ? handle_bug+0x51/0xa0
[ 67.170430] ? exc_invalid_op+0x18/0x80
[ 67.170431] ? asm_exc_invalid_op+0x1b/0x20
[ 67.170432] ? follow_pte+0x220/0x230
[ 67.170434] follow_phys+0x4e/0x110
[ 67.170436] untrack_pfn+0x57/0x130
[ 67.170437] unmap_single_vma+0xbc/0xf0
[ 67.170438] zap_page_range_single+0x138/0x210
[ 67.170440] unmap_mapping_range+0x11b/0x140
[ 67.170441] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.170550] _nv000708rm+0x35/0x100 [nvidia]
[ 67.170709] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.170866] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.170970] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.171081] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.171190] ? kthread+0xe1/0x110
[ 67.171191] ? __pfx_kthread+0x10/0x10
[ 67.171192] ? ret_from_fork+0x44/0x70
[ 67.171193] ? __pfx_kthread+0x10/0x10
[ 67.171194] ? ret_from_fork_asm+0x1a/0x30
[ 67.171195] </TASK>
[ 67.171196] ---[ end trace 0000000000000000 ]---
[ 67.171200] ------------[ cut here ]------------
[ 67.171200] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.171202] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.171215] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.171229] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.171245] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.171247] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.171248] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.171248] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.171249] RIP: 0010:follow_pte+0x220/0x230
[ 67.171250] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.171251] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.171252] RAX: 0000000000000000 RBX: 000076e4ac5a3000 RCX: ffffa5a103117b60
[ 67.171252] RDX: ffffa5a103117b58 RSI: 000076e4ac5a3000 RDI: ffff8ef846fb3648
[ 67.171252] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.171253] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.171253] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef865371080
[ 67.171254] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.171254] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.171255] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.171255] PKRU: 55555554
[ 67.171256] Call Trace:
[ 67.171256] <TASK>
[ 67.171256] ? show_regs+0x6c/0x80
[ 67.171257] ? __warn+0x88/0x140
[ 67.171259] ? follow_pte+0x220/0x230
[ 67.171260] ? report_bug+0x182/0x1b0
[ 67.171262] ? handle_bug+0x51/0xa0
[ 67.171263] ? exc_invalid_op+0x18/0x80
[ 67.171264] ? asm_exc_invalid_op+0x1b/0x20
[ 67.171266] ? follow_pte+0x220/0x230
[ 67.171267] follow_phys+0x4e/0x110
[ 67.171269] untrack_pfn+0x57/0x130
[ 67.171271] unmap_single_vma+0xbc/0xf0
[ 67.171271] zap_page_range_single+0x138/0x210
[ 67.171273] unmap_mapping_range+0x11b/0x140
[ 67.171274] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.171383] _nv000708rm+0x35/0x100 [nvidia]
[ 67.171545] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.171705] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.171852] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.171955] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.172065] ? kthread+0xe1/0x110
[ 67.172066] ? __pfx_kthread+0x10/0x10
[ 67.172067] ? ret_from_fork+0x44/0x70
[ 67.172068] ? __pfx_kthread+0x10/0x10
[ 67.172068] ? ret_from_fork_asm+0x1a/0x30
[ 67.172070] </TASK>
[ 67.172070] ---[ end trace 0000000000000000 ]---
[ 67.172074] ------------[ cut here ]------------
[ 67.172074] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.172076] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.172089] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.172110] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.172126] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.172127] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.172128] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.172129] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.172129] RIP: 0010:follow_pte+0x220/0x230
[ 67.172130] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.172131] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.172132] RAX: 0000000000000000 RBX: 000076e4ab6f8000 RCX: ffffa5a103117b60
[ 67.172132] RDX: ffffa5a103117b58 RSI: 000076e4ab6f8000 RDI: ffff8ef846fb3d78
[ 67.172132] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.172133] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.172133] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef865371080
[ 67.172134] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.172134] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.172135] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.172135] PKRU: 55555554
[ 67.172136] Call Trace:
[ 67.172136] <TASK>
[ 67.172136] ? show_regs+0x6c/0x80
[ 67.172137] ? __warn+0x88/0x140
[ 67.172139] ? follow_pte+0x220/0x230
[ 67.172140] ? report_bug+0x182/0x1b0
[ 67.172141] ? handle_bug+0x51/0xa0
[ 67.172143] ? exc_invalid_op+0x18/0x80
[ 67.172144] ? asm_exc_invalid_op+0x1b/0x20
[ 67.172146] ? follow_pte+0x220/0x230
[ 67.172147] follow_phys+0x4e/0x110
[ 67.172149] untrack_pfn+0x57/0x130
[ 67.172150] unmap_single_vma+0xbc/0xf0
[ 67.172151] zap_page_range_single+0x138/0x210
[ 67.172153] unmap_mapping_range+0x11b/0x140
[ 67.172154] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.172269] _nv000708rm+0x35/0x100 [nvidia]
[ 67.172432] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.172597] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.172709] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.172873] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.172988] ? kthread+0xe1/0x110
[ 67.172989] ? __pfx_kthread+0x10/0x10
[ 67.172990] ? ret_from_fork+0x44/0x70
[ 67.172991] ? __pfx_kthread+0x10/0x10
[ 67.172991] ? ret_from_fork_asm+0x1a/0x30
[ 67.172993] </TASK>
[ 67.172993] ---[ end trace 0000000000000000 ]---
[ 67.172997] ------------[ cut here ]------------
[ 67.172998] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.173000] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.173013] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.173027] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.173044] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.173046] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.173047] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.173047] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.173048] RIP: 0010:follow_pte+0x220/0x230
[ 67.173049] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.173050] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.173050] RAX: 0000000000000000 RBX: 000076e4ac5a4000 RCX: ffffa5a103117b60
[ 67.173051] RDX: ffffa5a103117b58 RSI: 000076e4ac5a4000 RDI: ffff8ef846fb3cc0
[ 67.173051] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.173052] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.173052] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef865371080
[ 67.173053] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.173053] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.173054] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.173054] PKRU: 55555554
[ 67.173054] Call Trace:
[ 67.173055] <TASK>
[ 67.173055] ? show_regs+0x6c/0x80
[ 67.173056] ? __warn+0x88/0x140
[ 67.173058] ? follow_pte+0x220/0x230
[ 67.173059] ? report_bug+0x182/0x1b0
[ 67.173060] ? handle_bug+0x51/0xa0
[ 67.173062] ? exc_invalid_op+0x18/0x80
[ 67.173063] ? asm_exc_invalid_op+0x1b/0x20
[ 67.173065] ? follow_pte+0x220/0x230
[ 67.173066] follow_phys+0x4e/0x110
[ 67.173068] untrack_pfn+0x57/0x130
[ 67.173069] unmap_single_vma+0xbc/0xf0
[ 67.173070] zap_page_range_single+0x138/0x210
[ 67.173072] unmap_mapping_range+0x11b/0x140
[ 67.173073] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.173183] _nv000708rm+0x35/0x100 [nvidia]
[ 67.173347] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.173509] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.173619] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.173733] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.173835] ? kthread+0xe1/0x110
[ 67.173836] ? __pfx_kthread+0x10/0x10
[ 67.173836] ? ret_from_fork+0x44/0x70
[ 67.173837] ? __pfx_kthread+0x10/0x10
[ 67.173838] ? ret_from_fork_asm+0x1a/0x30
[ 67.173839] </TASK>
[ 67.173840] ---[ end trace 0000000000000000 ]---
[ 67.173844] ------------[ cut here ]------------
[ 67.173844] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.173846] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.173859] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.173873] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.173889] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.173891] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.173892] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.173893] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.173893] RIP: 0010:follow_pte+0x220/0x230
[ 67.173895] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.173895] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.173896] RAX: 0000000000000000 RBX: 000076e49b4c0000 RCX: ffffa5a103117b60
[ 67.173896] RDX: ffffa5a103117b58 RSI: 000076e49b4c0000 RDI: ffff8ef861325648
[ 67.173897] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.173897] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.173898] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef865371080
[ 67.173898] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.173899] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.173899] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.173900] PKRU: 55555554
[ 67.173900] Call Trace:
[ 67.173900] <TASK>
[ 67.173901] ? show_regs+0x6c/0x80
[ 67.173902] ? __warn+0x88/0x140
[ 67.173903] ? follow_pte+0x220/0x230
[ 67.173905] ? report_bug+0x182/0x1b0
[ 67.173906] ? handle_bug+0x51/0xa0
[ 67.173907] ? exc_invalid_op+0x18/0x80
[ 67.173909] ? asm_exc_invalid_op+0x1b/0x20
[ 67.173910] ? follow_pte+0x220/0x230
[ 67.173911] follow_phys+0x4e/0x110
[ 67.173913] untrack_pfn+0x57/0x130
[ 67.173915] unmap_single_vma+0xbc/0xf0
[ 67.173916] zap_page_range_single+0x138/0x210
[ 67.173917] unmap_mapping_range+0x11b/0x140
[ 67.173918] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.174027] _nv000708rm+0x35/0x100 [nvidia]
[ 67.174189] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.174353] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.174466] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.174566] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.174663] ? kthread+0xe1/0x110
[ 67.174664] ? __pfx_kthread+0x10/0x10
[ 67.174665] ? ret_from_fork+0x44/0x70
[ 67.174666] ? __pfx_kthread+0x10/0x10
[ 67.174666] ? ret_from_fork_asm+0x1a/0x30
[ 67.174668] </TASK>
[ 67.174668] ---[ end trace 0000000000000000 ]---
[ 67.174672] ------------[ cut here ]------------
[ 67.174672] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.174674] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.174685] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.174699] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.174713] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.174715] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.174716] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.174716] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.174716] RIP: 0010:follow_pte+0x220/0x230
[ 67.174718] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.174721] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.174722] RAX: 0000000000000000 RBX: 000076e4ac5a9000 RCX: ffffa5a103117b60
[ 67.174723] RDX: ffffa5a103117b58 RSI: 000076e4ac5a9000 RDI: ffff8ef863309ee8
[ 67.174723] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.174724] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.174724] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef865371080
[ 67.174725] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.174726] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.174726] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.174726] PKRU: 55555554
[ 67.174727] Call Trace:
[ 67.174727] <TASK>
[ 67.174727] ? show_regs+0x6c/0x80
[ 67.174728] ? __warn+0x88/0x140
[ 67.174730] ? follow_pte+0x220/0x230
[ 67.174731] ? report_bug+0x182/0x1b0
[ 67.174733] ? handle_bug+0x51/0xa0
[ 67.174734] ? exc_invalid_op+0x18/0x80
[ 67.174735] ? asm_exc_invalid_op+0x1b/0x20
[ 67.174737] ? follow_pte+0x220/0x230
[ 67.174738] follow_phys+0x4e/0x110
[ 67.174740] untrack_pfn+0x57/0x130
[ 67.174742] unmap_single_vma+0xbc/0xf0
[ 67.174742] zap_page_range_single+0x138/0x210
[ 67.174744] unmap_mapping_range+0x11b/0x140
[ 67.174747] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.174850] _nv000708rm+0x35/0x100 [nvidia]
[ 67.175015] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.175179] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.175278] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.175391] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.175501] ? kthread+0xe1/0x110
[ 67.175502] ? __pfx_kthread+0x10/0x10
[ 67.175503] ? ret_from_fork+0x44/0x70
[ 67.175503] ? __pfx_kthread+0x10/0x10
[ 67.175504] ? ret_from_fork_asm+0x1a/0x30
[ 67.175506] </TASK>
[ 67.175506] ---[ end trace 0000000000000000 ]---
[ 67.175510] ------------[ cut here ]------------
[ 67.175510] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.175512] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.175524] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.175539] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.175554] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.175556] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.175557] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.175557] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.175558] RIP: 0010:follow_pte+0x220/0x230
[ 67.175559] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.175560] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.175560] RAX: 0000000000000000 RBX: 000076e4ab69f000 RCX: ffffa5a103117b60
[ 67.175561] RDX: ffffa5a103117b58 RSI: 000076e4ab69f000 RDI: ffff8ef8719c9a98
[ 67.175561] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.175562] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.175562] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef865371080
[ 67.175563] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.175563] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.175564] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.175564] PKRU: 55555554
[ 67.175564] Call Trace:
[ 67.175565] <TASK>
[ 67.175565] ? show_regs+0x6c/0x80
[ 67.175566] ? __warn+0x88/0x140
[ 67.175568] ? follow_pte+0x220/0x230
[ 67.175569] ? report_bug+0x182/0x1b0
[ 67.175570] ? handle_bug+0x51/0xa0
[ 67.175572] ? exc_invalid_op+0x18/0x80
[ 67.175573] ? asm_exc_invalid_op+0x1b/0x20
[ 67.175575] ? follow_pte+0x220/0x230
[ 67.175576] follow_phys+0x4e/0x110
[ 67.175578] untrack_pfn+0x57/0x130
[ 67.175579] unmap_single_vma+0xbc/0xf0
[ 67.175580] zap_page_range_single+0x138/0x210
[ 67.175582] unmap_mapping_range+0x11b/0x140
[ 67.175583] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.175692] _nv000708rm+0x35/0x100 [nvidia]
[ 67.175867] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.176034] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.176144] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.176255] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.176362] ? kthread+0xe1/0x110
[ 67.176363] ? __pfx_kthread+0x10/0x10
[ 67.176364] ? ret_from_fork+0x44/0x70
[ 67.176365] ? __pfx_kthread+0x10/0x10
[ 67.176365] ? ret_from_fork_asm+0x1a/0x30
[ 67.176367] </TASK>
[ 67.176367] ---[ end trace 0000000000000000 ]---
[ 67.176370] ------------[ cut here ]------------
[ 67.176370] WARNING: CPU: 0 PID: 1165 at include/linux/rwsem.h:80 follow_pte+0x220/0x230
[ 67.176372] Modules linked in: ccm(E) rfcomm(E) snd_seq_dummy(E) snd_hrtimer(E) qrtr(E) cmac(E) algif_hash(E) algif_skcipher(E) af_alg(E) bnep(E) xe(E) drm_gpuvm(E) snd_hda_codec_realtek(E) drm_exec(E) gpu_sched(E) snd_hda_codec_generic(E) drm_suballoc_helper(E) snd_hda_scodec_component(E) binfmt_misc(E) nvidia_uvm(POE) nls_iso8859_1(E) nvidia_drm(POE) nvidia_modeset(POE) snd_sof_pci_intel_tgl(E) snd_sof_pci_intel_cnl(E) snd_sof_intel_hda_generic(E) soundwire_intel(E) soundwire_cadence(E) snd_sof_intel_hda_common(E) snd_sof_intel_hda_mlink(E) snd_sof_intel_hda(E) snd_sof_pci(E) snd_sof_xtensa_dsp(E) snd_sof(E) snd_sof_utils(E) snd_soc_hdac_hda(E) snd_soc_acpi_intel_match(E) soundwire_generic_allocation(E) snd_soc_acpi(E) soundwire_bus(E) snd_soc_avs(E) snd_soc_hda_codec(E) snd_hda_ext_core(E) snd_hda_codec_hdmi(E) snd_soc_core(E) intel_uncore_frequency(E) intel_uncore_frequency_common(E) snd_compress(E) intel_tcc_cooling(E) ac97_bus(E) nvidia(POE) snd_pcm_dmaengine(E) snd_hda_intel(E) snd_intel_dspcfg(E)
[ 67.176383] snd_intel_sdw_acpi(E) snd_hda_codec(E) x86_pkg_temp_thermal(E) snd_hda_core(E) intel_powerclamp(E) snd_hwdep(E) snd_pcm(E) iwlmvm(E) btusb(E) uvcvideo(E) videobuf2_vmalloc(E) btrtl(E) snd_seq_midi(E) uvc(E) snd_seq_midi_event(E) btintel(E) coretemp(E) videobuf2_memops(E) mac80211(E) kvm_intel(E) videobuf2_v4l2(E) btbcm(E) snd_rawmidi(E) btmtk(E) i915(E) libarc4(E) videodev(E) snd_seq(E) videobuf2_common(E) bluetooth(E) kvm(E) ite_829x(OE) snd_seq_device(E) mc(E) processor_thermal_device_pci(E) led_class_multicolor(E) processor_thermal_device(E) snd_timer(E) drm_buddy(E) processor_thermal_wt_hint(E) iwlwifi(E) mei_hdcp(E) cmdlinepart(E) mei_pxp(E) processor_thermal_rfim(E) drm_display_helper(E) snd(E) spd5118(E) intel_rapl_msr(E) processor_thermal_rapl(E) intel_rapl_common(E) spi_nor(E) cec(E) processor_thermal_wt_req(E) rapl(E) mtd(E) i2c_i801(E) mei_me(E) drm_ttm_helper(E) processor_thermal_power_floor(E) mxm_wmi(E) intel_cstate(E) nvidia_wmi_ec_backlight(E) rc_core(E) soundcore(E) spi_intel_pci(E)
[ 67.176396] i2c_mux(E) ttm(E) cfg80211(E) processor_thermal_mbox(E) i2c_algo_bit(E) mei(E) spi_intel(E) i2c_smbus(E) int3403_thermal(E) int340x_thermal_zone(E) intel_pmc_core(E) intel_vsec(E) pmt_telemetry(E) int3400_thermal(E) intel_hid(E) pmt_class(E) acpi_pad(E) acpi_thermal_rel(E) sparse_keymap(E) joydev(E) input_leds(E) mac_hid(E) serio_raw(E) sch_fq_codel(E) msr(E) parport_pc(E) ppdev(E) lp(E) nvme_fabrics(E) parport(E) nvme_keyring(E) efi_pstore(E) nfnetlink(E) dmi_sysfs(E) ip_tables(E) x_tables(E) autofs4(E) btrfs(E) blake2b_generic(E) xor(E) raid6_pq(E) libcrc32c(E) dm_crypt(E) dm_mirror(E) dm_region_hash(E) dm_log(E) usbhid(E) nvme(E) hid_multitouch(E) nvme_core(E) hid_generic(E) nvme_auth(E) crct10dif_pclmul(E) crc32_pclmul(E) polyval_clmulni(E) polyval_generic(E) ghash_clmulni_intel(E) sha256_ssse3(E) sha1_ssse3(E) ucsi_acpi(E) thunderbolt(E) intel_lpss_pci(E) psmouse(E) typec_ucsi(E) intel_lpss(E) xhci_pci(E) igc(E) vmd(E) xhci_pci_renesas(E) idma64(E) typec(E) i2c_hid_acpi(E) i2c_hid(E) video(E) hid(E)
[ 67.176410] wmi(E) pinctrl_alderlake(E) aesni_intel(E) crypto_simd(E) cryptd(E)
[ 67.176412] CPU: 0 UID: 0 PID: 1165 Comm: nv_queue Tainted: P W OE 6.11.5 #1
[ 67.176413] Tainted: [P]=PROPRIETARY_MODULE, [W]=WARN, [O]=OOT_MODULE, [E]=UNSIGNED_MODULE
[ 67.176413] Hardware name: Notebook X370SNx1/X370SNx1, BIOS 1.07.03aMIN29 09/18/2024
[ 67.176413] RIP: 0010:follow_pte+0x220/0x230
[ 67.176415] Code: 15 75 33 8c 01 48 81 e2 00 00 00 c0 e9 7b ff ff ff 48 8b 45 d0 48 8b 38 e8 8d e9 e1 00 e8 18 e6 da ff 41 bc ea ff ff ff eb 9f <0f> 0b e9 0d fe ff ff 66 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[ 67.176415] RSP: 0018:ffffa5a103117b10 EFLAGS: 00010246
[ 67.176416] RAX: 0000000000000000 RBX: 000076e4ac012000 RCX: ffffa5a103117b60
[ 67.176416] RDX: ffffa5a103117b58 RSI: 000076e4ac012000 RDI: ffff8ef8719c8958
[ 67.176417] RBP: ffffa5a103117b48 R08: ffffa5a103117d18 R09: 0000000000000000
[ 67.176417] R10: 0000000000000000 R11: 0000000000000000 R12: ffffa5a103117ba8
[ 67.176417] R13: 0000000000000000 R14: ffffa5a103117b58 R15: ffff8ef865371080
[ 67.176418] FS: 0000000000000000(0000) GS:ffff8effde800000(0000) knlGS:0000000000000000
[ 67.176418] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 67.176419] CR2: 00006548222e7000 CR3: 0000000670c3e000 CR4: 0000000000f50ef0
[ 67.176419] PKRU: 55555554
[ 67.176419] Call Trace:
[ 67.176420] <TASK>
[ 67.176420] ? show_regs+0x6c/0x80
[ 67.176421] ? __warn+0x88/0x140
[ 67.176422] ? follow_pte+0x220/0x230
[ 67.176424] ? report_bug+0x182/0x1b0
[ 67.176425] ? handle_bug+0x51/0xa0
[ 67.176426] ? exc_invalid_op+0x18/0x80
[ 67.176427] ? asm_exc_invalid_op+0x1b/0x20
[ 67.176428] ? follow_pte+0x220/0x230
[ 67.176430] follow_phys+0x4e/0x110
[ 67.176431] untrack_pfn+0x57/0x130
[ 67.176433] unmap_single_vma+0xbc/0xf0
[ 67.176434] zap_page_range_single+0x138/0x210
[ 67.176435] unmap_mapping_range+0x11b/0x140
[ 67.176436] nv_revoke_gpu_mappings+0x68/0xc0 [nvidia]
[ 67.176534] _nv000708rm+0x35/0x100 [nvidia]
[ 67.176678] ? rm_execute_work_item+0xed/0x130 [nvidia]
[ 67.176847] ? os_execute_work_item+0x6c/0x90 [nvidia]
[ 67.176962] ? _main_loop+0x7e/0x140 [nvidia]
[ 67.177073] ? __pfx__main_loop+0x10/0x10 [nvidia]
[ 67.177183] ? kthread+0xe1/0x110
[ 67.177184] ? __pfx_kthread+0x10/0x10
[ 67.177185] ? ret_from_fork+0x44/0x70
[ 67.177186] ? __pfx_kthread+0x10/0x10
[ 67.177186] ? ret_from_fork_asm+0x1a/0x30
[ 67.177188] </TASK>
[ 67.177188] ---[ end trace 0000000000000000 ]---
[ 230.384941] usb 1-10: new high-speed USB device number 5 using xhci_hcd
[ 230.531903] usb 1-10: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.49
[ 230.531915] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 230.531919] usb 1-10: Product: 4-Port USB 2.0 Hub
[ 230.531923] usb 1-10: Manufacturer: Generic
[ 230.534946] hub 1-10:1.0: USB hub found
[ 230.536253] hub 1-10:1.0: 4 ports detected
[ 231.778990] usb 1-10.3: new full-speed USB device number 6 using xhci_hcd
[ 231.870766] usb 1-10.3: New USB device found, idVendor=043e, idProduct=9a39, bcdDevice= 4.11
[ 231.870781] usb 1-10.3: New USB device strings: Mfr=1, Product=3, SerialNumber=4
[ 231.870786] usb 1-10.3: Product: LG Monitor Controls
[ 231.870790] usb 1-10.3: Manufacturer: LG Electronics Inc.
[ 231.870793] usb 1-10.3: SerialNumber: 005INTX1F153
[ 231.877023] hid-generic 0003:043E:9A39.0003: hiddev1,hidraw2: USB HID v1.11 Device [LG Electronics Inc. LG Monitor Controls] on usb-0000:00:14.0-10.3/input0
[-- Attachment #3: trace.out --]
[-- Type: application/octet-stream, Size: 0 bytes --]
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-11-12 21:44 ` Aaron Rainbolt
@ 2024-11-14 11:51 ` Mika Westerberg
2024-11-14 16:41 ` Aaron Rainbolt
0 siblings, 1 reply; 29+ messages in thread
From: Mika Westerberg @ 2024-11-14 11:51 UTC (permalink / raw)
To: Aaron Rainbolt
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
Hi Aaron,
On Tue, Nov 12, 2024 at 04:44:47PM -0500, Aaron Rainbolt wrote:
> On Mon, 11 Nov 2024 10:22:23 +0200
> Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
>
> > Hi,
> >
> > On Thu, Nov 07, 2024 at 11:45:44AM +0200, Mika Westerberg wrote:
> > > Hi,
> > >
> > > On Wed, Nov 06, 2024 at 11:01:34AM -0600, Aaron Rainbolt wrote:
> > > > > Unfortunately that does not help here. I need to figure
> > > > > something else how to detect the redrive case with this
> > > > > firmware but first, does this work in Windows? I mean if you
> > > > > install Windows to this same system does it work as expected?
> > > >
> > > > It does work as expected under Windows 11, with one major caveat.
> > > > We used a Windows 11 ISO with a setup.exe created on April 05
> > > > 2023 for installing the test system, and after initial
> > > > installation it behaved exactly the same way as Linux behaves now
> > > > (displays going blank soon after being plugged in). However,
> > > > after installing all available Windows updates, the issue
> > > > resolved, and the displays worked exactly as intended (the
> > > > screens are recognized when attached and do not end up
> > > > disconnecting after a timeout).
> > > >
> > > > Would it be helpful to test on Windows 11, and provide a report
> > > > and system logs?
> > >
> > > Unfortunately, I don't know anything about Windows ;-)
> > >
> > > However, I asked our Thunderbolt hardware/firmware team about this,
> > > if they have any idea how it was solved in Windows side. Might take
> > > a couple of days though.
> >
> > While waiting for this, I wonder if you guys could do one more
> > experiment? I would like to get the traces what is happening there
> > (hoping something pops out there). Following steps:
> >
> > 1. Download and install tbtools [1].
> > 2. Build and install the kernel with my "redrive" patch.
> > 3. Boot the system up, nothing connected.
> > 4. Wait until the Barlow Ridge is in runtime suspend (so wait for
> > ~30s or so)
> > 5. Enable tracing:
> >
> > # tbtrace enable
> >
> > 6. Plug in USB-C monitor to the USB-C port of the Barlow Ridge. Do
> > not run 'lspci -k'. Expectation here is that there is no picture on
> > the monitor (in other words the issue reproduces).
> >
> > 7. Stop tracing and take full dump:
> >
> > # tbtrace disable
> > # tbtrace dump -vv > trace.out
> >
> > 8. Send trace.out along with full dmesg to me.
> >
> > Thanks!
> >
> > [1] https://github.com/intel/tbtools
>
> Testing done as requested. Notes from tester:
Thanks!
> * I verified lsmod |grep thunderbolt which showed module.
> * When running sudo ./tbtrace enable, output was Thunderbolt/USB4
> tracing: Enabled.
> * When plugging in monitor, it wakes the backlight, but there is no
> image. syslog shows it as LG monitor controls. The monitor reports
> "no signal" and eventually turns off the backlight to save power.
> * When running sudo ./tbtrace disable, output was Thunderbolt/USB4
> tracing: Disabled.
> * Output was save using tbtrace dump -vv > trace.out and sudo dmesg >
> trace.dmesg. trace.out is an empty file.
>
> ---
>
> (Yes, that's correct, trace.out is empty. I attached it nonetheless,
> but it's a 0-byte file. I'm guessing the Thunderbolt chip probably
> didn't come out of suspend?)
Yes, that's possible and this could explain the Linux behaviour but it
does not explain why it works in Windows. Also the dmesg is full of
stacktraces, not much else.
I got reply from our experts. They say that we are expected to get the
DP IN unplugs every single time we enter redrive mode. There is nothing
"special" added to the Windows side for this either so there is no real
explanation why it works in Windows and why we see this in Linux. What
they also wanted to check is that with the "production quality" Barlow
Ridge firmwares this is not expected to happen and yours is in 14.x so
is this some pre-production hardware that you are dealing with or this
can be purchased from somewhere? Where did you get the firmware?
Thanks!
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-11-14 11:51 ` Mika Westerberg
@ 2024-11-14 16:41 ` Aaron Rainbolt
2024-11-15 13:20 ` Mika Westerberg
0 siblings, 1 reply; 29+ messages in thread
From: Aaron Rainbolt @ 2024-11-14 16:41 UTC (permalink / raw)
To: Mika Westerberg
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
On Thu, 14 Nov 2024 13:51:36 +0200
Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
> Hi Aaron,
>
> On Tue, Nov 12, 2024 at 04:44:47PM -0500, Aaron Rainbolt wrote:
> > On Mon, 11 Nov 2024 10:22:23 +0200
> > Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
> >
> > > Hi,
> > >
> > > On Thu, Nov 07, 2024 at 11:45:44AM +0200, Mika Westerberg wrote:
> > > > Hi,
> > > >
> > > > On Wed, Nov 06, 2024 at 11:01:34AM -0600, Aaron Rainbolt wrote:
> > > >
> > > > > > Unfortunately that does not help here. I need to figure
> > > > > > something else how to detect the redrive case with this
> > > > > > firmware but first, does this work in Windows? I mean if you
> > > > > > install Windows to this same system does it work as
> > > > > > expected?
> > > > >
> > > > > It does work as expected under Windows 11, with one major
> > > > > caveat. We used a Windows 11 ISO with a setup.exe created on
> > > > > April 05 2023 for installing the test system, and after
> > > > > initial installation it behaved exactly the same way as Linux
> > > > > behaves now (displays going blank soon after being plugged
> > > > > in). However, after installing all available Windows updates,
> > > > > the issue resolved, and the displays worked exactly as
> > > > > intended (the screens are recognized when attached and do not
> > > > > end up disconnecting after a timeout).
> > > > >
> > > > > Would it be helpful to test on Windows 11, and provide a
> > > > > report and system logs?
> > > >
> > > > Unfortunately, I don't know anything about Windows ;-)
> > > >
> > > > However, I asked our Thunderbolt hardware/firmware team about
> > > > this, if they have any idea how it was solved in Windows side.
> > > > Might take a couple of days though.
> > >
> > > While waiting for this, I wonder if you guys could do one more
> > > experiment? I would like to get the traces what is happening there
> > > (hoping something pops out there). Following steps:
> > >
> > > 1. Download and install tbtools [1].
> > > 2. Build and install the kernel with my "redrive" patch.
> > > 3. Boot the system up, nothing connected.
> > > 4. Wait until the Barlow Ridge is in runtime suspend (so wait
> > > for ~30s or so)
> > > 5. Enable tracing:
> > >
> > > # tbtrace enable
> > >
> > > 6. Plug in USB-C monitor to the USB-C port of the Barlow Ridge.
> > > Do not run 'lspci -k'. Expectation here is that there is no
> > > picture on the monitor (in other words the issue reproduces).
> > >
> > > 7. Stop tracing and take full dump:
> > >
> > > # tbtrace disable
> > > # tbtrace dump -vv > trace.out
> > >
> > > 8. Send trace.out along with full dmesg to me.
> > >
> > > Thanks!
> > >
> > > [1] https://github.com/intel/tbtools
> >
> > Testing done as requested. Notes from tester:
>
> Thanks!
>
> > * I verified lsmod |grep thunderbolt which showed module.
> > * When running sudo ./tbtrace enable, output was Thunderbolt/USB4
> > tracing: Enabled.
> > * When plugging in monitor, it wakes the backlight, but there is no
> > image. syslog shows it as LG monitor controls. The monitor reports
> > "no signal" and eventually turns off the backlight to save power.
> > * When running sudo ./tbtrace disable, output was Thunderbolt/USB4
> > tracing: Disabled.
> > * Output was save using tbtrace dump -vv > trace.out and sudo dmesg
> > > trace.dmesg. trace.out is an empty file.
> >
> > ---
> >
> > (Yes, that's correct, trace.out is empty. I attached it nonetheless,
> > but it's a 0-byte file. I'm guessing the Thunderbolt chip probably
> > didn't come out of suspend?)
>
> Yes, that's possible and this could explain the Linux behaviour but it
> does not explain why it works in Windows. Also the dmesg is full of
> stacktraces, not much else.
>
> I got reply from our experts. They say that we are expected to get the
> DP IN unplugs every single time we enter redrive mode. There is
> nothing "special" added to the Windows side for this either so there
> is no real explanation why it works in Windows and why we see this in
> Linux. What they also wanted to check is that with the "production
> quality" Barlow Ridge firmwares this is not expected to happen and
> yours is in 14.x so is this some pre-production hardware that you are
> dealing with or this can be purchased from somewhere? Where did you
> get the firmware?
This is production hardware (specifically Clevo's X370SNW1-G and
X370SNV1-G laptops), available for purchase from Sager, XOTICPC,
Schenker, likely many other resellers, and our own website
at https://kfocus.org/spec/spec-m2.html (with a tool that allows users
to work around the bug). The firmware is baked into the hardware
provided to us by our ODM, and for the sake of stability we do not
modify any firmware on the machines with the exception of applying BIOS
updates provided to us directly by the ODM. They appear to get
their firmware directly from Clevo.
We have requested an updated BIOS from the ODM. If one is available, we
will upgrade and run the tests again.
Thanks again for your help!
Aaron
> Thanks!
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-11-14 16:41 ` Aaron Rainbolt
@ 2024-11-15 13:20 ` Mika Westerberg
2024-12-12 22:12 ` Aaron Rainbolt
2025-01-24 23:05 ` Aaron Rainbolt
0 siblings, 2 replies; 29+ messages in thread
From: Mika Westerberg @ 2024-11-15 13:20 UTC (permalink / raw)
To: Aaron Rainbolt
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
Hi,
On Thu, Nov 14, 2024 at 10:41:25AM -0600, Aaron Rainbolt wrote:
> This is production hardware (specifically Clevo's X370SNW1-G and
> X370SNV1-G laptops), available for purchase from Sager, XOTICPC,
> Schenker, likely many other resellers, and our own website
> at https://kfocus.org/spec/spec-m2.html (with a tool that allows users
> to work around the bug). The firmware is baked into the hardware
> provided to us by our ODM, and for the sake of stability we do not
> modify any firmware on the machines with the exception of applying BIOS
> updates provided to us directly by the ODM. They appear to get
> their firmware directly from Clevo.
Okay thanks.
> We have requested an updated BIOS from the ODM. If one is available, we
> will upgrade and run the tests again.
Yes, I hope you can get the firmwares. The one you have now is not
"production quality" firmare so you should not really have that there in
the first place and Clevo should definitely provide you an upgrade. Note
this is separate from the BIOS. But your BIOS has issue too regarding
the USB4 power contract that is required by Microsoft so I would expect
that you should get that one upgraded too.
The patch I shared earlier should deal with all the other cases except
that weird one where we do not seem to get unplugs (and the resource is
available) which is not how the firmware is expected to work. I was
planning to submit it upstream after some more validation on our end,
probably afer v6.13-rc1 is released. I'll CC you.
If/when you get the new firmare I would definitely appreciate if your
folks could give it a try.
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-11-15 13:20 ` Mika Westerberg
@ 2024-12-12 22:12 ` Aaron Rainbolt
2024-12-13 12:03 ` Mika Westerberg
2025-01-24 23:05 ` Aaron Rainbolt
1 sibling, 1 reply; 29+ messages in thread
From: Aaron Rainbolt @ 2024-12-12 22:12 UTC (permalink / raw)
To: Mika Westerberg
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
[-- Attachment #1: Type: text/plain, Size: 2454 bytes --]
On Fri, 15 Nov 2024 15:20:22 +0200
Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
> Hi,
>
> On Thu, Nov 14, 2024 at 10:41:25AM -0600, Aaron Rainbolt wrote:
> > This is production hardware (specifically Clevo's X370SNW1-G and
> > X370SNV1-G laptops), available for purchase from Sager, XOTICPC,
> > Schenker, likely many other resellers, and our own website
> > at https://kfocus.org/spec/spec-m2.html (with a tool that allows users
> > to work around the bug). The firmware is baked into the hardware
> > provided to us by our ODM, and for the sake of stability we do not
> > modify any firmware on the machines with the exception of applying
> > BIOS updates provided to us directly by the ODM. They appear to get
> > their firmware directly from Clevo.
>
> Okay thanks.
>
> > We have requested an updated BIOS from the ODM. If one is
> > available, we will upgrade and run the tests again.
>
> Yes, I hope you can get the firmwares. The one you have now is not
> "production quality" firmare so you should not really have that there
> in the first place and Clevo should definitely provide you an
> upgrade. Note this is separate from the BIOS. But your BIOS has issue
> too regarding the USB4 power contract that is required by Microsoft
> so I would expect that you should get that one upgraded too.
>
> The patch I shared earlier should deal with all the other cases except
> that weird one where we do not seem to get unplugs (and the resource
> is available) which is not how the firmware is expected to work. I was
> planning to submit it upstream after some more validation on our end,
> probably afer v6.13-rc1 is released. I'll CC you.
>
> If/when you get the new firmare I would definitely appreciate if your
> folks could give it a try.
Hi Mika:
Just to catch you up:
We find the most recent patch from this thread to be a good improvement.
We tested it on our hardware with USB-C attached displays. In
particular, it allows us to enable displays that do not time out while
using with Thunderbolt. Without the patch, enabling the Thunderbolt
kernel module would disable all attached USB-C displays in 15 seconds.
The patch does not resolve the hot plugging issue on our hardware, but
we have a work-around for that (lspci -k or reloading the thunderbolt
module). We have not been able to acquire new firmware yet, so this is
likely the issue.
The test results are attached if you are interested.
Sincerely, Aaron
[-- Attachment #2: 2024-12-12-tbt-patch-compare.md --]
[-- Type: text/markdown, Size: 1314 bytes --]
## Key
- Display: A USB-C Attached monitor
- A: 6.8.0-45
- B: 6.11.5
- C: 6.11.5-patched
- D: TBT enabled (y/n)
- E: Desktop showed, but timed-out after 15s
- F: Displays do not return on replug
- G: Can be flakey; sometimes a replug or display wake is needed
- N: NO
- Y: YES
- x: Passed
## Test Results
| A | B | C | D | Test |
| - | - | - | - | -------------- |
| x | x | x | n | Boot with no Displays w/o TBT (modprobe -r thunderbolt)|
| x | x | x | n | Attach 1st Display |
| x | x | x | n | Stays Resident 1st Display |
| x | x | x | n | Replug > 60s 1st Display |
| x | x | x | n | Attach 2nd Display |
| x | x | x | n | Replug > 60s 2nd Display |
| x | x | x | n | Replug > 60s BOTH Displays |
| x | x | x | n | Sleep-Resume BOTH Displays |
| x | x | x | n | Reboot with BOTH Displays | G
| A | B | C | D | Test |
| - | - | - | - | -------------- |
| x | x | x | Y | Enable TBT (modprobe thunderbolt) |
| E | E | x | Y | Stays Resident BOTH Displays |
| . | . | x | Y | Replug < 15s 1st Display (2nd Remains) |
| . | . | x | Y | Replug > 60s 1st Display (2nd Remains) |
| . | . | F | Y | Replug > 60s Both Displays |
| . | . | x | Y | Toggle TBT / lspci -k restores Displays |
| . | . | x | Y | Sleep-Resume BOTH Displays |
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-12-12 22:12 ` Aaron Rainbolt
@ 2024-12-13 12:03 ` Mika Westerberg
0 siblings, 0 replies; 29+ messages in thread
From: Mika Westerberg @ 2024-12-13 12:03 UTC (permalink / raw)
To: Aaron Rainbolt
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
Hi Aaron,
On Thu, Dec 12, 2024 at 04:12:57PM -0600, Aaron Rainbolt wrote:
> On Fri, 15 Nov 2024 15:20:22 +0200
> Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
>
> > Hi,
> >
> > On Thu, Nov 14, 2024 at 10:41:25AM -0600, Aaron Rainbolt wrote:
> > > This is production hardware (specifically Clevo's X370SNW1-G and
> > > X370SNV1-G laptops), available for purchase from Sager, XOTICPC,
> > > Schenker, likely many other resellers, and our own website
> > > at https://kfocus.org/spec/spec-m2.html (with a tool that allows users
> > > to work around the bug). The firmware is baked into the hardware
> > > provided to us by our ODM, and for the sake of stability we do not
> > > modify any firmware on the machines with the exception of applying
> > > BIOS updates provided to us directly by the ODM. They appear to get
> > > their firmware directly from Clevo.
> >
> > Okay thanks.
> >
> > > We have requested an updated BIOS from the ODM. If one is
> > > available, we will upgrade and run the tests again.
> >
> > Yes, I hope you can get the firmwares. The one you have now is not
> > "production quality" firmare so you should not really have that there
> > in the first place and Clevo should definitely provide you an
> > upgrade. Note this is separate from the BIOS. But your BIOS has issue
> > too regarding the USB4 power contract that is required by Microsoft
> > so I would expect that you should get that one upgraded too.
> >
> > The patch I shared earlier should deal with all the other cases except
> > that weird one where we do not seem to get unplugs (and the resource
> > is available) which is not how the firmware is expected to work. I was
> > planning to submit it upstream after some more validation on our end,
> > probably afer v6.13-rc1 is released. I'll CC you.
> >
> > If/when you get the new firmare I would definitely appreciate if your
> > folks could give it a try.
>
> Hi Mika:
>
> Just to catch you up:
> We find the most recent patch from this thread to be a good improvement.
>
> We tested it on our hardware with USB-C attached displays. In
> particular, it allows us to enable displays that do not time out while
> using with Thunderbolt. Without the patch, enabling the Thunderbolt
> kernel module would disable all attached USB-C displays in 15 seconds.
>
> The patch does not resolve the hot plugging issue on our hardware, but
> we have a work-around for that (lspci -k or reloading the thunderbolt
> module). We have not been able to acquire new firmware yet, so this is
> likely the issue.
>
> The test results are attached if you are interested.
Thanks for testing!
You probably noticed, I sent out a formal patch here:
https://lore.kernel.org/linux-usb/20241211103529.2302706-1-mika.westerberg@linux.intel.com/
You are Cc'd. I wonder if I can add your Tested-by tag to it?
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2024-11-15 13:20 ` Mika Westerberg
2024-12-12 22:12 ` Aaron Rainbolt
@ 2025-01-24 23:05 ` Aaron Rainbolt
2025-01-26 5:53 ` Mika Westerberg
1 sibling, 1 reply; 29+ messages in thread
From: Aaron Rainbolt @ 2025-01-24 23:05 UTC (permalink / raw)
To: Mika Westerberg
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
On Fri, 15 Nov 2024 15:20:22 +0200
Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
> Hi,
>
> On Thu, Nov 14, 2024 at 10:41:25AM -0600, Aaron Rainbolt wrote:
> > This is production hardware (specifically Clevo's X370SNW1-G and
> > X370SNV1-G laptops), available for purchase from Sager, XOTICPC,
> > Schenker, likely many other resellers, and our own website
> > at https://kfocus.org/spec/spec-m2.html (with a tool that allows users
> > to work around the bug). The firmware is baked into the hardware
> > provided to us by our ODM, and for the sake of stability we do not
> > modify any firmware on the machines with the exception of applying
> > BIOS updates provided to us directly by the ODM. They appear to get
> > their firmware directly from Clevo.
>
> Okay thanks.
>
> > We have requested an updated BIOS from the ODM. If one is
> > available, we will upgrade and run the tests again.
>
> Yes, I hope you can get the firmwares. The one you have now is not
> "production quality" firmare so you should not really have that there
> in the first place and Clevo should definitely provide you an
> upgrade. Note this is separate from the BIOS. But your BIOS has issue
> too regarding the USB4 power contract that is required by Microsoft
> so I would expect that you should get that one upgraded too.
>
> The patch I shared earlier should deal with all the other cases except
> that weird one where we do not seem to get unplugs (and the resource
> is available) which is not how the firmware is expected to work. I was
> planning to submit it upstream after some more validation on our end,
> probably afer v6.13-rc1 is released. I'll CC you.
>
> If/when you get the new firmare I would definitely appreciate if your
> folks could give it a try.
Hi Mika, sorry for the very late follow-up, been busy with other work
stuff.
We contacted the ODM to get newer firmware. They contacted Clevo, who
told them that the Barlow Ridge chip in these machines is the B0
revision. According to them, the latest firmware available for the B0
revision is 14.6; they also state that the 56.x firmware is for the B1
revision and is incompatible.
Is it possible that the problem is that the driver is written
specifically for the B1 revision and only partially works with the B0
revision?
Thanks for your help!
Aaron
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2025-01-24 23:05 ` Aaron Rainbolt
@ 2025-01-26 5:53 ` Mika Westerberg
2025-01-26 16:12 ` Gil Fine
0 siblings, 1 reply; 29+ messages in thread
From: Mika Westerberg @ 2025-01-26 5:53 UTC (permalink / raw)
To: Aaron Rainbolt
Cc: YehezkelShB, michael.jamet, andreas.noever, linux-usb, mmikowski,
linux-kernel, Gil Fine
On Fri, Jan 24, 2025 at 05:05:40PM -0600, Aaron Rainbolt wrote:
> On Fri, 15 Nov 2024 15:20:22 +0200
> Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
>
> > Hi,
> >
> > On Thu, Nov 14, 2024 at 10:41:25AM -0600, Aaron Rainbolt wrote:
> > > This is production hardware (specifically Clevo's X370SNW1-G and
> > > X370SNV1-G laptops), available for purchase from Sager, XOTICPC,
> > > Schenker, likely many other resellers, and our own website
> > > at https://kfocus.org/spec/spec-m2.html (with a tool that allows users
> > > to work around the bug). The firmware is baked into the hardware
> > > provided to us by our ODM, and for the sake of stability we do not
> > > modify any firmware on the machines with the exception of applying
> > > BIOS updates provided to us directly by the ODM. They appear to get
> > > their firmware directly from Clevo.
> >
> > Okay thanks.
> >
> > > We have requested an updated BIOS from the ODM. If one is
> > > available, we will upgrade and run the tests again.
> >
> > Yes, I hope you can get the firmwares. The one you have now is not
> > "production quality" firmare so you should not really have that there
> > in the first place and Clevo should definitely provide you an
> > upgrade. Note this is separate from the BIOS. But your BIOS has issue
> > too regarding the USB4 power contract that is required by Microsoft
> > so I would expect that you should get that one upgraded too.
> >
> > The patch I shared earlier should deal with all the other cases except
> > that weird one where we do not seem to get unplugs (and the resource
> > is available) which is not how the firmware is expected to work. I was
> > planning to submit it upstream after some more validation on our end,
> > probably afer v6.13-rc1 is released. I'll CC you.
> >
> > If/when you get the new firmare I would definitely appreciate if your
> > folks could give it a try.
>
> Hi Mika, sorry for the very late follow-up, been busy with other work
> stuff.
No worries.
> We contacted the ODM to get newer firmware. They contacted Clevo, who
> told them that the Barlow Ridge chip in these machines is the B0
> revision. According to them, the latest firmware available for the B0
> revision is 14.6; they also state that the 56.x firmware is for the B1
> revision and is incompatible.
>
> Is it possible that the problem is that the driver is written
> specifically for the B1 revision and only partially works with the B0
> revision?
The driver support is written for USB4 v2 not specifically for certain
Barlow Ridge silicon stepping. B0 has issues that B1 fixes but I'm not sure
if they are related to this one. My reference host controller is actually
B0 and it is running the 56.x firmware IIRC so not incompatible.
@Gil, can you verify this?
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2025-01-26 5:53 ` Mika Westerberg
@ 2025-01-26 16:12 ` Gil Fine
2025-01-28 8:29 ` Gil Fine
0 siblings, 1 reply; 29+ messages in thread
From: Gil Fine @ 2025-01-26 16:12 UTC (permalink / raw)
To: Mika Westerberg
Cc: Aaron Rainbolt, YehezkelShB, michael.jamet, andreas.noever,
linux-usb, mmikowski, linux-kernel, Gil Fine, Novitzky Oren
Hi,
+ Oren
On Sun, Jan 26, 2025 at 07:53:47AM +0200, Mika Westerberg wrote:
> On Fri, Jan 24, 2025 at 05:05:40PM -0600, Aaron Rainbolt wrote:
> > On Fri, 15 Nov 2024 15:20:22 +0200
> > Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
> >
> > > Hi,
> > >
> > > On Thu, Nov 14, 2024 at 10:41:25AM -0600, Aaron Rainbolt wrote:
> > > > This is production hardware (specifically Clevo's X370SNW1-G and
> > > > X370SNV1-G laptops), available for purchase from Sager, XOTICPC,
> > > > Schenker, likely many other resellers, and our own website
> > > > at https://kfocus.org/spec/spec-m2.html (with a tool that allows users
> > > > to work around the bug). The firmware is baked into the hardware
> > > > provided to us by our ODM, and for the sake of stability we do not
> > > > modify any firmware on the machines with the exception of applying
> > > > BIOS updates provided to us directly by the ODM. They appear to get
> > > > their firmware directly from Clevo.
> > >
> > > Okay thanks.
> > >
> > > > We have requested an updated BIOS from the ODM. If one is
> > > > available, we will upgrade and run the tests again.
> > >
> > > Yes, I hope you can get the firmwares. The one you have now is not
> > > "production quality" firmare so you should not really have that there
> > > in the first place and Clevo should definitely provide you an
> > > upgrade. Note this is separate from the BIOS. But your BIOS has issue
> > > too regarding the USB4 power contract that is required by Microsoft
> > > so I would expect that you should get that one upgraded too.
> > >
> > > The patch I shared earlier should deal with all the other cases except
> > > that weird one where we do not seem to get unplugs (and the resource
> > > is available) which is not how the firmware is expected to work. I was
> > > planning to submit it upstream after some more validation on our end,
> > > probably afer v6.13-rc1 is released. I'll CC you.
> > >
> > > If/when you get the new firmare I would definitely appreciate if your
> > > folks could give it a try.
> >
> > Hi Mika, sorry for the very late follow-up, been busy with other work
> > stuff.
>
> No worries.
>
> > We contacted the ODM to get newer firmware. They contacted Clevo, who
> > told them that the Barlow Ridge chip in these machines is the B0
> > revision. According to them, the latest firmware available for the B0
> > revision is 14.6; they also state that the 56.x firmware is for the B1
> > revision and is incompatible.
> >
> > Is it possible that the problem is that the driver is written
> > specifically for the B1 revision and only partially works with the B0
> > revision?
>
> The driver support is written for USB4 v2 not specifically for certain
> Barlow Ridge silicon stepping. B0 has issues that B1 fixes but I'm not sure
> if they are related to this one. My reference host controller is actually
> B0 and it is running the 56.x firmware IIRC so not incompatible.
>
> @Gil, can you verify this?
Actually we didn't try use latest BR firmware on old HW like B0 so can't tell
if all BR features expected to work on B0, but let me add Oren, the contact
person for these.
@Oren, Is B0 BarlowRidge is still officially supported?
I mean do we release newer NVM versions to Clevo for B0 BR?
--
Thanks,
Gil
^ permalink raw reply [flat|nested] 29+ messages in thread
* Re: USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue?
2025-01-26 16:12 ` Gil Fine
@ 2025-01-28 8:29 ` Gil Fine
0 siblings, 0 replies; 29+ messages in thread
From: Gil Fine @ 2025-01-28 8:29 UTC (permalink / raw)
To: Mika Westerberg
Cc: Aaron Rainbolt, YehezkelShB, michael.jamet, andreas.noever,
linux-usb, mmikowski, linux-kernel, Gil Fine, Novitzky Oren,
gil.fine
Hi,
Got reponse from Oren that B0 BarlowRidge controller is not longer supported,
and the last thunderbolt firmware we released for B0 is 16.3 , from here:
https://www.intel.com/content/www/us/en/secure/design/confidential/software-kits/kit-details.html?kitId=821065&wapkw=barlow%20ridge%20nvm%20b0
So @Aaron, please try with that one.
Thanks !
On Sun, Jan 26, 2025 at 06:12:18PM +0200, Gil Fine wrote:
> Hi,
>
> + Oren
>
> On Sun, Jan 26, 2025 at 07:53:47AM +0200, Mika Westerberg wrote:
> > On Fri, Jan 24, 2025 at 05:05:40PM -0600, Aaron Rainbolt wrote:
> > > On Fri, 15 Nov 2024 15:20:22 +0200
> > > Mika Westerberg <mika.westerberg@linux.intel.com> wrote:
> > >
> > > > Hi,
> > > >
> > > > On Thu, Nov 14, 2024 at 10:41:25AM -0600, Aaron Rainbolt wrote:
> > > > > This is production hardware (specifically Clevo's X370SNW1-G and
> > > > > X370SNV1-G laptops), available for purchase from Sager, XOTICPC,
> > > > > Schenker, likely many other resellers, and our own website
> > > > > at https://kfocus.org/spec/spec-m2.html (with a tool that allows users
> > > > > to work around the bug). The firmware is baked into the hardware
> > > > > provided to us by our ODM, and for the sake of stability we do not
> > > > > modify any firmware on the machines with the exception of applying
> > > > > BIOS updates provided to us directly by the ODM. They appear to get
> > > > > their firmware directly from Clevo.
> > > >
> > > > Okay thanks.
> > > >
> > > > > We have requested an updated BIOS from the ODM. If one is
> > > > > available, we will upgrade and run the tests again.
> > > >
> > > > Yes, I hope you can get the firmwares. The one you have now is not
> > > > "production quality" firmare so you should not really have that there
> > > > in the first place and Clevo should definitely provide you an
> > > > upgrade. Note this is separate from the BIOS. But your BIOS has issue
> > > > too regarding the USB4 power contract that is required by Microsoft
> > > > so I would expect that you should get that one upgraded too.
> > > >
> > > > The patch I shared earlier should deal with all the other cases except
> > > > that weird one where we do not seem to get unplugs (and the resource
> > > > is available) which is not how the firmware is expected to work. I was
> > > > planning to submit it upstream after some more validation on our end,
> > > > probably afer v6.13-rc1 is released. I'll CC you.
> > > >
> > > > If/when you get the new firmare I would definitely appreciate if your
> > > > folks could give it a try.
> > >
> > > Hi Mika, sorry for the very late follow-up, been busy with other work
> > > stuff.
> >
> > No worries.
> >
> > > We contacted the ODM to get newer firmware. They contacted Clevo, who
> > > told them that the Barlow Ridge chip in these machines is the B0
> > > revision. According to them, the latest firmware available for the B0
> > > revision is 14.6; they also state that the 56.x firmware is for the B1
> > > revision and is incompatible.
> > >
> > > Is it possible that the problem is that the driver is written
> > > specifically for the B1 revision and only partially works with the B0
> > > revision?
> >
> > The driver support is written for USB4 v2 not specifically for certain
> > Barlow Ridge silicon stepping. B0 has issues that B1 fixes but I'm not sure
> > if they are related to this one. My reference host controller is actually
> > B0 and it is running the 56.x firmware IIRC so not incompatible.
> >
> > @Gil, can you verify this?
>
> Actually we didn't try use latest BR firmware on old HW like B0 so can't tell
> if all BR features expected to work on B0, but let me add Oren, the contact
> person for these.
>
> @Oren, Is B0 BarlowRidge is still officially supported?
> I mean do we release newer NVM versions to Clevo for B0 BR?
>
> --
> Thanks,
> Gil
--
Thanks,
Gil
^ permalink raw reply [flat|nested] 29+ messages in thread
end of thread, other threads:[~2025-01-28 8:29 UTC | newest]
Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-10 3:01 USB-C DisplayPort display failing to stay active with Intel Barlow Ridge USB4 controller, power-management related issue? Aaron Rainbolt
2024-10-10 4:49 ` Mika Westerberg
2024-10-11 4:26 ` Aaron Rainbolt
2024-10-11 16:38 ` Mika Westerberg
2024-10-11 18:02 ` Aaron Rainbolt
2024-10-11 23:37 ` Aaron Rainbolt
2024-10-23 6:27 ` Mika Westerberg
2024-10-23 7:39 ` Mika Westerberg
2024-10-23 22:44 ` Aaron Rainbolt
2024-10-24 15:43 ` Mika Westerberg
2024-10-31 14:55 ` Aaron Rainbolt
2024-11-01 7:21 ` Mika Westerberg
2024-11-01 23:13 ` Aaron Rainbolt
2024-11-04 6:01 ` Mika Westerberg
2024-11-05 20:16 ` Aaron Rainbolt
2024-11-06 6:06 ` Mika Westerberg
2024-11-06 17:01 ` Aaron Rainbolt
2024-11-07 9:45 ` Mika Westerberg
2024-11-11 8:22 ` Mika Westerberg
2024-11-12 21:44 ` Aaron Rainbolt
2024-11-14 11:51 ` Mika Westerberg
2024-11-14 16:41 ` Aaron Rainbolt
2024-11-15 13:20 ` Mika Westerberg
2024-12-12 22:12 ` Aaron Rainbolt
2024-12-13 12:03 ` Mika Westerberg
2025-01-24 23:05 ` Aaron Rainbolt
2025-01-26 5:53 ` Mika Westerberg
2025-01-26 16:12 ` Gil Fine
2025-01-28 8:29 ` Gil Fine
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).