* [PATCH v1 1/2] drm/ttm: don't leave bulk_move cursor dangling for unevictable resources
[not found] <20260615234922.151263-1-skainsworth@gmail.com>
@ 2026-06-15 23:49 ` Samuel Ainsworth
2026-06-16 7:12 ` Christian König
0 siblings, 1 reply; 3+ messages in thread
From: Samuel Ainsworth @ 2026-06-15 23:49 UTC (permalink / raw)
To: Christian König, Huang Rui
Cc: Thomas Hellström, Matthew Auld, Matthew Brost, dri-devel,
linux-kernel, Samuel Ainsworth, stable
ttm_resource_add_bulk_move() and ttm_resource_del_bulk_move() both act
only when the resource is evictable (!ttm_resource_unevictable()). A
resource is added to its bo's bulk_move cursor (pos->first / pos->last)
while evictable, but it can become unevictable -- pinned or swapped --
after it has been added.
ttm_resource_del_bulk_move() is reached both when the resource is freed
(ttm_resource_free()) and when the bo's bulk_move is cleared on teardown
(ttm_bo_set_bulk_move()). If the resource has become unevictable by then,
the del is skipped, so pos->first / pos->last are left pointing at it.
Once the resource is freed the cursor dangles, and the next
ttm_resource_add_bulk_move() / ttm_resource_move_to_lru_tail() on that
bulk_move dereferences it: a use-after-free read of
pos->first->bo->base.resv (the WARN_ON in ttm_lru_bulk_move_add())
followed by a list_move() through freed memory that corrupts the LRU
list. With CONFIG_DEBUG_LIST this manifests as a fatal "list_del
corruption" BUG.
On a Framework 13 (AMD Ryzen 7040, gfx1103) this is hit via hibernation:
a buffer object swapped out during hibernate (its resource becomes
unevictable) is later closed after resume (amdgpu_gem_object_close ->
amdgpu_vm_bo_del -> ttm_bo_set_bulk_move()), which skips removing its
resource from the VM's bulk_move cursor; a later GEM allocation on that
cursor then faults. KASAN reports a slab-use-after-free in
ttm_resource_add_bulk_move().
Track whether a resource is actually on the bulk_move cursor with a new
ttm_resource::bulk_move flag, set when it is added, and remove based on
that flag rather than on the resource's current evictability. The del
then always undoes what the add did, regardless of any pin/swap
transition in between.
Fixes: fc5d96670eb2 ("drm/ttm: Move swapped objects off the manager's LRU list")
Cc: stable@vger.kernel.org
Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/5387
Signed-off-by: Samuel Ainsworth <skainsworth@gmail.com>
---
drivers/gpu/drm/ttm/ttm_resource.c | 18 +++++++++++++++---
include/drm/ttm/ttm_resource.h | 9 +++++++++
2 files changed, 24 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/ttm/ttm_resource.c b/drivers/gpu/drm/ttm/ttm_resource.c
index 192fca24f37e..1a031ef151a7 100644
--- a/drivers/gpu/drm/ttm/ttm_resource.c
+++ b/drivers/gpu/drm/ttm/ttm_resource.c
@@ -280,16 +280,27 @@ static bool ttm_resource_unevictable(struct ttm_resource *res, struct ttm_buffer
void ttm_resource_add_bulk_move(struct ttm_resource *res,
struct ttm_buffer_object *bo)
{
- if (bo->bulk_move && !ttm_resource_unevictable(res, bo))
+ if (bo->bulk_move && !ttm_resource_unevictable(res, bo)) {
ttm_lru_bulk_move_add(bo->bulk_move, res);
+ res->bulk_move = true;
+ }
}
/* Remove the resource from a bulk move if the BO is configured for it */
void ttm_resource_del_bulk_move(struct ttm_resource *res,
struct ttm_buffer_object *bo)
{
- if (bo->bulk_move && !ttm_resource_unevictable(res, bo))
+ /*
+ * Remove based on whether the resource was actually added, not on its
+ * current evictability: a resource can become unevictable (pinned or
+ * swapped) after being added, and must still be taken off the bulk_move
+ * cursor before it is freed -- otherwise pos->first/last are left
+ * dangling at freed memory.
+ */
+ if (res->bulk_move) {
ttm_lru_bulk_move_del(bo->bulk_move, res);
+ res->bulk_move = false;
+ }
}
/* Move a resource to the LRU or bulk tail */
@@ -303,7 +314,7 @@ void ttm_resource_move_to_lru_tail(struct ttm_resource *res)
if (ttm_resource_unevictable(res, bo)) {
list_move_tail(&res->lru.link, &bdev->unevictable);
- } else if (bo->bulk_move) {
+ } else if (res->bulk_move) {
struct ttm_lru_bulk_move_pos *pos =
ttm_lru_bulk_move_pos(bo->bulk_move, res);
@@ -339,6 +350,7 @@ void ttm_resource_init(struct ttm_buffer_object *bo,
res->bus.is_iomem = false;
res->bus.caching = ttm_cached;
res->bo = bo;
+ res->bulk_move = false;
man = ttm_manager_type(bo->bdev, place->mem_type);
spin_lock(&bo->bdev->lru_lock);
diff --git a/include/drm/ttm/ttm_resource.h b/include/drm/ttm/ttm_resource.h
index 33e80f30b8b8..1fedf75bab96 100644
--- a/include/drm/ttm/ttm_resource.h
+++ b/include/drm/ttm/ttm_resource.h
@@ -274,6 +274,15 @@ struct ttm_resource {
* @lru: Least recently used list, see &ttm_resource_manager.lru
*/
struct ttm_lru_item lru;
+
+ /**
+ * @bulk_move: Whether this resource is currently tracked by its bo's
+ * &ttm_buffer_object.bulk_move cursor. Recorded when the resource is
+ * added so the matching del removes it even if the resource has since
+ * become unevictable (pinned or swapped) -- otherwise the cursor would
+ * be left pointing at this resource after it is freed.
+ */
+ bool bulk_move;
};
/**
--
2.54.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v1 1/2] drm/ttm: don't leave bulk_move cursor dangling for unevictable resources
2026-06-15 23:49 ` [PATCH v1 1/2] drm/ttm: don't leave bulk_move cursor dangling for unevictable resources Samuel Ainsworth
@ 2026-06-16 7:12 ` Christian König
2026-06-17 0:13 ` Samuel Ainsworth
0 siblings, 1 reply; 3+ messages in thread
From: Christian König @ 2026-06-16 7:12 UTC (permalink / raw)
To: Samuel Ainsworth, Huang Rui
Cc: Thomas Hellström, Matthew Auld, Matthew Brost, dri-devel,
linux-kernel, stable
On 6/16/26 01:49, Samuel Ainsworth wrote:
> ttm_resource_add_bulk_move() and ttm_resource_del_bulk_move() both act
> only when the resource is evictable (!ttm_resource_unevictable()). A
> resource is added to its bo's bulk_move cursor (pos->first / pos->last)
> while evictable, but it can become unevictable -- pinned or swapped --
> after it has been added.
>
> ttm_resource_del_bulk_move() is reached both when the resource is freed
> (ttm_resource_free()) and when the bo's bulk_move is cleared on teardown
> (ttm_bo_set_bulk_move()). If the resource has become unevictable by then,
> the del is skipped, so pos->first / pos->last are left pointing at it.
> Once the resource is freed the cursor dangles, and the next
> ttm_resource_add_bulk_move() / ttm_resource_move_to_lru_tail() on that
> bulk_move dereferences it: a use-after-free read of
> pos->first->bo->base.resv (the WARN_ON in ttm_lru_bulk_move_add())
> followed by a list_move() through freed memory that corrupts the LRU
> list. With CONFIG_DEBUG_LIST this manifests as a fatal "list_del
> corruption" BUG.
>
> On a Framework 13 (AMD Ryzen 7040, gfx1103) this is hit via hibernation:
> a buffer object swapped out during hibernate (its resource becomes
> unevictable) is later closed after resume (amdgpu_gem_object_close ->
> amdgpu_vm_bo_del -> ttm_bo_set_bulk_move()), which skips removing its
> resource from the VM's bulk_move cursor; a later GEM allocation on that
> cursor then faults. KASAN reports a slab-use-after-free in
> ttm_resource_add_bulk_move().
>
> Track whether a resource is actually on the bulk_move cursor with a new
> ttm_resource::bulk_move flag, set when it is added, and remove based on
> that flag rather than on the resource's current evictability. The del
> then always undoes what the add did, regardless of any pin/swap
> transition in between.
Good catch, but the fix looks incorrect to me.
Please don't add any flags to ttm_resource. The bulk move is per BO and not resource.
Why are we not removing un-evictable resource from a bulk move? That sounds broken to me in the first place.
Regards,
Christian.
>
> Fixes: fc5d96670eb2 ("drm/ttm: Move swapped objects off the manager's LRU list")
> Cc: stable@vger.kernel.org
> Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/5387
> Signed-off-by: Samuel Ainsworth <skainsworth@gmail.com>
> ---
> drivers/gpu/drm/ttm/ttm_resource.c | 18 +++++++++++++++---
> include/drm/ttm/ttm_resource.h | 9 +++++++++
> 2 files changed, 24 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/ttm/ttm_resource.c b/drivers/gpu/drm/ttm/ttm_resource.c
> index 192fca24f37e..1a031ef151a7 100644
> --- a/drivers/gpu/drm/ttm/ttm_resource.c
> +++ b/drivers/gpu/drm/ttm/ttm_resource.c
> @@ -280,16 +280,27 @@ static bool ttm_resource_unevictable(struct ttm_resource *res, struct ttm_buffer
> void ttm_resource_add_bulk_move(struct ttm_resource *res,
> struct ttm_buffer_object *bo)
> {
> - if (bo->bulk_move && !ttm_resource_unevictable(res, bo))
> + if (bo->bulk_move && !ttm_resource_unevictable(res, bo)) {
> ttm_lru_bulk_move_add(bo->bulk_move, res);
> + res->bulk_move = true;
> + }
> }
>
> /* Remove the resource from a bulk move if the BO is configured for it */
> void ttm_resource_del_bulk_move(struct ttm_resource *res,
> struct ttm_buffer_object *bo)
> {
> - if (bo->bulk_move && !ttm_resource_unevictable(res, bo))
> + /*
> + * Remove based on whether the resource was actually added, not on its
> + * current evictability: a resource can become unevictable (pinned or
> + * swapped) after being added, and must still be taken off the bulk_move
> + * cursor before it is freed -- otherwise pos->first/last are left
> + * dangling at freed memory.
> + */
> + if (res->bulk_move) {
> ttm_lru_bulk_move_del(bo->bulk_move, res);
> + res->bulk_move = false;
> + }
> }
>
> /* Move a resource to the LRU or bulk tail */
> @@ -303,7 +314,7 @@ void ttm_resource_move_to_lru_tail(struct ttm_resource *res)
> if (ttm_resource_unevictable(res, bo)) {
> list_move_tail(&res->lru.link, &bdev->unevictable);
>
> - } else if (bo->bulk_move) {
> + } else if (res->bulk_move) {
> struct ttm_lru_bulk_move_pos *pos =
> ttm_lru_bulk_move_pos(bo->bulk_move, res);
>
> @@ -339,6 +350,7 @@ void ttm_resource_init(struct ttm_buffer_object *bo,
> res->bus.is_iomem = false;
> res->bus.caching = ttm_cached;
> res->bo = bo;
> + res->bulk_move = false;
>
> man = ttm_manager_type(bo->bdev, place->mem_type);
> spin_lock(&bo->bdev->lru_lock);
> diff --git a/include/drm/ttm/ttm_resource.h b/include/drm/ttm/ttm_resource.h
> index 33e80f30b8b8..1fedf75bab96 100644
> --- a/include/drm/ttm/ttm_resource.h
> +++ b/include/drm/ttm/ttm_resource.h
> @@ -274,6 +274,15 @@ struct ttm_resource {
> * @lru: Least recently used list, see &ttm_resource_manager.lru
> */
> struct ttm_lru_item lru;
> +
> + /**
> + * @bulk_move: Whether this resource is currently tracked by its bo's
> + * &ttm_buffer_object.bulk_move cursor. Recorded when the resource is
> + * added so the matching del removes it even if the resource has since
> + * become unevictable (pinned or swapped) -- otherwise the cursor would
> + * be left pointing at this resource after it is freed.
> + */
> + bool bulk_move;
> };
>
> /**
> --
> 2.54.0
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v1 1/2] drm/ttm: don't leave bulk_move cursor dangling for unevictable resources
2026-06-16 7:12 ` Christian König
@ 2026-06-17 0:13 ` Samuel Ainsworth
0 siblings, 0 replies; 3+ messages in thread
From: Samuel Ainsworth @ 2026-06-17 0:13 UTC (permalink / raw)
To: Christian König
Cc: Huang Rui, Thomas Hellström, Matthew Auld, Matthew Brost,
dri-devel, linux-kernel, stable
[-- Attachment #1: Type: text/plain, Size: 8974 bytes --]
Hey Christian, thanks for the feedback!
I also since realized that v1 was developed against an older tree
(amd-staging-drm-next, 6.19) that predates
ttm_resource_del_bulk_move_unevictable(), so its real paths never reach the
state my patch guarded against. Sorry about that.
AFAIU the crash itself is real on current code, however. It reproduces on a
7.0.11 kernel whose swapout bulk_move handling is identical to today's mainline,
i.e. b2ed01e7ad3d. During hibernation the device-wide bulk_move cursor ends up
with a dangling pos pointer and then it panics.
> Why are we not removing un-evictable resource from a bulk move?
I am not sure. My current understanding is that:
(1) The dangle is created at GEM close, ttm_bo_set_bulk_move() calls the
!unevictable-gated ttm_resource_del_bulk_move(), which skips removal because the
resource is swapped (unevictable), leaving it on the cursor. Caught here with a
WARN_ONCE on the skipped removal (debug patch, no behaviour change):
TTM#5387: del skipped for unevictable resource ... still on bulk_move cursor
(first=... last=...)
ttm_resource_del_bulk_move
ttm_bo_set_bulk_move
amdgpu_vm_bo_del
amdgpu_gem_object_close
drm_gem_object_release_handle
drm_gem_handle_delete
drm_ioctl
(2) Later, a hibernation swapout allocates a resource and
ttm_resource_add_bulk_move() dereferences the dangling pos->first (the
ttm_resource.c:235 resv WARN). Shortly after, a GEM create trips list_del
corruption on the manager LRU and panics:
WARNING: drivers/gpu/drm/ttm/ttm_resource.c:235 ttm_resource_add_bulk_move
ttm_resource_alloc
ttm_bo_swapout_cb
ttm_lru_walk_for_evict
ttm_bo_swapout
ttm_device_prepare_hibernation
amdgpu_device_evict_resources
amdgpu_device_suspend / amdgpu_pmops_freeze
hibernation_snapshot
... ~17 min later ...
list_del corruption. next->prev should be ffff8bd321281e20,
but was ffff8bd39ef84040
kernel BUG at lib/list_debug.c:65!
__list_del_entry_valid_or_report
ttm_resource_move_to_lru_tail
amdgpu_gem_create_ioctl
tl;dr a swapped resource is left on the (shared) bulk_move cursor; once it is
freed, pos->first/last dangles and the next add/move on that cursor corrupts the
manager LRU and panics.
I am attaching
* pstore-panic-full.log: the full ramoops panic dump
* crash-excerpt.txt: a trimmed excerpt of just the WARN+BUG
* onmetal-detector-report.txt: a WARN_ONCE backtrace from the detector kernel
(stock code + a warn on the skipped removal; no behaviour change) showing
ttm_resource_del_bulk_move() skipping a swapped resource at GEM close
(ttm_bo_set_bulk_move ← amdgpu_vm_bo_del ← amdgpu_gem_object_close), leaving
it on the cursor.
Hopefully these may be useful for others.
Best,
Sam
On Tue, Jun 16, 2026 at 7:12 AM Christian König
<christian.koenig@amd.com> wrote:
>
> On 6/16/26 01:49, Samuel Ainsworth wrote:
> > ttm_resource_add_bulk_move() and ttm_resource_del_bulk_move() both act
> > only when the resource is evictable (!ttm_resource_unevictable()). A
> > resource is added to its bo's bulk_move cursor (pos->first / pos->last)
> > while evictable, but it can become unevictable -- pinned or swapped --
> > after it has been added.
> >
> > ttm_resource_del_bulk_move() is reached both when the resource is freed
> > (ttm_resource_free()) and when the bo's bulk_move is cleared on teardown
> > (ttm_bo_set_bulk_move()). If the resource has become unevictable by then,
> > the del is skipped, so pos->first / pos->last are left pointing at it.
> > Once the resource is freed the cursor dangles, and the next
> > ttm_resource_add_bulk_move() / ttm_resource_move_to_lru_tail() on that
> > bulk_move dereferences it: a use-after-free read of
> > pos->first->bo->base.resv (the WARN_ON in ttm_lru_bulk_move_add())
> > followed by a list_move() through freed memory that corrupts the LRU
> > list. With CONFIG_DEBUG_LIST this manifests as a fatal "list_del
> > corruption" BUG.
> >
> > On a Framework 13 (AMD Ryzen 7040, gfx1103) this is hit via hibernation:
> > a buffer object swapped out during hibernate (its resource becomes
> > unevictable) is later closed after resume (amdgpu_gem_object_close ->
> > amdgpu_vm_bo_del -> ttm_bo_set_bulk_move()), which skips removing its
> > resource from the VM's bulk_move cursor; a later GEM allocation on that
> > cursor then faults. KASAN reports a slab-use-after-free in
> > ttm_resource_add_bulk_move().
> >
> > Track whether a resource is actually on the bulk_move cursor with a new
> > ttm_resource::bulk_move flag, set when it is added, and remove based on
> > that flag rather than on the resource's current evictability. The del
> > then always undoes what the add did, regardless of any pin/swap
> > transition in between.
>
> Good catch, but the fix looks incorrect to me.
>
> Please don't add any flags to ttm_resource. The bulk move is per BO and not resource.
>
> Why are we not removing un-evictable resource from a bulk move? That sounds broken to me in the first place.
>
> Regards,
> Christian.
>
> >
> > Fixes: fc5d96670eb2 ("drm/ttm: Move swapped objects off the manager's LRU list")
> > Cc: stable@vger.kernel.org
> > Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/5387
> > Signed-off-by: Samuel Ainsworth <skainsworth@gmail.com>
> > ---
> > drivers/gpu/drm/ttm/ttm_resource.c | 18 +++++++++++++++---
> > include/drm/ttm/ttm_resource.h | 9 +++++++++
> > 2 files changed, 24 insertions(+), 3 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/ttm/ttm_resource.c b/drivers/gpu/drm/ttm/ttm_resource.c
> > index 192fca24f37e..1a031ef151a7 100644
> > --- a/drivers/gpu/drm/ttm/ttm_resource.c
> > +++ b/drivers/gpu/drm/ttm/ttm_resource.c
> > @@ -280,16 +280,27 @@ static bool ttm_resource_unevictable(struct ttm_resource *res, struct ttm_buffer
> > void ttm_resource_add_bulk_move(struct ttm_resource *res,
> > struct ttm_buffer_object *bo)
> > {
> > - if (bo->bulk_move && !ttm_resource_unevictable(res, bo))
> > + if (bo->bulk_move && !ttm_resource_unevictable(res, bo)) {
> > ttm_lru_bulk_move_add(bo->bulk_move, res);
> > + res->bulk_move = true;
> > + }
> > }
> >
> > /* Remove the resource from a bulk move if the BO is configured for it */
> > void ttm_resource_del_bulk_move(struct ttm_resource *res,
> > struct ttm_buffer_object *bo)
> > {
> > - if (bo->bulk_move && !ttm_resource_unevictable(res, bo))
> > + /*
> > + * Remove based on whether the resource was actually added, not on its
> > + * current evictability: a resource can become unevictable (pinned or
> > + * swapped) after being added, and must still be taken off the bulk_move
> > + * cursor before it is freed -- otherwise pos->first/last are left
> > + * dangling at freed memory.
> > + */
> > + if (res->bulk_move) {
> > ttm_lru_bulk_move_del(bo->bulk_move, res);
> > + res->bulk_move = false;
> > + }
> > }
> >
> > /* Move a resource to the LRU or bulk tail */
> > @@ -303,7 +314,7 @@ void ttm_resource_move_to_lru_tail(struct ttm_resource *res)
> > if (ttm_resource_unevictable(res, bo)) {
> > list_move_tail(&res->lru.link, &bdev->unevictable);
> >
> > - } else if (bo->bulk_move) {
> > + } else if (res->bulk_move) {
> > struct ttm_lru_bulk_move_pos *pos =
> > ttm_lru_bulk_move_pos(bo->bulk_move, res);
> >
> > @@ -339,6 +350,7 @@ void ttm_resource_init(struct ttm_buffer_object *bo,
> > res->bus.is_iomem = false;
> > res->bus.caching = ttm_cached;
> > res->bo = bo;
> > + res->bulk_move = false;
> >
> > man = ttm_manager_type(bo->bdev, place->mem_type);
> > spin_lock(&bo->bdev->lru_lock);
> > diff --git a/include/drm/ttm/ttm_resource.h b/include/drm/ttm/ttm_resource.h
> > index 33e80f30b8b8..1fedf75bab96 100644
> > --- a/include/drm/ttm/ttm_resource.h
> > +++ b/include/drm/ttm/ttm_resource.h
> > @@ -274,6 +274,15 @@ struct ttm_resource {
> > * @lru: Least recently used list, see &ttm_resource_manager.lru
> > */
> > struct ttm_lru_item lru;
> > +
> > + /**
> > + * @bulk_move: Whether this resource is currently tracked by its bo's
> > + * &ttm_buffer_object.bulk_move cursor. Recorded when the resource is
> > + * added so the matching del removes it even if the resource has since
> > + * become unevictable (pinned or swapped) -- otherwise the cursor would
> > + * be left pointing at this resource after it is freed.
> > + */
> > + bool bulk_move;
> > };
> >
> > /**
> > --
> > 2.54.0
> >
>
[-- Attachment #2: crash-excerpt.txt --]
[-- Type: text/plain, Size: 8718 bytes --]
===== drm/ttm bulk_move dangling-cursor panic (excerpt of pstore-panic-full.log) =====
----- (1) first occurrence: resv WARN reading a dangling pos->first during hibernation swapout -----
[27285.758418] ------------[ cut here ]------------
[27285.758422] WARNING: drivers/gpu/drm/ttm/ttm_resource.c:235 at ttm_resource_add_bulk_move+0x90/0xa0 [ttm], CPU#11: systemd-sleep/686828
[27285.758435] Modules linked in: xt_connmark xt_mark ccm rfcomm snd_seq_dummy snd_hrtimer snd_seq snd_seq_device af_packet xt_MASQUERADE xfrm_user xfrm_algo xt_set ip_set nft_chain_nat xt_addrtype overlay tun uhid cmac algif_hash algif_skcipher af_alg bnep nls_iso8859_1 nls_cp437 vfat fat snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof hid_sensor_als hid_sensor_trigger kfifo_buf snd_sof_utils hid_sensor_iio_common snd_pci_ps snd_soc_acpi_amd_match industrialio snd_soc_acpi_amd_sdca_quirks snd_amd_sdw_acpi soundwire_amd snd_hda_codec_alc269 soundwire_generic_allocation mousedev snd_hda_codec_realtek_lib soundwire_bus snd_hda_scodec_component snd_soc_sdca snd_hda_codec_generic snd_hda_codec_atihdmi mt7921e mt7921_common snd_hda_codec_hdmi joydev snd_soc_core mt792x_lib snd_hda_intel spd5118 hid_multitouch hid_sensor_hub snd_compress mt76_connac_lib ac97_bus intel_rapl_msr snd_hda_codec snd_pcm_dmaengine mt76
[27285.758496] snd_rpl_pci_acp6x snd_hda_core btusb mac80211 snd_acp_pci uvcvideo btrtl snd_amd_acpi_mach btintel videobuf2_vmalloc snd_acp_legacy_common snd_intel_dspcfg uvc btmtk snd_intel_sdw_acpi snd_pci_acp6x videobuf2_memops snd_hwdep sp5100_tco btbcm videobuf2_v4l2 snd_pci_acp5x watchdog snd_pcm cfg80211 videobuf2_common snd_rn_pci_acp3x amd_pmf snd_acp_config edac_mce_amd bluetooth i2c_piix4 videodev amdtee ucsi_acpi edac_core snd_soc_acpi typec_ucsi amd_sfh snd_timer amd_atl intel_rapl_common ecdh_generic snd rfkill ghash_clmulni_intel aesni_intel rapl wmi_bmof roles framework_laptop(O) tiny_power_button platform_profile onboard_usb_dev k10temp mc ecc amdxdna i2c_smbus libarc4 snd_pci_acp3x soundcore thermal rtc_cmos typec ac i2c_hid_acpi tee i2c_hid button amd_pmc evdev input_leds mac_hid serio_raw xt_conntrack xt_tcpudp ip6t_rpfilter ipt_rpfilter xt_pkttype nft_compat leds_cros_ec cros_charge_control cros_kbd_led_backlight led_class_multicolor cros_ec_sysfs cros_ec_hwmon battery led_class cros_ec_debugfs
[27285.758570] gpio_cros_ec cros_ec_chardev nf_tables cros_ec_dev sch_fq_codel kvm_amd ccp kvm xt_nat br_netfilter x_tables nf_nat bridge nf_conntrack cros_ec_lpcs irqbypass ramoops cros_ec nf_defrag_ipv6 cros_ec_proto nf_defrag_ipv4 stp uinput veth reed_solomon loop llc fuse configfs nfnetlink zram 842_decompress 842_compress lz4hc_compress lz4_compress dmi_sysfs ext4 mbcache jbd2 hid_generic usbhid atkbd hid libps2 vivaldi_fmap nvme thunderbolt nvme_core xhci_pci nvme_keyring i8042 nvme_auth xhci_hcd hkdf serio amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec drm_panel_backlight_quirks gpu_sched drm_suballoc_helper video wmi drm_buddy drm_display_helper dm_mod cec crc16 efivarfs autofs4
[27285.758633] CPU: 11 UID: 0 PID: 686828 Comm: systemd-sleep Tainted: G W O 7.0.11 #1-NixOS PREEMPT(lazy)
[27285.758637] Tainted: [W]=WARN, [O]=OOT_MODULE
[27285.758638] Hardware name: Framework Laptop 13 (AMD Ryzen 7040Series)/FRANMDCP05, BIOS 03.17 11/14/2025
[27285.758640] RIP: 0010:ttm_resource_add_bulk_move+0x90/0xa0 [ttm]
[27285.758646] Code: c6 e9 b4 fa ff ff 48 8b 96 a8 01 00 00 48 85 d2 74 b8 f6 42 08 21 74 b2 e9 18 05 8a d9 48 89 07 48 89 47 08 e9 0c 05 8a d9 90 <0f> 0b 90 eb cf 66 66 2e 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
[27285.758648] RSP: 0018:ffffd18aa49a77a8 EFLAGS: 00010287
[27285.758651] RAX: ffff8bd321281b40 RBX: ffff8bd4d1882048 RCX: ffff8bd32d6e0148
[27285.758652] RDX: ffff8bd326800048 RSI: 0000000000000000 RDI: ffff8bd4fb697968
[27285.758654] RBP: ffffd18aa49a77f0 R08: 0000000000000000 R09: ffff8bd321281b40
[27285.758655] R10: ffff8bd30004b700 R11: 0000000000000000 R12: ffffd18aa49a78f0
[27285.758657] R13: ffff8bd31ba0ee38 R14: ffffd18aa49a7928 R15: ffff8bd4d1882048
[27285.758658] FS: 00007b5e32dfdcc0(0000) GS:ffff8bdac1e5d000(0000) knlGS:0000000000000000
[27285.758660] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[27285.758662] CR2: 00007f83dfb96dd0 CR3: 000000037d596000 CR4: 0000000000f50ef0
[27285.758664] PKRU: 55555554
[27285.758665] Call Trace:
[27285.758667] <TASK>
[27285.758669] ttm_resource_alloc+0xf4/0x120 [ttm]
[27285.758676] ttm_bo_swapout_cb+0x10f/0x270 [ttm]
[27285.758683] ttm_lru_walk_for_evict+0xad/0x1d0 [ttm]
[27285.758690] ttm_bo_swapout+0x5c/0x80 [ttm]
[27285.758697] ttm_device_prepare_hibernation+0x71/0xb0 [ttm]
[27285.758705] amdgpu_device_evict_resources+0x62/0x80 [amdgpu]
[27285.759085] amdgpu_device_suspend+0x13a/0x240 [amdgpu]
[27285.759252] amdgpu_pmops_freeze+0x1e/0x70 [amdgpu]
[27285.759418] pci_pm_freeze+0x5b/0xe0
[27285.759423] ? __pfx_pci_pm_freeze+0x10/0x10
[27285.759425] dpm_run_callback+0x51/0x180
[27285.759431] device_suspend+0x1aa/0x5e0
[27285.759434] ? srso_alias_return_thunk+0x5/0xfbef5
[27285.759438] ? dpm_async_suspend_superior+0x98/0x160
[27285.759442] dpm_suspend+0x1e2/0x400
[27285.759445] hibernation_snapshot+0xdc/0x560
[27285.759450] hibernate.cold+0x110/0x495
[27285.759455] state_store+0xc3/0xd0
[27285.759458] kernfs_fop_write_iter+0x189/0x230
[27285.759464] vfs_write+0x260/0x480
[27285.759470] ksys_write+0x73/0xf0
[27285.759473] do_syscall_64+0x10f/0x1540
[27285.759477] ? srso_alias_return_thunk+0x5/0xfbef5
[27285.759480] ? do_syscall_64+0x14e/0x1540
[27285.759485] ? srso_alias_return_thunk+0x5/0xfbef5
[27285.759487] ? kmem_cache_free+0xb7/0x410
----- [ the ttm_resource.c:235 WARN repeats ~hundreds of times as more BOs are swapped out ] -----
----- (2) ~17 minutes later: the dangling cursor corrupts the manager LRU -> fatal -----
[27308.405818] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 8c:3b:ad:40:76:f7
[28310.772017] slab kmalloc-rnd-09-256 start ffff8bd39ef84000 pointer offset 64 size 256
[28310.772030] list_del corruption. next->prev should be ffff8bd321281e20, but was ffff8bd39ef84040. (next=ffff8bd39ef84040)
[28310.772043] ------------[ cut here ]------------
[28310.772045] kernel BUG at lib/list_debug.c:65!
[28310.772055] Oops: invalid opcode: 0000 [#1] SMP NOPTI
[28310.772062] CPU: 11 UID: 1000 PID: 2869 Comm: .swayosd-server Tainted: G W O 7.0.11 #1-NixOS PREEMPT(lazy)
[28310.772068] Tainted: [W]=WARN, [O]=OOT_MODULE
[28310.772071] Hardware name: Framework Laptop 13 (AMD Ryzen 7040Series)/FRANMDCP05, BIOS 03.17 11/14/2025
[28310.772074] RIP: 0010:__list_del_entry_valid_or_report+0x10e/0x110
[28310.772083] Code: d7 48 89 14 24 e8 a2 6f c3 ff 48 8b 14 24 48 8b 74 24 08 48 c7 c7 e8 b1 67 9b 48 8b 42 08 48 89 d1 48 89 c2 e8 73 4c 84 ff 90 <0f> 0b 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 f3 0f 1e fa
[28310.772087] RSP: 0018:ffffd18a821e7a40 EFLAGS: 00010246
[28310.772092] RAX: 000000000000006d RBX: ffff8bd321281de0 RCX: 0000000000000027
[28310.772095] RDX: 0000000000000000 RSI: 0000000000000001 RDI: ffff8bda5e79e9c0
[28310.772097] RBP: ffff8bd31ba0ee38 R08: 0000000000000000 R09: 00000000ffffdfff
[28310.772100] R10: ffffffff9be5f640 R11: ffffd18a821e78f0 R12: ffff8bd321281e20
[28310.772103] R13: ffffd18a821e7bc0 R14: 0000000000000040 R15: ffff8bd31ba0f6b0
[28310.772105] FS: 000079fecd2723c0(0000) GS:ffff8bdac1e5d000(0000) knlGS:0000000000000000
[28310.772109] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[28310.772111] CR2: 000079fe8979c000 CR3: 0000000114434000 CR4: 0000000000f50ef0
[28310.772114] PKRU: 55555554
[28310.772117] Call Trace:
[28310.772121] <TASK>
[28310.772128] ttm_resource_move_to_lru_tail+0x93/0x160 [ttm]
[28310.772145] amdgpu_gem_create_ioctl+0x1ac/0x390 [amdgpu]
[28310.772483] ? __pfx_amdgpu_bo_user_destroy+0x10/0x10 [amdgpu]
[28310.772798] ? __pfx_amdgpu_gem_create_ioctl+0x10/0x10 [amdgpu]
[28310.773178] drm_ioctl_kernel+0xae/0x100
[28310.773192] drm_ioctl+0x27e/0x5a0
[28310.773201] ? __pfx_amdgpu_gem_create_ioctl+0x10/0x10 [amdgpu]
[28310.773677] amdgpu_drm_ioctl+0x4a/0x80 [amdgpu]
[28310.774105] __x64_sys_ioctl+0x97/0xe0
[28310.774116] do_syscall_64+0x10f/0x1540
[28310.774127] ? srso_alias_return_thunk+0x5/0xfbef5
[28310.774134] ? inode_set_ctime_current+0x50/0x270
[28310.774140] ? srso_alias_return_thunk+0x5/0xfbef5
[28310.774146] ? srso_alias_return_thunk+0x5/0xfbef5
[28310.774151] ? page_counter_uncharge+0x4a/0x80
[28310.774158] ? srso_alias_return_thunk+0x5/0xfbef5
[28310.774164] ? drain_stock+0x7d/0xa0
[28310.774170] ? srso_alias_return_thunk+0x5/0xfbef5
[-- Attachment #3: onmetal-detector-report.txt --]
[-- Type: text/plain, Size: 7862 bytes --]
Jun 15 13:02:57 tropical-turnip kernel: TTM#5387: del skipped for unevictable resource 00000000cfde8514 still on bulk_move cursor (first=00000000eda907fb last=00000000cfde8514)
Jun 15 13:02:57 tropical-turnip kernel: WARNING: drivers/gpu/drm/ttm/ttm_resource.c:299 at ttm_resource_del_bulk_move+0x18e/0x2e0 [ttm], CPU#1: .swayosd-server/3798
Jun 15 13:02:57 tropical-turnip kernel: Modules linked in: rfcomm snd_seq_dummy snd_hrtimer snd_seq snd_seq_device xfrm_user xfrm_algo xt_connmark xt_MASQUERADE xt_mark xt_set ip_set nft_chain_nat xt_addrtype overlay tun ccm af_packet uhid cmac algif_hash algif_skcipher af_alg bnep nls_iso8859_1 nls_cp437 vfat hid_sensor_als hid_sensor_trigger kfifo_buf hid_sensor_iio_common industrialio mousedev joydev hid_multitouch hid_sensor_hub spd5118 intel_rapl_msr hid_generic snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof snd_sof_utils snd_pci_ps snd_soc_acpi_amd_match snd_soc_acpi_amd_sdca_quirks snd_amd_sdw_acpi soundwire_amd soundwire_generic_allocation soundwire_bus snd_soc_sdca snd_hda_codec_alc269 fat snd_hda_codec_realtek_lib snd_hda_scodec_component snd_soc_core snd_hda_codec_generic snd_hda_codec_atihdmi btusb uvcvideo edac_mce_amd snd_compress snd_hda_codec_hdmi btrtl edac_core btintel videobuf2_vmalloc ac97_bus uvc snd_pcm_dmaengine btmtk
Jun 15 13:02:57 tropical-turnip kernel: videobuf2_memops videobuf2_v4l2 btbcm mt7921e amd_atl mt7921_common videobuf2_common snd_rpl_pci_acp6x bluetooth videodev snd_hda_intel intel_rapl_common snd_acp_pci mt792x_lib ghash_clmulni_intel mt76_connac_lib snd_hda_codec aesni_intel mc snd_amd_acpi_mach mt76 ecdh_generic snd_acp_legacy_common ecc wmi_bmof snd_hda_core snd_intel_dspcfg rapl snd_pci_acp6x mac80211 snd_intel_sdw_acpi snd_hwdep snd_pcm snd_pci_acp5x sp5100_tco snd_timer snd_rn_pci_acp3x amdxdna watchdog snd_acp_config snd i2c_piix4 snd_soc_acpi snd_pci_acp3x soundcore cfg80211 k10temp i2c_smbus amd_pmf amdtee rfkill framework_laptop(O) ucsi_acpi amd_sfh libarc4 tiny_power_button typec_ucsi platform_profile rtc_cmos ac input_leds roles thermal i2c_hid_acpi evdev i2c_hid typec tee button hid mac_hid amd_pmc serio_raw xt_conntrack xt_tcpudp ip6t_rpfilter cros_kbd_led_backlight ipt_rpfilter cros_charge_control leds_cros_ec led_class_multicolor cros_ec_hwmon cros_ec_sysfs cros_ec_chardev battery led_class gpio_cros_ec cros_ec_debugfs
Jun 15 13:02:57 tropical-turnip kernel: xt_pkttype cros_ec_dev nft_compat nf_tables sch_fq_codel kvm_amd ccp cros_ec_lpcs br_netfilter kvm xt_nat x_tables nf_nat nf_conntrack bridge nf_defrag_ipv6 ramoops irqbypass loop cros_ec veth nf_defrag_ipv4 uinput reed_solomon stp cros_ec_proto llc fuse configfs nfnetlink zram 842_decompress 842_compress lz4hc_compress lz4_compress dmi_sysfs ext4 mbcache jbd2 nvme atkbd libps2 vivaldi_fmap nvme_core nvme_keyring xhci_pci i8042 nvme_auth thunderbolt hkdf xhci_hcd serio amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec drm_panel_backlight_quirks gpu_sched drm_suballoc_helper video wmi drm_buddy drm_display_helper dm_mod cec crc16 efivarfs autofs4
Jun 15 13:02:57 tropical-turnip kernel: CPU: 1 UID: 1000 PID: 3798 Comm: .swayosd-server Tainted: G O 7.0.11 #1-NixOS PREEMPT(lazy)
Jun 15 13:02:57 tropical-turnip kernel: Tainted: [O]=OOT_MODULE
Jun 15 13:02:57 tropical-turnip kernel: Hardware name: Framework Laptop 13 (AMD Ryzen 7040Series)/FRANMDCP05, BIOS 03.17 11/14/2025
Jun 15 13:02:57 tropical-turnip kernel: RIP: 0010:ttm_resource_del_bulk_move+0x194/0x2e0 [ttm]
Jun 15 13:02:57 tropical-turnip kernel: Code: 81 48 c1 e0 04 48 8b 4c 02 08 4c 39 c6 74 0e 4c 39 c1 74 09 48 83 c4 28 e9 94 ca be e9 48 8d 3d 42 0d 24 00 48 89 f2 4c 89 c6 <67> 48 0f b9 3a 48 83 c4 28 e9 79 ca be e9 4c 89 c6 48 89 d7 48 83
Jun 15 13:02:57 tropical-turnip kernel: RSP: 0018:ffff88811d21f7b0 EFLAGS: 00010246
Jun 15 13:02:57 tropical-turnip kernel: RAX: 0000000000000010 RBX: ffff888156d43048 RCX: ffff888122850080
Jun 15 13:02:57 tropical-turnip kernel: RDX: ffff888122850700 RSI: ffff888122850080 RDI: ffffffffc0d583c0
Jun 15 13:02:57 tropical-turnip kernel: RBP: 0000000000000000 R08: ffff888122850080 R09: dffffc0000000000
Jun 15 13:02:57 tropical-turnip kernel: R10: 1ffff1102d80295d R11: ffff888155ab0cd8 R12: ffff8882cf31c308
Jun 15 13:02:57 tropical-turnip kernel: R13: ffff88816c014320 R14: ffff888224c20180 R15: ffff888156d43000
Jun 15 13:02:57 tropical-turnip kernel: FS: 00007f1a30e8d3c0(0000) GS:ffff888892257000(0000) knlGS:0000000000000000
Jun 15 13:02:57 tropical-turnip kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Jun 15 13:02:57 tropical-turnip kernel: CR2: 00007f1a3420c200 CR3: 000000019211e000 CR4: 0000000000f50ef0
Jun 15 13:02:57 tropical-turnip kernel: PKRU: 55555554
Jun 15 13:02:57 tropical-turnip kernel: Call Trace:
Jun 15 13:02:57 tropical-turnip kernel: <TASK>
Jun 15 13:02:57 tropical-turnip kernel: ? srso_alias_return_thunk+0x5/0xfbef5
Jun 15 13:02:57 tropical-turnip kernel: ttm_bo_set_bulk_move+0xf1/0x2a0 [ttm]
Jun 15 13:02:57 tropical-turnip kernel: amdgpu_vm_bo_del+0xa16/0x1040 [amdgpu]
Jun 15 13:02:57 tropical-turnip kernel: ? srso_alias_return_thunk+0x5/0xfbef5
Jun 15 13:02:57 tropical-turnip kernel: ? lock_is_held_type+0x9a/0x110
Jun 15 13:02:57 tropical-turnip kernel: ? srso_alias_return_thunk+0x5/0xfbef5
Jun 15 13:02:57 tropical-turnip kernel: amdgpu_gem_object_close+0x25e/0x380 [amdgpu]
Jun 15 13:02:57 tropical-turnip kernel: ? __pfx_amdgpu_gem_object_close+0x10/0x10 [amdgpu]
Jun 15 13:02:57 tropical-turnip kernel: ? srso_alias_return_thunk+0x5/0xfbef5
Jun 15 13:02:57 tropical-turnip kernel: ? lock_acquire+0x19d/0x310
Jun 15 13:02:57 tropical-turnip kernel: ? idr_replace+0x136/0x150
Jun 15 13:02:57 tropical-turnip kernel: ? lock_acquire+0x19d/0x310
Jun 15 13:02:57 tropical-turnip kernel: ? __pfx_idr_replace+0x10/0x10
Jun 15 13:02:57 tropical-turnip kernel: ? do_raw_spin_lock+0x128/0x270
Jun 15 13:02:57 tropical-turnip kernel: ? srso_alias_return_thunk+0x5/0xfbef5
Jun 15 13:02:57 tropical-turnip kernel: ? find_held_lock+0x2b/0x80
Jun 15 13:02:57 tropical-turnip kernel: ? __pfx_drm_gem_close_ioctl+0x10/0x10
Jun 15 13:02:57 tropical-turnip kernel: drm_gem_object_release_handle+0x7f/0x1c0
Jun 15 13:02:57 tropical-turnip kernel: drm_gem_handle_delete+0x61/0xb0
Jun 15 13:02:57 tropical-turnip kernel: ? __pfx_drm_gem_close_ioctl+0x10/0x10
Jun 15 13:02:57 tropical-turnip kernel: drm_ioctl_kernel+0x172/0x2e0
Jun 15 13:02:57 tropical-turnip kernel: ? find_held_lock+0x2b/0x80
Jun 15 13:02:57 tropical-turnip kernel: ? __pfx_drm_ioctl_kernel+0x10/0x10
Jun 15 13:02:57 tropical-turnip kernel: ? lock_release+0xdc/0x310
Jun 15 13:02:57 tropical-turnip kernel: drm_ioctl+0x4c5/0xbe0
Jun 15 13:02:57 tropical-turnip kernel: ? __pfx_drm_gem_close_ioctl+0x10/0x10
Jun 15 13:02:57 tropical-turnip kernel: ? __pfx_drm_ioctl+0x10/0x10
Jun 15 13:02:57 tropical-turnip kernel: ? lockdep_hardirqs_on_prepare+0xdb/0x190
Jun 15 13:02:57 tropical-turnip kernel: ? srso_alias_return_thunk+0x5/0xfbef5
Jun 15 13:02:57 tropical-turnip kernel: ? trace_hardirqs_on+0x19/0x1a0
Jun 15 13:02:57 tropical-turnip kernel: ? srso_alias_return_thunk+0x5/0xfbef5
Jun 15 13:02:57 tropical-turnip kernel: ? _raw_spin_unlock_irqrestore+0x44/0x60
Jun 15 13:02:57 tropical-turnip kernel: amdgpu_drm_ioctl+0xd3/0x190 [amdgpu]
Jun 15 13:02:57 tropical-turnip kernel: __x64_sys_ioctl+0x13c/0x1c0
Jun 15 13:02:57 tropical-turnip kernel: ? lockdep_hardirqs_on_prepare+0xdb/0x190
Jun 15 13:02:57 tropical-turnip kernel: do_syscall_64+0x122/0x1500
Jun 15 13:02:57 tropical-turnip kernel: ? __pfx_drm_ioctl+0x10/0x10
Jun 15 13:02:57 tropical-turnip kernel: ? lockdep_hardirqs_on_prepare+0xdb/0x190
Jun 15 13:02:57 tropical-turnip kernel: ? srso_alias_return_thunk+0x5/0xfbef5
[-- Attachment #4: pstore-panic-full.log --]
[-- Type: text/x-log, Size: 196725 bytes --]
<6>[ 969.912508] wlp1s0: disconnect from AP 94:cd:fd:f8:f6:87 for new auth to 94:cd:fd:f8:f6:88
<6>[ 970.075427] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[ 970.113689] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[ 974.796406] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[ 974.809140] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[ 974.913290] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 2/3)
<6>[ 974.930540] wlp1s0: authenticated
<6>[ 974.931314] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[ 974.951327] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=4)
<6>[ 974.987788] wlp1s0: associated
<7>[ 975.084364] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<6>[ 1284.286333] wlp1s0: disconnect from AP 94:cd:fd:f8:f6:87 for new auth to 94:cd:fd:f8:f6:88
<6>[ 1284.448458] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[ 1284.486638] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[ 1289.180581] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[ 1289.195711] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[ 1289.294776] wlp1s0: authenticated
<6>[ 1289.296993] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[ 1289.314661] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=4)
<6>[ 1289.350894] wlp1s0: associated
<7>[ 1289.446116] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<6>[ 1907.996141] wlp1s0: disconnect from AP 94:cd:fd:f8:f6:87 for new auth to 94:cd:fd:f8:f6:88
<6>[ 1908.164551] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[ 1908.205029] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[ 1912.908931] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[ 1912.924644] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[ 1913.027851] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 2/3)
<6>[ 1913.061634] wlp1s0: authenticated
<6>[ 1913.062508] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[ 1913.084181] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=4)
<6>[ 1913.122093] wlp1s0: associated
<7>[ 1913.243648] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<6>[ 3547.983527] wlp1s0: deauthenticating from 94:cd:fd:f8:f6:87 by local choice (Reason: 3=DEAUTH_LEAVING)
<6>[ 3548.448948] PM: suspend entry (s2idle)
<6>[ 3548.454080] Filesystems sync: 0.005 seconds
<4>[ 3548.771322] amdgpu 0000:c1:00.0: [drm] REG_WAIT timeout 1us * 100 tries - dcn31_program_compbuf_size line:141
<6>[ 3548.929697] Freezing user space processes
<6>[ 3548.931796] Freezing user space processes completed (elapsed 0.002 seconds)
<6>[ 3548.931804] OOM killer disabled.
<6>[ 3548.931806] Freezing remaining freezable tasks
<6>[ 3548.933112] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
<7>[ 3548.939259] GFP mask restricted
<4>[ 3548.952597] queueing ieee80211 work while going to suspend
<7>[ 3549.533712] PM: suspend of devices complete after 594.452 msecs
<7>[ 3549.533727] PM: start suspend of devices complete after 600.613 msecs
<7>[ 3549.535558] Clearing debounce for GPIO #0 during suspend.
<7>[ 3549.535567] Disabling GPIO #5 interrupt for suspend.
<7>[ 3549.535576] Disabling GPIO #8 interrupt for suspend.
<7>[ 3549.535596] Disabling GPIO #84 interrupt for suspend.
<6>[ 3549.535628] pcieport 0000:00:08.3: quirk: disabling D3cold for suspend
<7>[ 3549.536063] PM: late suspend of devices complete after 2.329 msecs
<7>[ 3549.536105] Setting wake for GPIO 8 to enable
<6>[ 3549.582743] ACPI: EC: interrupt blocked
<7>[ 3549.927386] PM: noirq suspend of devices complete after 391.074 msecs
<6>[ 3549.928297] ACPI: \_SB_.PEP_: Successfully transitioned to state screen off
<6>[ 3550.142038] ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 ms entry
<6>[ 3550.143146] ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 entry
<7>[ 3550.201083] PM: suspend-to-idle
<7>[ 3550.201143] amd_pmc: SMU idlemask s0i3: 0x3ffbbebd
<7>[ 5348.698169] Timekeeping suspended for 1797.870 seconds
<7>[ 5348.698217] PM: Triggering wakeup from IRQ 9
<7>[ 5348.698311] ACPI: PM: ACPI fixed event wakeup
<7>[ 5348.698320] PM: resume from suspend-to-idle
<6>[ 5348.700533] ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 exit
<6>[ 5348.701684] ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 ms exit
<6>[ 5348.702583] ACPI: \_SB_.PEP_: Successfully transitioned to state screen on
<6>[ 5349.348874] ACPI: EC: interrupt unblocked
<7>[ 5349.394008] PM: noirq resume of devices complete after 691.425 msecs
<7>[ 5349.394192] Setting wake for GPIO 8 to disable
<7>[ 5349.397242] PM: early resume of devices complete after 2.996 msecs
<6>[ 5349.455742] nvme nvme0: 12/0/0 default/read/poll queues
<6>[ 5349.456277] amdgpu 0000:c1:00.0: [drm] PCIE GART of 512M enabled (table at 0x000000801FD00000).
<6>[ 5349.456382] amdgpu 0000:c1:00.0: SMU is resuming...
<6>[ 5349.460694] amdgpu 0000:c1:00.0: SMU is resumed successfully!
<6>[ 5349.587060] amdgpu 0000:c1:00.0: [drm] Applying panel backlight quirk, min_brightness: 0
<6>[ 5349.790353] amdgpu 0000:c1:00.0: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
<6>[ 5349.790362] amdgpu 0000:c1:00.0: ring comp_1.0.0 uses VM inv eng 1 on hub 0
<6>[ 5349.790366] amdgpu 0000:c1:00.0: ring comp_1.1.0 uses VM inv eng 4 on hub 0
<6>[ 5349.790369] amdgpu 0000:c1:00.0: ring comp_1.2.0 uses VM inv eng 6 on hub 0
<6>[ 5349.790372] amdgpu 0000:c1:00.0: ring comp_1.3.0 uses VM inv eng 7 on hub 0
<6>[ 5349.790374] amdgpu 0000:c1:00.0: ring comp_1.0.1 uses VM inv eng 8 on hub 0
<6>[ 5349.790376] amdgpu 0000:c1:00.0: ring comp_1.1.1 uses VM inv eng 9 on hub 0
<6>[ 5349.790379] amdgpu 0000:c1:00.0: ring comp_1.2.1 uses VM inv eng 10 on hub 0
<6>[ 5349.790381] amdgpu 0000:c1:00.0: ring comp_1.3.1 uses VM inv eng 11 on hub 0
<6>[ 5349.790384] amdgpu 0000:c1:00.0: ring sdma0 uses VM inv eng 12 on hub 0
<6>[ 5349.790387] amdgpu 0000:c1:00.0: ring vcn_unified_0 uses VM inv eng 0 on hub 8
<6>[ 5349.790389] amdgpu 0000:c1:00.0: ring jpeg_dec uses VM inv eng 1 on hub 8
<6>[ 5349.790392] amdgpu 0000:c1:00.0: ring mes_kiq_3.1.0 uses VM inv eng 13 on hub 0
<7>[ 5350.665049] PM: resume of devices complete after 1267.812 msecs
<7>[ 5350.665292] GFP mask restored
<6>[ 5350.673777] OOM killer enabled.
<6>[ 5350.673780] Restarting tasks: Starting
<6>[ 5350.675014] Restarting tasks: Done
<6>[ 5350.675032] efivarfs: resyncing variable state
<6>[ 5350.693679] efivarfs: finished resyncing variable state
<5>[ 5350.693774] random: crng reseeded on system resumption
<6>[ 5350.700138] PM: suspend exit
<4>[ 5355.869480] clocksource: Long readout interval, skipping watchdog check: cs_nsec: 5340450958 wd_nsec: 5340496277
<6>[ 5356.048677] PM: hibernation: hibernation entry
<6>[ 5356.213410] Filesystems sync: 0.013 seconds
<6>[ 5356.213871] Freezing user space processes
<6>[ 5356.215601] Freezing user space processes completed (elapsed 0.001 seconds)
<6>[ 5356.215607] OOM killer disabled.
<7>[ 5356.216068] PM: hibernation: Marking nosave pages: [mem 0x00000000-0x00000fff]
<7>[ 5356.216074] PM: hibernation: Marking nosave pages: [mem 0x0009f000-0x000fffff]
<7>[ 5356.216078] PM: hibernation: Marking nosave pages: [mem 0x09b00000-0x09dfffff]
<7>[ 5356.216090] PM: hibernation: Marking nosave pages: [mem 0x09f00000-0x09f3bfff]
<7>[ 5356.216093] PM: hibernation: Marking nosave pages: [mem 0x49b50000-0x4bd4ffff]
<7>[ 5356.216208] PM: hibernation: Marking nosave pages: [mem 0x4bd69000-0x4bd6cfff]
<7>[ 5356.216210] PM: hibernation: Marking nosave pages: [mem 0x4bd6f000-0x4bd6ffff]
<7>[ 5356.216212] PM: hibernation: Marking nosave pages: [mem 0x52e9f000-0x52f1ffff]
<7>[ 5356.216216] PM: hibernation: Marking nosave pages: [mem 0x54967000-0x54967fff]
<7>[ 5356.216218] PM: hibernation: Marking nosave pages: [mem 0x57f7f000-0x5affefff]
<7>[ 5356.216381] PM: hibernation: Marking nosave pages: [mem 0x5b000000-0xffffffff]
<7>[ 5356.216662] PM: hibernation: Basic memory bitmaps created
<6>[ 5356.218987] PM: hibernation: Preallocating image memory
<6>[ 5359.756075] PM: hibernation: Allocated 2586276 pages for snapshot
<6>[ 5359.756082] PM: hibernation: Allocated 10345104 kbytes in 3.53 seconds (2930.62 MB/s)
<6>[ 5359.756086] Freezing remaining freezable tasks
<6>[ 5359.757654] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
<7>[ 5359.782619] GFP mask restricted
<4>[ 5359.794062] queueing ieee80211 work while going to suspend
<7>[ 5368.177939] PM: freeze of devices complete after 8395.435 msecs
<7>[ 5368.178425] Disabling GPIO #0 interrupt for hibernate.
<7>[ 5368.178430] Clearing debounce for GPIO #0 during hibernate.
<7>[ 5368.178434] Disabling GPIO #2 interrupt for hibernate.
<7>[ 5368.178438] Disabling GPIO #5 interrupt for hibernate.
<7>[ 5368.178441] Disabling GPIO #6 interrupt for hibernate.
<7>[ 5368.178445] Disabling GPIO #8 interrupt for hibernate.
<7>[ 5368.178450] Disabling GPIO #54 interrupt for hibernate.
<7>[ 5368.178454] Disabling GPIO #58 interrupt for hibernate.
<7>[ 5368.178457] Disabling GPIO #59 interrupt for hibernate.
<7>[ 5368.178461] Disabling GPIO #61 interrupt for hibernate.
<7>[ 5368.178464] Disabling GPIO #62 interrupt for hibernate.
<7>[ 5368.178469] Disabling GPIO #84 interrupt for hibernate.
<7>[ 5368.178660] PM: late freeze of devices complete after 0.713 msecs
<7>[ 5368.178667] Setting wake for GPIO 8 to enable
<6>[ 5368.179143] ACPI: EC: interrupt blocked
<7>[ 5368.183124] PM: noirq freeze of devices complete after 4.351 msecs
<7>[ 5368.183126] PM: end freeze of devices complete after 5.180 msecs
<6>[ 5368.183128] ACPI: PM: Preparing to enter system sleep state S4
<6>[ 5368.491430] ACPI: EC: event blocked
<6>[ 5368.491436] ACPI: EC: EC stopped
<6>[ 5368.491437] ACPI: PM: Saving platform NVS memory
<6>[ 5368.498710] Disabling non-boot CPUs ...
<6>[ 5368.500828] smpboot: CPU 11 is now offline
<6>[ 5368.505403] smpboot: CPU 10 is now offline
<6>[ 5368.509866] smpboot: CPU 9 is now offline
<6>[ 5368.514082] smpboot: CPU 8 is now offline
<6>[ 5368.518280] smpboot: CPU 7 is now offline
<6>[ 5368.521834] smpboot: CPU 6 is now offline
<6>[ 5368.526325] smpboot: CPU 5 is now offline
<6>[ 5368.530458] smpboot: CPU 4 is now offline
<6>[ 5368.534252] smpboot: CPU 3 is now offline
<6>[ 5368.537512] smpboot: CPU 2 is now offline
<6>[ 5368.542003] smpboot: CPU 1 is now offline
<6>[ 5368.543831] Spectre V2 : Update user space SMT mitigation: STIBP off
<7>[ 5368.543869] Checking wakeup interrupts
<7>[ 5368.543872] Calling kvm_suspend+0x0/0x30 [kvm]
<7>[ 5368.544154] Calling mce_syscore_suspend+0x0/0x40
<7>[ 5368.544163] Calling timekeeping_syscore_suspend+0x0/0x10
<7>[ 5368.544212] Calling irq_gc_suspend+0x0/0x80
<7>[ 5368.544218] Calling ioapic_suspend+0x0/0x10
<7>[ 5368.544397] Calling i8259A_suspend+0x0/0x30
<7>[ 5368.544410] Calling perf_ibs_suspend+0x0/0x40
<7>[ 5368.544416] Calling amd_iommu_suspend+0x0/0x50
<7>[ 5368.544508] Calling fw_suspend+0x0/0x20
<7>[ 5368.544524] Calling acpi_save_bm_rld+0x0/0x30
<7>[ 5368.544539] Calling lapic_suspend+0x0/0x170
<7>[ 5368.544684] PM: hibernation: Creating image
<6>[ 5368.545027] ACPI: PM: Restoring platform NVS memory
<6>[ 5368.545985] ACPI: EC: EC started
<7>[ 5368.545988] Calling lapic_resume+0x0/0x2b0
<7>[ 5368.546434] Calling acpi_restore_bm_rld+0x0/0x70
<7>[ 5368.546445] Calling irqrouter_resume+0x0/0x90
<7>[ 5368.546448] Calling amd_iommu_resume+0x0/0x60
<7>[ 5368.546856] Calling perf_ibs_resume+0x0/0x30
<6>[ 5368.546860] LVT offset 0 assigned for vector 0x400
<7>[ 5368.546861] Calling i8259A_resume+0x0/0x40
<7>[ 5368.547012] Calling i8237A_resume+0x0/0xb0
<7>[ 5368.547061] Calling ioapic_resume+0x0/0xd0
<7>[ 5368.547160] Calling irq_gc_resume+0x0/0x70
<7>[ 5368.547163] Calling irq_pm_syscore_resume+0x0/0x20
<7>[ 5368.547208] Calling timekeeping_syscore_resume+0x0/0x10
<7>[ 5368.547250] Timekeeping suspended for 510.153 seconds
<7>[ 5368.547263] Calling init_counter_refs+0x0/0x40
<7>[ 5368.547266] Calling mce_syscore_resume+0x0/0x50
<7>[ 5368.547926] Calling microcode_bsp_syscore_resume+0x0/0x20
<7>[ 5368.547930] Calling kvm_resume+0x0/0x40 [kvm]
<6>[ 5368.548009] Enabling non-boot CPUs ...
<6>[ 5368.548075] smpboot: Booting Node 0 Processor 1 APIC 0x1
<6>[ 5368.551247] Spectre V2 : Update user space SMT mitigation: STIBP always-on
<6>[ 5368.551277] CPU1 is up
<6>[ 5368.551342] smpboot: Booting Node 0 Processor 2 APIC 0x2
<6>[ 5368.554075] CPU2 is up
<6>[ 5368.554111] smpboot: Booting Node 0 Processor 3 APIC 0x3
<6>[ 5368.556846] CPU3 is up
<6>[ 5368.556881] smpboot: Booting Node 0 Processor 4 APIC 0x4
<6>[ 5368.559766] CPU4 is up
<6>[ 5368.559803] smpboot: Booting Node 0 Processor 5 APIC 0x5
<6>[ 5368.562771] CPU5 is up
<6>[ 5368.562811] smpboot: Booting Node 0 Processor 6 APIC 0x6
<6>[ 5368.565772] CPU6 is up
<6>[ 5368.565813] smpboot: Booting Node 0 Processor 7 APIC 0x7
<6>[ 5368.568705] CPU7 is up
<6>[ 5368.568740] smpboot: Booting Node 0 Processor 8 APIC 0x8
<6>[ 5368.571641] CPU8 is up
<6>[ 5368.571677] smpboot: Booting Node 0 Processor 9 APIC 0x9
<6>[ 5368.574636] CPU9 is up
<6>[ 5368.574672] smpboot: Booting Node 0 Processor 10 APIC 0xa
<6>[ 5368.577728] CPU10 is up
<6>[ 5368.577788] smpboot: Booting Node 0 Processor 11 APIC 0xb
<6>[ 5368.580842] CPU11 is up
<6>[ 5368.584365] ACPI: PM: Waking up from system sleep state S4
<6>[ 5368.605779] ACPI: EC: interrupt unblocked
<7>[ 5368.607686] PM: noirq restore of devices complete after 13.688 msecs
<7>[ 5368.607762] Setting wake for GPIO 8 to disable
<7>[ 5368.609383] PM: early restore of devices complete after 1.610 msecs
<7>[ 5369.278262] PM: hibernation: Need to copy 2904250 pages
<7>[ 5369.278269] PM: hibernation: Normal pages needed: 2904250 + 1024, available pages: 5302025
<3>[ 5372.315612] mt7921e 0000:01:00.0: Message 00020007 (seq 6) timeout
<3>[ 5372.315649] mt7921e 0000:01:00.0: PM: dpm_run_callback(): pci_pm_restore returns -110
<3>[ 5372.315675] mt7921e 0000:01:00.0: PM: failed to restore: error -110
<6>[ 5372.316487] amdgpu 0000:c1:00.0: [drm] PCIE GART of 512M enabled (table at 0x000000801FD00000).
<6>[ 5372.316536] amdgpu 0000:c1:00.0: PSP is resuming...
<6>[ 5372.324686] nvme nvme0: 12/0/0 default/read/poll queues
<6>[ 5372.340593] amdgpu 0000:c1:00.0: reserve 0x4000000 from 0x8018000000 for PSP TMR
<6>[ 5372.390572] mt7921e 0000:01:00.0: HW/SW Version: 0x8a108a10, Build Time: 20260224103145a
<6>[ 5372.760549] mt7921e 0000:01:00.0: WM Firmware Version: ____000000, Build Time: 20260224103233
<6>[ 5373.061106] amdgpu 0000:c1:00.0: RAS: optional ras ta ucode is not available
<6>[ 5373.069359] amdgpu 0000:c1:00.0: RAP: optional rap ta ucode is not available
<6>[ 5373.069363] amdgpu 0000:c1:00.0: SECUREDISPLAY: optional securedisplay ta ucode is not available
<6>[ 5373.069368] amdgpu 0000:c1:00.0: SMU is resuming...
<6>[ 5373.096161] amdgpu 0000:c1:00.0: SMU is resumed successfully!
<6>[ 5373.104228] amdgpu 0000:c1:00.0: [drm] DMUB hardware initialized: version=0x08005B00
<6>[ 5373.227019] amdgpu 0000:c1:00.0: [drm] Applying panel backlight quirk, min_brightness: 0
<6>[ 5373.381798] amdgpu 0000:c1:00.0: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
<6>[ 5373.381808] amdgpu 0000:c1:00.0: ring comp_1.0.0 uses VM inv eng 1 on hub 0
<6>[ 5373.381811] amdgpu 0000:c1:00.0: ring comp_1.1.0 uses VM inv eng 4 on hub 0
<6>[ 5373.381813] amdgpu 0000:c1:00.0: ring comp_1.2.0 uses VM inv eng 6 on hub 0
<6>[ 5373.381816] amdgpu 0000:c1:00.0: ring comp_1.3.0 uses VM inv eng 7 on hub 0
<6>[ 5373.381818] amdgpu 0000:c1:00.0: ring comp_1.0.1 uses VM inv eng 8 on hub 0
<6>[ 5373.381821] amdgpu 0000:c1:00.0: ring comp_1.1.1 uses VM inv eng 9 on hub 0
<6>[ 5373.381823] amdgpu 0000:c1:00.0: ring comp_1.2.1 uses VM inv eng 10 on hub 0
<6>[ 5373.381826] amdgpu 0000:c1:00.0: ring comp_1.3.1 uses VM inv eng 11 on hub 0
<6>[ 5373.381829] amdgpu 0000:c1:00.0: ring sdma0 uses VM inv eng 12 on hub 0
<6>[ 5373.381831] amdgpu 0000:c1:00.0: ring vcn_unified_0 uses VM inv eng 0 on hub 8
<6>[ 5373.381834] amdgpu 0000:c1:00.0: ring jpeg_dec uses VM inv eng 1 on hub 8
<6>[ 5373.381837] amdgpu 0000:c1:00.0: ring mes_kiq_3.1.0 uses VM inv eng 13 on hub 0
<5>[ 5373.432309] usb usb1: root hub lost power or was reset
<5>[ 5373.432320] usb usb2: root hub lost power or was reset
<5>[ 5373.433785] usb usb3: root hub lost power or was reset
<5>[ 5373.433791] usb usb4: root hub lost power or was reset
<5>[ 5373.539768] usb usb5: root hub lost power or was reset
<5>[ 5373.539781] usb usb6: root hub lost power or was reset
<5>[ 5373.540687] usb usb7: root hub lost power or was reset
<5>[ 5373.540690] usb usb8: root hub lost power or was reset
<6>[ 5373.541381] ACPI: EC: event unblocked
<4>[ 5374.337088] queueing ieee80211 work while going to suspend
<6>[ 5374.590768] usb 3-1: reset high-speed USB device number 2 using xhci_hcd
<4>[ 5374.756277] usb 1-4: WARN: invalid context state for evaluate context command.
<6>[ 5374.869160] usb 1-4: reset full-speed USB device number 2 using xhci_hcd
<6>[ 5375.131855] usb 1-5: reset high-speed USB device number 3 using xhci_hcd
<7>[ 5375.354657] PM: restore of devices complete after 6048.683 msecs
<7>[ 5375.354678] GFP mask restored
<6>[ 5375.354687] wlp1s0: Driver requested disconnection from AP 00:00:00:00:00:00
<7>[ 5375.363387] PM: hibernation: Hibernation image restored successfully.
<7>[ 5375.363538] PM: hibernation: Basic memory bitmaps freed
<6>[ 5375.363722] OOM killer enabled.
<6>[ 5375.363724] Restarting tasks: Starting
<6>[ 5375.364564] Restarting tasks: Done
<6>[ 5375.364578] efivarfs: resyncing variable state
<6>[ 5375.364710] efivarfs: removing variable HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
<6>[ 5375.368671] Bluetooth: hci0: HW/SW Version: 0x008a008a, Build Time: 20260224103448
<6>[ 5375.372550] efivarfs: finished resyncing variable state
<6>[ 5375.374937] PM: hibernation: hibernation exit
<6>[ 5376.448934] input: vicinae-snippet-virtual-keyboard as /devices/virtual/input/input15
<6>[ 5377.626357] Bluetooth: hci0: Device setup in 2206579 usecs
<4>[ 5377.626378] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
<6>[ 5377.682819] Bluetooth: MGMT ver 1.23
<6>[ 5377.810682] wlp1s0: authenticate with fa:d7:49:fa:39:50 (local address=04:68:74:dd:fa:93)
<6>[ 5378.182003] Bluetooth: hci0: HW/SW Version: 0x008a008a, Build Time: 20260224103448
<6>[ 5378.287695] wlp1s0: send auth to fa:d7:49:fa:39:50 (try 1/3)
<6>[ 5378.291444] wlp1s0: authenticated
<6>[ 5378.292202] wlp1s0: associate with fa:d7:49:fa:39:50 (try 1/3)
<6>[ 5378.307381] wlp1s0: RX AssocResp from fa:d7:49:fa:39:50 (capab=0x1411 status=0 aid=2)
<6>[ 5378.329324] Bluetooth: hci0: Device setup in 145702 usecs
<4>[ 5378.329330] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
<6>[ 5378.335720] wlp1s0: associated
<7>[ 5378.590722] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by fa:d7:49:fa:39:50
<6>[ 5688.842752] wlp1s0: disconnect from AP fa:d7:49:fa:39:50 for new auth to 94:cd:fd:f8:f6:88
<6>[ 5689.004914] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[ 5689.506452] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[ 5691.844823] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[ 5691.862648] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[ 5691.873467] wlp1s0: authenticated
<6>[ 5691.874540] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[ 5691.893900] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=4)
<6>[ 5691.928665] wlp1s0: associated
<7>[ 5692.018146] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<6>[ 6001.266624] wlp1s0: disconnect from AP 94:cd:fd:f8:f6:87 for new auth to 94:cd:fd:f8:f6:88
<6>[ 6001.442625] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[ 6001.481114] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[ 6006.198504] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[ 6006.213659] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[ 6006.303408] wlp1s0: authenticated
<6>[ 6006.304148] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[ 6006.322951] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=4)
<6>[ 6006.359352] wlp1s0: associated
<7>[ 6006.476198] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<6>[ 6315.611042] wlp1s0: disconnect from AP 94:cd:fd:f8:f6:87 for new auth to 94:cd:fd:f8:f6:88
<6>[ 6315.778283] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[ 6315.817175] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[ 6320.505543] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[ 6320.521284] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[ 6320.628348] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 2/3)
<6>[ 6320.654878] wlp1s0: authenticated
<6>[ 6320.655901] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[ 6320.675350] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=4)
<6>[ 6320.712533] wlp1s0: associated
<7>[ 6320.737146] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<6>[ 6630.223516] wlp1s0: disconnect from AP 94:cd:fd:f8:f6:87 for new auth to 94:cd:fd:f8:f6:88
<6>[ 6630.392283] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[ 6630.431209] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[ 6635.129438] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[ 6635.144595] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[ 6635.250111] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 2/3)
<6>[ 6635.267181] wlp1s0: authenticated
<6>[ 6635.268090] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[ 6635.286948] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=4)
<6>[ 6635.324227] wlp1s0: associated
<7>[ 6635.324295] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<6>[ 7254.579336] wlp1s0: disconnect from AP 94:cd:fd:f8:f6:87 for new auth to 94:cd:fd:f8:f6:88
<6>[ 7254.730926] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[ 7254.769308] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[ 7259.480108] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[ 7259.495299] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[ 7259.594840] wlp1s0: authenticated
<6>[ 7259.595899] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[ 7259.614058] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=4)
<6>[ 7259.650245] wlp1s0: associated
<7>[ 7259.741814] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<6>[ 9116.646655] wlp1s0: disconnect from AP 94:cd:fd:f8:f6:87 for new auth to 94:cd:fd:f8:f6:88
<6>[ 9116.804216] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[ 9116.842724] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[ 9121.536523] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[ 9121.551990] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[ 9121.658485] wlp1s0: authenticated
<6>[ 9121.660358] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[ 9121.678821] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=4)
<6>[ 9121.716307] wlp1s0: associated
<7>[ 9121.753532] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<6>[10721.704791] wlp1s0: deauthenticating from 94:cd:fd:f8:f6:87 by local choice (Reason: 3=DEAUTH_LEAVING)
<6>[10722.190871] PM: suspend entry (s2idle)
<6>[10722.193398] Filesystems sync: 0.002 seconds
<6>[10722.499200] Freezing user space processes
<6>[10722.500912] Freezing user space processes completed (elapsed 0.001 seconds)
<6>[10722.500916] OOM killer disabled.
<6>[10722.500918] Freezing remaining freezable tasks
<6>[10722.502061] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
<7>[10722.506319] GFP mask restricted
<4>[10722.515942] queueing ieee80211 work while going to suspend
<7>[10723.079585] PM: suspend of devices complete after 573.272 msecs
<7>[10723.079599] PM: start suspend of devices complete after 577.543 msecs
<7>[10723.081228] Clearing debounce for GPIO #0 during suspend.
<7>[10723.081237] Disabling GPIO #5 interrupt for suspend.
<7>[10723.081245] Disabling GPIO #8 interrupt for suspend.
<7>[10723.081263] Disabling GPIO #84 interrupt for suspend.
<7>[10723.081672] PM: late suspend of devices complete after 2.067 msecs
<7>[10723.081709] Setting wake for GPIO 8 to enable
<6>[10723.128178] ACPI: EC: interrupt blocked
<7>[10723.391358] PM: noirq suspend of devices complete after 309.466 msecs
<6>[10723.392269] ACPI: \_SB_.PEP_: Successfully transitioned to state screen off
<6>[10723.605599] ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 ms entry
<6>[10723.606715] ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 entry
<7>[10723.607843] PM: suspend-to-idle
<7>[10723.607898] amd_pmc: SMU idlemask s0i3: 0x3ffb3ebd
<7>[12522.170460] Timekeeping suspended for 1798.025 seconds
<7>[12522.170503] PM: Triggering wakeup from IRQ 9
<7>[12522.170599] ACPI: PM: ACPI fixed event wakeup
<7>[12522.170608] PM: resume from suspend-to-idle
<6>[12522.172351] ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 exit
<6>[12522.173492] ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 ms exit
<6>[12522.174382] ACPI: \_SB_.PEP_: Successfully transitioned to state screen on
<6>[12522.823937] ACPI: EC: interrupt unblocked
<7>[12522.868954] PM: noirq resume of devices complete after 694.579 msecs
<7>[12522.869159] Setting wake for GPIO 8 to disable
<7>[12522.872286] PM: early resume of devices complete after 3.059 msecs
<6>[12522.929262] amdgpu 0000:c1:00.0: [drm] PCIE GART of 512M enabled (table at 0x000000801FD00000).
<6>[12522.929349] amdgpu 0000:c1:00.0: SMU is resuming...
<6>[12522.929429] nvme nvme0: 12/0/0 default/read/poll queues
<6>[12522.933613] amdgpu 0000:c1:00.0: SMU is resumed successfully!
<6>[12523.060689] amdgpu 0000:c1:00.0: [drm] Applying panel backlight quirk, min_brightness: 0
<6>[12523.263794] amdgpu 0000:c1:00.0: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
<6>[12523.263803] amdgpu 0000:c1:00.0: ring comp_1.0.0 uses VM inv eng 1 on hub 0
<6>[12523.263807] amdgpu 0000:c1:00.0: ring comp_1.1.0 uses VM inv eng 4 on hub 0
<6>[12523.263809] amdgpu 0000:c1:00.0: ring comp_1.2.0 uses VM inv eng 6 on hub 0
<6>[12523.263812] amdgpu 0000:c1:00.0: ring comp_1.3.0 uses VM inv eng 7 on hub 0
<6>[12523.263814] amdgpu 0000:c1:00.0: ring comp_1.0.1 uses VM inv eng 8 on hub 0
<6>[12523.263817] amdgpu 0000:c1:00.0: ring comp_1.1.1 uses VM inv eng 9 on hub 0
<6>[12523.263819] amdgpu 0000:c1:00.0: ring comp_1.2.1 uses VM inv eng 10 on hub 0
<6>[12523.263822] amdgpu 0000:c1:00.0: ring comp_1.3.1 uses VM inv eng 11 on hub 0
<6>[12523.263824] amdgpu 0000:c1:00.0: ring sdma0 uses VM inv eng 12 on hub 0
<6>[12523.263827] amdgpu 0000:c1:00.0: ring vcn_unified_0 uses VM inv eng 0 on hub 8
<6>[12523.263830] amdgpu 0000:c1:00.0: ring jpeg_dec uses VM inv eng 1 on hub 8
<6>[12523.263832] amdgpu 0000:c1:00.0: ring mes_kiq_3.1.0 uses VM inv eng 13 on hub 0
<7>[12523.990897] PM: resume of devices complete after 1118.622 msecs
<7>[12523.991140] GFP mask restored
<6>[12523.999380] OOM killer enabled.
<6>[12523.999383] Restarting tasks: Starting
<6>[12524.000197] Restarting tasks: Done
<6>[12524.000210] efivarfs: resyncing variable state
<6>[12524.009807] efivarfs: finished resyncing variable state
<5>[12524.009912] random: crng reseeded on system resumption
<6>[12524.015507] PM: suspend exit
<6>[12524.160397] PM: hibernation: hibernation entry
<6>[12524.217309] Filesystems sync: 0.013 seconds
<6>[12524.217676] Freezing user space processes
<6>[12524.219854] Freezing user space processes completed (elapsed 0.002 seconds)
<6>[12524.219861] OOM killer disabled.
<7>[12524.220661] PM: hibernation: Marking nosave pages: [mem 0x00000000-0x00000fff]
<7>[12524.220668] PM: hibernation: Marking nosave pages: [mem 0x0009f000-0x000fffff]
<7>[12524.220672] PM: hibernation: Marking nosave pages: [mem 0x09b00000-0x09dfffff]
<7>[12524.220685] PM: hibernation: Marking nosave pages: [mem 0x09f00000-0x09f3bfff]
<7>[12524.220688] PM: hibernation: Marking nosave pages: [mem 0x49b50000-0x4bd4ffff]
<7>[12524.220803] PM: hibernation: Marking nosave pages: [mem 0x4bd69000-0x4bd6cfff]
<7>[12524.220806] PM: hibernation: Marking nosave pages: [mem 0x4bd6f000-0x4bd6ffff]
<7>[12524.220808] PM: hibernation: Marking nosave pages: [mem 0x52e9f000-0x52f1ffff]
<7>[12524.220813] PM: hibernation: Marking nosave pages: [mem 0x54967000-0x54967fff]
<7>[12524.220815] PM: hibernation: Marking nosave pages: [mem 0x57f7f000-0x5affefff]
<7>[12524.220979] PM: hibernation: Marking nosave pages: [mem 0x5b000000-0xffffffff]
<7>[12524.221260] PM: hibernation: Basic memory bitmaps created
<6>[12524.223737] PM: hibernation: Preallocating image memory
<6>[12526.170209] PM: hibernation: Allocated 2568107 pages for snapshot
<6>[12526.170217] PM: hibernation: Allocated 10272428 kbytes in 1.94 seconds (5295.06 MB/s)
<6>[12526.170221] Freezing remaining freezable tasks
<6>[12526.171402] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
<7>[12526.245545] GFP mask restricted
<4>[12526.257277] queueing ieee80211 work while going to suspend
<7>[12533.314399] PM: freeze of devices complete after 7069.007 msecs
<7>[12533.315290] Disabling GPIO #0 interrupt for hibernate.
<7>[12533.315299] Clearing debounce for GPIO #0 during hibernate.
<7>[12533.315305] Disabling GPIO #2 interrupt for hibernate.
<7>[12533.315311] Disabling GPIO #5 interrupt for hibernate.
<7>[12533.315316] Disabling GPIO #6 interrupt for hibernate.
<7>[12533.315322] Disabling GPIO #8 interrupt for hibernate.
<7>[12533.315330] Disabling GPIO #54 interrupt for hibernate.
<7>[12533.315335] Disabling GPIO #58 interrupt for hibernate.
<7>[12533.315341] Disabling GPIO #59 interrupt for hibernate.
<7>[12533.315346] Disabling GPIO #61 interrupt for hibernate.
<7>[12533.315351] Disabling GPIO #62 interrupt for hibernate.
<7>[12533.315357] Disabling GPIO #84 interrupt for hibernate.
<7>[12533.315808] PM: late freeze of devices complete after 1.395 msecs
<7>[12533.315819] Setting wake for GPIO 8 to enable
<6>[12533.316894] ACPI: EC: interrupt blocked
<7>[12533.321573] PM: noirq freeze of devices complete after 5.551 msecs
<7>[12533.321579] PM: end freeze of devices complete after 7.167 msecs
<6>[12533.321584] ACPI: PM: Preparing to enter system sleep state S4
<6>[12533.633502] ACPI: EC: event blocked
<6>[12533.633511] ACPI: EC: EC stopped
<6>[12533.633515] ACPI: PM: Saving platform NVS memory
<6>[12533.644415] Disabling non-boot CPUs ...
<6>[12533.647227] smpboot: CPU 11 is now offline
<6>[12533.650955] smpboot: CPU 10 is now offline
<6>[12533.655466] smpboot: CPU 9 is now offline
<6>[12533.659096] smpboot: CPU 8 is now offline
<6>[12533.663480] smpboot: CPU 7 is now offline
<6>[12533.667124] smpboot: CPU 6 is now offline
<6>[12533.671247] smpboot: CPU 5 is now offline
<6>[12533.674897] smpboot: CPU 4 is now offline
<6>[12533.678851] smpboot: CPU 3 is now offline
<6>[12533.682213] smpboot: CPU 2 is now offline
<6>[12533.686821] smpboot: CPU 1 is now offline
<6>[12533.688194] Spectre V2 : Update user space SMT mitigation: STIBP off
<7>[12533.688261] Checking wakeup interrupts
<7>[12533.688265] Calling kvm_suspend+0x0/0x30 [kvm]
<7>[12533.688361] Calling mce_syscore_suspend+0x0/0x40
<7>[12533.688371] Calling timekeeping_syscore_suspend+0x0/0x10
<7>[12533.688418] Calling irq_gc_suspend+0x0/0x80
<7>[12533.688426] Calling ioapic_suspend+0x0/0x10
<7>[12533.688559] Calling i8259A_suspend+0x0/0x30
<7>[12533.688574] Calling perf_ibs_suspend+0x0/0x40
<7>[12533.688582] Calling amd_iommu_suspend+0x0/0x50
<7>[12533.688705] Calling fw_suspend+0x0/0x20
<7>[12533.688729] Calling acpi_save_bm_rld+0x0/0x30
<7>[12533.688745] Calling lapic_suspend+0x0/0x170
<7>[12533.688920] PM: hibernation: Creating image
<6>[12533.689266] ACPI: PM: Restoring platform NVS memory
<6>[12533.690298] ACPI: EC: EC started
<7>[12533.690302] Calling lapic_resume+0x0/0x2b0
<7>[12533.690747] Calling acpi_restore_bm_rld+0x0/0x70
<7>[12533.690757] Calling irqrouter_resume+0x0/0x90
<7>[12533.690760] Calling amd_iommu_resume+0x0/0x60
<7>[12533.691154] Calling perf_ibs_resume+0x0/0x30
<6>[12533.691172] LVT offset 0 assigned for vector 0x400
<7>[12533.691173] Calling i8259A_resume+0x0/0x40
<7>[12533.691324] Calling i8237A_resume+0x0/0xb0
<7>[12533.691373] Calling ioapic_resume+0x0/0xd0
<7>[12533.691472] Calling irq_gc_resume+0x0/0x70
<7>[12533.691475] Calling irq_pm_syscore_resume+0x0/0x20
<7>[12533.691520] Calling timekeeping_syscore_resume+0x0/0x10
<7>[12533.691562] Timekeeping suspended for 29537.481 seconds
<7>[12533.691576] Calling init_counter_refs+0x0/0x40
<7>[12533.691579] Calling mce_syscore_resume+0x0/0x50
<7>[12533.692238] Calling microcode_bsp_syscore_resume+0x0/0x20
<7>[12533.692242] Calling kvm_resume+0x0/0x40 [kvm]
<6>[12533.692500] Enabling non-boot CPUs ...
<6>[12533.692559] smpboot: Booting Node 0 Processor 1 APIC 0x1
<6>[12533.695722] Spectre V2 : Update user space SMT mitigation: STIBP always-on
<6>[12533.695751] CPU1 is up
<6>[12533.695805] smpboot: Booting Node 0 Processor 2 APIC 0x2
<6>[12533.698538] CPU2 is up
<6>[12533.698608] smpboot: Booting Node 0 Processor 3 APIC 0x3
<6>[12533.701379] CPU3 is up
<6>[12533.701416] smpboot: Booting Node 0 Processor 4 APIC 0x4
<6>[12533.704320] CPU4 is up
<6>[12533.704356] smpboot: Booting Node 0 Processor 5 APIC 0x5
<6>[12533.707321] CPU5 is up
<6>[12533.707363] smpboot: Booting Node 0 Processor 6 APIC 0x6
<6>[12533.710300] CPU6 is up
<6>[12533.710339] smpboot: Booting Node 0 Processor 7 APIC 0x7
<6>[12533.713262] CPU7 is up
<6>[12533.713299] smpboot: Booting Node 0 Processor 8 APIC 0x8
<6>[12533.716303] CPU8 is up
<6>[12533.716344] smpboot: Booting Node 0 Processor 9 APIC 0x9
<6>[12533.719310] CPU9 is up
<6>[12533.719349] smpboot: Booting Node 0 Processor 10 APIC 0xa
<6>[12533.722397] CPU10 is up
<6>[12533.722448] smpboot: Booting Node 0 Processor 11 APIC 0xb
<6>[12533.725507] CPU11 is up
<6>[12533.728484] ACPI: PM: Waking up from system sleep state S4
<6>[12533.747244] ACPI: EC: interrupt unblocked
<7>[12533.749084] PM: noirq restore of devices complete after 14.143 msecs
<7>[12533.749156] Setting wake for GPIO 8 to disable
<7>[12533.750783] PM: early restore of devices complete after 1.616 msecs
<7>[12534.621027] PM: hibernation: Need to copy 2867919 pages
<7>[12534.621032] PM: hibernation: Normal pages needed: 2867919 + 1024, available pages: 5338354
<3>[12537.482316] mt7921e 0000:01:00.0: Message 00020007 (seq 15) timeout
<3>[12537.482354] mt7921e 0000:01:00.0: PM: dpm_run_callback(): pci_pm_restore returns -110
<3>[12537.482380] mt7921e 0000:01:00.0: PM: failed to restore: error -110
<6>[12537.483223] amdgpu 0000:c1:00.0: [drm] PCIE GART of 512M enabled (table at 0x000000801FD00000).
<6>[12537.483271] amdgpu 0000:c1:00.0: PSP is resuming...
<6>[12537.491439] nvme nvme0: 12/0/0 default/read/poll queues
<6>[12537.507355] amdgpu 0000:c1:00.0: reserve 0x4000000 from 0x8018000000 for PSP TMR
<6>[12537.557946] mt7921e 0000:01:00.0: HW/SW Version: 0x8a108a10, Build Time: 20260224103145a
<6>[12537.928772] mt7921e 0000:01:00.0: WM Firmware Version: ____000000, Build Time: 20260224103233
<6>[12538.226758] amdgpu 0000:c1:00.0: RAS: optional ras ta ucode is not available
<6>[12538.235117] amdgpu 0000:c1:00.0: RAP: optional rap ta ucode is not available
<6>[12538.235121] amdgpu 0000:c1:00.0: SECUREDISPLAY: optional securedisplay ta ucode is not available
<6>[12538.235125] amdgpu 0000:c1:00.0: SMU is resuming...
<6>[12538.260957] amdgpu 0000:c1:00.0: SMU is resumed successfully!
<6>[12538.268827] amdgpu 0000:c1:00.0: [drm] DMUB hardware initialized: version=0x08005B00
<6>[12538.391669] amdgpu 0000:c1:00.0: [drm] Applying panel backlight quirk, min_brightness: 0
<6>[12538.547611] amdgpu 0000:c1:00.0: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
<6>[12538.547620] amdgpu 0000:c1:00.0: ring comp_1.0.0 uses VM inv eng 1 on hub 0
<6>[12538.547623] amdgpu 0000:c1:00.0: ring comp_1.1.0 uses VM inv eng 4 on hub 0
<6>[12538.547626] amdgpu 0000:c1:00.0: ring comp_1.2.0 uses VM inv eng 6 on hub 0
<6>[12538.547629] amdgpu 0000:c1:00.0: ring comp_1.3.0 uses VM inv eng 7 on hub 0
<6>[12538.547631] amdgpu 0000:c1:00.0: ring comp_1.0.1 uses VM inv eng 8 on hub 0
<6>[12538.547634] amdgpu 0000:c1:00.0: ring comp_1.1.1 uses VM inv eng 9 on hub 0
<6>[12538.547636] amdgpu 0000:c1:00.0: ring comp_1.2.1 uses VM inv eng 10 on hub 0
<6>[12538.547639] amdgpu 0000:c1:00.0: ring comp_1.3.1 uses VM inv eng 11 on hub 0
<6>[12538.547642] amdgpu 0000:c1:00.0: ring sdma0 uses VM inv eng 12 on hub 0
<6>[12538.547644] amdgpu 0000:c1:00.0: ring vcn_unified_0 uses VM inv eng 0 on hub 8
<6>[12538.547647] amdgpu 0000:c1:00.0: ring jpeg_dec uses VM inv eng 1 on hub 8
<6>[12538.547650] amdgpu 0000:c1:00.0: ring mes_kiq_3.1.0 uses VM inv eng 13 on hub 0
<5>[12538.598200] usb usb1: root hub lost power or was reset
<5>[12538.598212] usb usb2: root hub lost power or was reset
<5>[12538.599664] usb usb3: root hub lost power or was reset
<5>[12538.599669] usb usb4: root hub lost power or was reset
<5>[12538.715713] usb usb5: root hub lost power or was reset
<5>[12538.715726] usb usb6: root hub lost power or was reset
<5>[12538.716603] usb usb7: root hub lost power or was reset
<5>[12538.716609] usb usb8: root hub lost power or was reset
<6>[12538.717372] ACPI: EC: event unblocked
<4>[12539.502409] queueing ieee80211 work while going to suspend
<6>[12539.781449] usb 3-1: reset high-speed USB device number 2 using xhci_hcd
<4>[12539.946822] usb 1-4: WARN: invalid context state for evaluate context command.
<6>[12540.059528] usb 1-4: reset full-speed USB device number 2 using xhci_hcd
<6>[12540.324110] usb 1-5: reset high-speed USB device number 3 using xhci_hcd
<7>[12540.547605] PM: restore of devices complete after 6109.007 msecs
<6>[12540.547612] wlp1s0: Driver requested disconnection from AP 00:00:00:00:00:00
<7>[12540.547653] GFP mask restored
<7>[12540.557049] PM: hibernation: Hibernation image restored successfully.
<7>[12540.557200] PM: hibernation: Basic memory bitmaps freed
<6>[12540.557392] OOM killer enabled.
<6>[12540.557394] Restarting tasks: Starting
<6>[12540.558290] Restarting tasks: Done
<6>[12540.558304] efivarfs: resyncing variable state
<6>[12540.559468] efivarfs: removing variable HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
<6>[12540.568365] Bluetooth: hci0: HW/SW Version: 0x008a008a, Build Time: 20260224103448
<6>[12540.573063] efivarfs: finished resyncing variable state
<6>[12540.575331] PM: hibernation: hibernation exit
<6>[12541.640921] input: vicinae-snippet-virtual-keyboard as /devices/virtual/input/input16
<6>[12542.820475] Bluetooth: hci0: Device setup in 2201661 usecs
<4>[12542.820485] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
<6>[12542.880590] Bluetooth: MGMT ver 1.23
<6>[12543.129211] wlp1s0: authenticate with fa:d7:49:fa:39:50 (local address=04:68:74:dd:fa:93)
<6>[12543.609824] wlp1s0: send auth to fa:d7:49:fa:39:50 (try 1/3)
<6>[12543.613210] wlp1s0: authenticated
<6>[12543.613843] wlp1s0: associate with fa:d7:49:fa:39:50 (try 1/3)
<6>[12543.630375] wlp1s0: RX AssocResp from fa:d7:49:fa:39:50 (capab=0x1411 status=0 aid=2)
<6>[12543.653998] wlp1s0: associated
<7>[12543.880594] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by fa:d7:49:fa:39:50
<6>[12854.005223] wlp1s0: disconnect from AP fa:d7:49:fa:39:50 for new auth to 94:cd:fd:f8:f6:88
<6>[12854.158366] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[12854.662557] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[12857.024997] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[12857.041805] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[12857.048409] wlp1s0: authenticated
<6>[12857.048875] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[12857.068925] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=4)
<6>[12857.103192] wlp1s0: associated
<7>[12857.203764] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<6>[13166.495346] wlp1s0: disconnect from AP 94:cd:fd:f8:f6:87 for new auth to 94:cd:fd:f8:f6:88
<6>[13166.660980] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[13166.698949] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[13171.348726] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[13171.361817] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[13171.468013] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 2/3)
<6>[13171.469079] wlp1s0: authenticated
<6>[13171.470013] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[13171.488439] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=4)
<6>[13171.524857] wlp1s0: associated
<7>[13171.546244] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<6>[13481.099638] wlp1s0: disconnect from AP 94:cd:fd:f8:f6:87 for new auth to 94:cd:fd:f8:f6:88
<6>[13481.265387] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[13481.303519] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[13486.019932] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[13486.035084] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[13486.142263] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 2/3)
<6>[13486.152711] wlp1s0: authenticated
<6>[13486.153277] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[13486.172243] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=4)
<6>[13486.206862] wlp1s0: associated
<7>[13486.323256] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<6>[13795.730982] wlp1s0: disconnect from AP 94:cd:fd:f8:f6:87 for new auth to 94:cd:fd:f8:f6:88
<6>[13795.901674] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[13795.940043] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[13800.677120] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[13800.692332] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[13800.796853] wlp1s0: authenticated
<6>[13800.798523] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[13800.815982] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=4)
<6>[13800.853972] wlp1s0: associated
<7>[13800.884787] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<6>[14419.995421] wlp1s0: disconnect from AP 94:cd:fd:f8:f6:87 for new auth to 94:cd:fd:f8:f6:88
<6>[14420.153913] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[14420.192067] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[14424.925671] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[14424.940841] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[14425.049202] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 2/3)
<6>[14425.074415] wlp1s0: authenticated
<6>[14425.075351] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[14425.094895] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=4)
<6>[14425.130349] wlp1s0: associated
<7>[14425.224207] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<6>[14984.938362] perf: interrupt took too long (2519 > 2500), lowering kernel.perf_event_max_sample_rate to 79000
<6>[16282.013606] wlp1s0: disconnect from AP 94:cd:fd:f8:f6:87 for new auth to 94:cd:fd:f8:f6:88
<6>[16282.177312] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[16282.216356] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[16286.901835] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[16286.917084] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[16287.024085] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 2/3)
<6>[16287.056955] wlp1s0: authenticated
<6>[16287.057709] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[16287.077783] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=4)
<6>[16287.118093] wlp1s0: associated
<7>[16287.141882] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<6>[16309.739211] wlp1s0: deauthenticating from 94:cd:fd:f8:f6:87 by local choice (Reason: 3=DEAUTH_LEAVING)
<6>[16310.209378] PM: suspend entry (s2idle)
<6>[16310.213278] Filesystems sync: 0.003 seconds
<6>[16310.517448] Freezing user space processes
<6>[16310.519246] Freezing user space processes completed (elapsed 0.001 seconds)
<6>[16310.519250] OOM killer disabled.
<6>[16310.519252] Freezing remaining freezable tasks
<6>[16310.520426] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
<7>[16310.525177] GFP mask restricted
<4>[16310.536795] queueing ieee80211 work while going to suspend
<7>[16311.130577] PM: suspend of devices complete after 605.393 msecs
<7>[16311.130590] PM: start suspend of devices complete after 610.160 msecs
<7>[16311.132196] Clearing debounce for GPIO #0 during suspend.
<7>[16311.132206] Disabling GPIO #5 interrupt for suspend.
<7>[16311.132214] Disabling GPIO #8 interrupt for suspend.
<7>[16311.132231] Disabling GPIO #84 interrupt for suspend.
<7>[16311.132653] PM: late suspend of devices complete after 2.056 msecs
<7>[16311.132691] Setting wake for GPIO 8 to enable
<6>[16311.179168] ACPI: EC: interrupt blocked
<7>[16311.448850] PM: noirq suspend of devices complete after 315.971 msecs
<6>[16311.449759] ACPI: \_SB_.PEP_: Successfully transitioned to state screen off
<6>[16311.663470] ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 ms entry
<6>[16311.664608] ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 entry
<7>[16311.665267] PM: suspend-to-idle
<7>[16311.665317] amd_pmc: SMU idlemask s0i3: 0x3ffb3ebd
<7>[18109.715598] Timekeeping suspended for 1798.021 seconds
<7>[18109.715640] PM: Triggering wakeup from IRQ 9
<7>[18109.715737] ACPI: PM: ACPI fixed event wakeup
<7>[18109.715746] PM: resume from suspend-to-idle
<6>[18109.717440] ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 exit
<6>[18109.718572] ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 ms exit
<6>[18109.719467] ACPI: \_SB_.PEP_: Successfully transitioned to state screen on
<6>[18110.395244] ACPI: EC: interrupt unblocked
<7>[18110.440203] PM: noirq resume of devices complete after 720.729 msecs
<7>[18110.440387] Setting wake for GPIO 8 to disable
<7>[18110.443474] PM: early resume of devices complete after 3.020 msecs
<6>[18110.502001] amdgpu 0000:c1:00.0: [drm] PCIE GART of 512M enabled (table at 0x000000801FD00000).
<6>[18110.502088] amdgpu 0000:c1:00.0: SMU is resuming...
<6>[18110.502134] nvme nvme0: 12/0/0 default/read/poll queues
<6>[18110.506382] amdgpu 0000:c1:00.0: SMU is resumed successfully!
<6>[18110.632952] amdgpu 0000:c1:00.0: [drm] Applying panel backlight quirk, min_brightness: 0
<6>[18110.834947] amdgpu 0000:c1:00.0: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
<6>[18110.834956] amdgpu 0000:c1:00.0: ring comp_1.0.0 uses VM inv eng 1 on hub 0
<6>[18110.834960] amdgpu 0000:c1:00.0: ring comp_1.1.0 uses VM inv eng 4 on hub 0
<6>[18110.834962] amdgpu 0000:c1:00.0: ring comp_1.2.0 uses VM inv eng 6 on hub 0
<6>[18110.834965] amdgpu 0000:c1:00.0: ring comp_1.3.0 uses VM inv eng 7 on hub 0
<6>[18110.834967] amdgpu 0000:c1:00.0: ring comp_1.0.1 uses VM inv eng 8 on hub 0
<6>[18110.834970] amdgpu 0000:c1:00.0: ring comp_1.1.1 uses VM inv eng 9 on hub 0
<6>[18110.834972] amdgpu 0000:c1:00.0: ring comp_1.2.1 uses VM inv eng 10 on hub 0
<6>[18110.834975] amdgpu 0000:c1:00.0: ring comp_1.3.1 uses VM inv eng 11 on hub 0
<6>[18110.834978] amdgpu 0000:c1:00.0: ring sdma0 uses VM inv eng 12 on hub 0
<6>[18110.834980] amdgpu 0000:c1:00.0: ring vcn_unified_0 uses VM inv eng 0 on hub 8
<6>[18110.834983] amdgpu 0000:c1:00.0: ring jpeg_dec uses VM inv eng 1 on hub 8
<6>[18110.834986] amdgpu 0000:c1:00.0: ring mes_kiq_3.1.0 uses VM inv eng 13 on hub 0
<7>[18111.559565] PM: resume of devices complete after 1116.082 msecs
<7>[18111.559796] GFP mask restored
<6>[18111.568521] OOM killer enabled.
<6>[18111.568524] Restarting tasks: Starting
<6>[18111.569330] Restarting tasks: Done
<6>[18111.569343] efivarfs: resyncing variable state
<6>[18111.577978] efivarfs: finished resyncing variable state
<5>[18111.578067] random: crng reseeded on system resumption
<6>[18111.584018] PM: suspend exit
<6>[18111.731242] PM: hibernation: hibernation entry
<6>[18111.780581] Filesystems sync: 0.014 seconds
<6>[18111.780812] Freezing user space processes
<6>[18111.782569] Freezing user space processes completed (elapsed 0.001 seconds)
<6>[18111.782574] OOM killer disabled.
<7>[18111.782987] PM: hibernation: Marking nosave pages: [mem 0x00000000-0x00000fff]
<7>[18111.782995] PM: hibernation: Marking nosave pages: [mem 0x0009f000-0x000fffff]
<7>[18111.782998] PM: hibernation: Marking nosave pages: [mem 0x09b00000-0x09dfffff]
<7>[18111.783011] PM: hibernation: Marking nosave pages: [mem 0x09f00000-0x09f3bfff]
<7>[18111.783014] PM: hibernation: Marking nosave pages: [mem 0x49b50000-0x4bd4ffff]
<7>[18111.783129] PM: hibernation: Marking nosave pages: [mem 0x4bd69000-0x4bd6cfff]
<7>[18111.783131] PM: hibernation: Marking nosave pages: [mem 0x4bd6f000-0x4bd6ffff]
<7>[18111.783133] PM: hibernation: Marking nosave pages: [mem 0x52e9f000-0x52f1ffff]
<7>[18111.783136] PM: hibernation: Marking nosave pages: [mem 0x54967000-0x54967fff]
<7>[18111.783138] PM: hibernation: Marking nosave pages: [mem 0x57f7f000-0x5affefff]
<7>[18111.783301] PM: hibernation: Marking nosave pages: [mem 0x5b000000-0xffffffff]
<7>[18111.783597] PM: hibernation: Basic memory bitmaps created
<6>[18111.785389] PM: hibernation: Preallocating image memory
<6>[18113.911990] PM: hibernation: Allocated 3110903 pages for snapshot
<6>[18113.911996] PM: hibernation: Allocated 12443612 kbytes in 2.12 seconds (5869.62 MB/s)
<6>[18113.912000] Freezing remaining freezable tasks
<6>[18113.914280] Freezing remaining freezable tasks completed (elapsed 0.002 seconds)
<7>[18113.953250] GFP mask restricted
<4>[18113.963014] queueing ieee80211 work while going to suspend
<7>[18121.398886] PM: freeze of devices complete after 7445.646 msecs
<7>[18121.399773] Disabling GPIO #0 interrupt for hibernate.
<7>[18121.399782] Clearing debounce for GPIO #0 during hibernate.
<7>[18121.399789] Disabling GPIO #2 interrupt for hibernate.
<7>[18121.399794] Disabling GPIO #5 interrupt for hibernate.
<7>[18121.399800] Disabling GPIO #6 interrupt for hibernate.
<7>[18121.399805] Disabling GPIO #8 interrupt for hibernate.
<7>[18121.399813] Disabling GPIO #54 interrupt for hibernate.
<7>[18121.399819] Disabling GPIO #58 interrupt for hibernate.
<7>[18121.399824] Disabling GPIO #59 interrupt for hibernate.
<7>[18121.399830] Disabling GPIO #61 interrupt for hibernate.
<7>[18121.399835] Disabling GPIO #62 interrupt for hibernate.
<7>[18121.399841] Disabling GPIO #84 interrupt for hibernate.
<7>[18121.400290] PM: late freeze of devices complete after 1.390 msecs
<7>[18121.400301] Setting wake for GPIO 8 to enable
<6>[18121.401260] ACPI: EC: interrupt blocked
<7>[18121.405809] PM: noirq freeze of devices complete after 5.304 msecs
<7>[18121.405816] PM: end freeze of devices complete after 6.917 msecs
<6>[18121.405821] ACPI: PM: Preparing to enter system sleep state S4
<6>[18121.717792] ACPI: EC: event blocked
<6>[18121.717801] ACPI: EC: EC stopped
<6>[18121.717804] ACPI: PM: Saving platform NVS memory
<6>[18121.728887] Disabling non-boot CPUs ...
<6>[18121.731762] smpboot: CPU 11 is now offline
<6>[18121.735711] smpboot: CPU 10 is now offline
<6>[18121.740373] smpboot: CPU 9 is now offline
<6>[18121.744187] smpboot: CPU 8 is now offline
<6>[18121.748151] smpboot: CPU 7 is now offline
<6>[18121.751951] smpboot: CPU 6 is now offline
<6>[18121.757405] smpboot: CPU 5 is now offline
<6>[18121.761042] smpboot: CPU 4 is now offline
<6>[18121.767435] smpboot: CPU 3 is now offline
<6>[18121.771015] smpboot: CPU 2 is now offline
<6>[18121.775240] smpboot: CPU 1 is now offline
<6>[18121.776944] Spectre V2 : Update user space SMT mitigation: STIBP off
<7>[18121.777009] Checking wakeup interrupts
<7>[18121.777013] Calling kvm_suspend+0x0/0x30 [kvm]
<7>[18121.777108] Calling mce_syscore_suspend+0x0/0x40
<7>[18121.777119] Calling timekeeping_syscore_suspend+0x0/0x10
<7>[18121.777165] Calling irq_gc_suspend+0x0/0x80
<7>[18121.777173] Calling ioapic_suspend+0x0/0x10
<7>[18121.777306] Calling i8259A_suspend+0x0/0x30
<7>[18121.777320] Calling perf_ibs_suspend+0x0/0x40
<7>[18121.777328] Calling amd_iommu_suspend+0x0/0x50
<7>[18121.777452] Calling fw_suspend+0x0/0x20
<7>[18121.777475] Calling acpi_save_bm_rld+0x0/0x30
<7>[18121.777491] Calling lapic_suspend+0x0/0x170
<7>[18121.777666] PM: hibernation: Creating image
<6>[18121.778021] ACPI: PM: Restoring platform NVS memory
<6>[18121.778989] ACPI: EC: EC started
<7>[18121.778992] Calling lapic_resume+0x0/0x2b0
<7>[18121.779442] Calling acpi_restore_bm_rld+0x0/0x70
<7>[18121.779452] Calling irqrouter_resume+0x0/0x90
<7>[18121.779456] Calling amd_iommu_resume+0x0/0x60
<7>[18121.779866] Calling perf_ibs_resume+0x0/0x30
<6>[18121.779870] LVT offset 0 assigned for vector 0x400
<7>[18121.779872] Calling i8259A_resume+0x0/0x40
<7>[18121.780022] Calling i8237A_resume+0x0/0xb0
<7>[18121.780071] Calling ioapic_resume+0x0/0xd0
<7>[18121.780170] Calling irq_gc_resume+0x0/0x70
<7>[18121.780174] Calling irq_pm_syscore_resume+0x0/0x20
<7>[18121.780219] Calling timekeeping_syscore_resume+0x0/0x10
<7>[18121.780260] Timekeeping suspended for 119.938 seconds
<7>[18121.780273] Calling init_counter_refs+0x0/0x40
<7>[18121.780276] Calling mce_syscore_resume+0x0/0x50
<7>[18121.780436] Calling microcode_bsp_syscore_resume+0x0/0x20
<7>[18121.780440] Calling kvm_resume+0x0/0x40 [kvm]
<6>[18121.780537] Enabling non-boot CPUs ...
<6>[18121.780597] smpboot: Booting Node 0 Processor 1 APIC 0x1
<6>[18121.783734] Spectre V2 : Update user space SMT mitigation: STIBP always-on
<6>[18121.783762] CPU1 is up
<6>[18121.783811] smpboot: Booting Node 0 Processor 2 APIC 0x2
<6>[18121.786535] CPU2 is up
<6>[18121.786571] smpboot: Booting Node 0 Processor 3 APIC 0x3
<6>[18121.789293] CPU3 is up
<6>[18121.789348] smpboot: Booting Node 0 Processor 4 APIC 0x4
<6>[18121.792255] CPU4 is up
<6>[18121.792298] smpboot: Booting Node 0 Processor 5 APIC 0x5
<6>[18121.795343] CPU5 is up
<6>[18121.795468] smpboot: Booting Node 0 Processor 6 APIC 0x6
<6>[18121.798429] CPU6 is up
<6>[18121.798494] smpboot: Booting Node 0 Processor 7 APIC 0x7
<6>[18121.801376] CPU7 is up
<6>[18121.801427] smpboot: Booting Node 0 Processor 8 APIC 0x8
<6>[18121.804329] CPU8 is up
<6>[18121.804383] smpboot: Booting Node 0 Processor 9 APIC 0x9
<6>[18121.807351] CPU9 is up
<6>[18121.807401] smpboot: Booting Node 0 Processor 10 APIC 0xa
<6>[18121.810357] CPU10 is up
<6>[18121.810409] smpboot: Booting Node 0 Processor 11 APIC 0xb
<6>[18121.813465] CPU11 is up
<6>[18121.817080] ACPI: PM: Waking up from system sleep state S4
<6>[18121.836649] ACPI: EC: interrupt unblocked
<7>[18121.838726] PM: noirq restore of devices complete after 13.581 msecs
<7>[18121.838806] Setting wake for GPIO 8 to disable
<7>[18121.840341] PM: early restore of devices complete after 1.526 msecs
<7>[18122.664568] PM: hibernation: Need to copy 3287840 pages
<7>[18122.664573] PM: hibernation: Normal pages needed: 3287840 + 1024, available pages: 4918445
<3>[18125.674742] mt7921e 0000:01:00.0: Message 00020007 (seq 12) timeout
<3>[18125.674779] mt7921e 0000:01:00.0: PM: dpm_run_callback(): pci_pm_restore returns -110
<3>[18125.674804] mt7921e 0000:01:00.0: PM: failed to restore: error -110
<6>[18125.675558] amdgpu 0000:c1:00.0: [drm] PCIE GART of 512M enabled (table at 0x000000801FD00000).
<6>[18125.675606] amdgpu 0000:c1:00.0: PSP is resuming...
<6>[18125.685419] nvme nvme0: 12/0/0 default/read/poll queues
<6>[18125.699662] amdgpu 0000:c1:00.0: reserve 0x4000000 from 0x8018000000 for PSP TMR
<6>[18125.749690] mt7921e 0000:01:00.0: HW/SW Version: 0x8a108a10, Build Time: 20260224103145a
<6>[18126.120675] mt7921e 0000:01:00.0: WM Firmware Version: ____000000, Build Time: 20260224103233
<6>[18126.420101] amdgpu 0000:c1:00.0: RAS: optional ras ta ucode is not available
<6>[18126.428356] amdgpu 0000:c1:00.0: RAP: optional rap ta ucode is not available
<6>[18126.428359] amdgpu 0000:c1:00.0: SECUREDISPLAY: optional securedisplay ta ucode is not available
<6>[18126.428364] amdgpu 0000:c1:00.0: SMU is resuming...
<6>[18126.454354] amdgpu 0000:c1:00.0: SMU is resumed successfully!
<6>[18126.462252] amdgpu 0000:c1:00.0: [drm] DMUB hardware initialized: version=0x08005B00
<6>[18126.584219] amdgpu 0000:c1:00.0: [drm] Applying panel backlight quirk, min_brightness: 0
<6>[18126.739842] amdgpu 0000:c1:00.0: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
<6>[18126.739851] amdgpu 0000:c1:00.0: ring comp_1.0.0 uses VM inv eng 1 on hub 0
<6>[18126.739854] amdgpu 0000:c1:00.0: ring comp_1.1.0 uses VM inv eng 4 on hub 0
<6>[18126.739856] amdgpu 0000:c1:00.0: ring comp_1.2.0 uses VM inv eng 6 on hub 0
<6>[18126.739859] amdgpu 0000:c1:00.0: ring comp_1.3.0 uses VM inv eng 7 on hub 0
<6>[18126.739861] amdgpu 0000:c1:00.0: ring comp_1.0.1 uses VM inv eng 8 on hub 0
<6>[18126.739864] amdgpu 0000:c1:00.0: ring comp_1.1.1 uses VM inv eng 9 on hub 0
<6>[18126.739866] amdgpu 0000:c1:00.0: ring comp_1.2.1 uses VM inv eng 10 on hub 0
<6>[18126.739869] amdgpu 0000:c1:00.0: ring comp_1.3.1 uses VM inv eng 11 on hub 0
<6>[18126.739872] amdgpu 0000:c1:00.0: ring sdma0 uses VM inv eng 12 on hub 0
<6>[18126.739874] amdgpu 0000:c1:00.0: ring vcn_unified_0 uses VM inv eng 0 on hub 8
<6>[18126.739877] amdgpu 0000:c1:00.0: ring jpeg_dec uses VM inv eng 1 on hub 8
<6>[18126.739880] amdgpu 0000:c1:00.0: ring mes_kiq_3.1.0 uses VM inv eng 13 on hub 0
<5>[18126.790444] usb usb1: root hub lost power or was reset
<5>[18126.790456] usb usb2: root hub lost power or was reset
<5>[18126.791927] usb usb3: root hub lost power or was reset
<5>[18126.791933] usb usb4: root hub lost power or was reset
<5>[18126.892169] usb usb5: root hub lost power or was reset
<5>[18126.892181] usb usb6: root hub lost power or was reset
<5>[18126.893082] usb usb7: root hub lost power or was reset
<5>[18126.893087] usb usb8: root hub lost power or was reset
<6>[18126.893875] ACPI: EC: event unblocked
<4>[18127.699355] queueing ieee80211 work while going to suspend
<6>[18127.950129] usb 3-1: reset high-speed USB device number 2 using xhci_hcd
<4>[18128.115716] usb 1-4: WARN: invalid context state for evaluate context command.
<6>[18128.227881] usb 1-4: reset full-speed USB device number 2 using xhci_hcd
<6>[18128.491149] usb 1-5: reset high-speed USB device number 3 using xhci_hcd
<7>[18128.714799] PM: restore of devices complete after 6108.790 msecs
<6>[18128.714811] wlp1s0: Driver requested disconnection from AP 00:00:00:00:00:00
<7>[18128.714856] GFP mask restored
<7>[18128.724963] PM: hibernation: Hibernation image restored successfully.
<7>[18128.725207] PM: hibernation: Basic memory bitmaps freed
<6>[18128.725435] OOM killer enabled.
<6>[18128.725440] Restarting tasks: Starting
<6>[18128.726644] Restarting tasks: Done
<6>[18128.726657] efivarfs: resyncing variable state
<6>[18128.726941] efivarfs: removing variable HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
<6>[18128.733920] Bluetooth: hci0: HW/SW Version: 0x008a008a, Build Time: 20260224103448
<6>[18128.738089] efivarfs: finished resyncing variable state
<6>[18128.740179] PM: hibernation: hibernation exit
<6>[18129.788738] input: vicinae-snippet-virtual-keyboard as /devices/virtual/input/input17
<6>[18131.007916] Bluetooth: hci0: Device setup in 2222536 usecs
<4>[18131.007927] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
<6>[18131.067476] Bluetooth: MGMT ver 1.23
<6>[18131.270602] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[18131.760146] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[18131.769794] wlp1s0: authenticated
<6>[18131.770474] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[18131.790254] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=4)
<6>[18131.823336] wlp1s0: associated
<7>[18132.078642] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<6>[18429.144258] wlp1s0: deauthenticating from 94:cd:fd:f8:f6:87 by local choice (Reason: 3=DEAUTH_LEAVING)
<6>[18429.616406] PM: suspend entry (s2idle)
<6>[18429.619956] Filesystems sync: 0.003 seconds
<6>[18430.031846] Freezing user space processes
<6>[18430.033005] Freezing user space processes completed (elapsed 0.001 seconds)
<6>[18430.033010] OOM killer disabled.
<6>[18430.033012] Freezing remaining freezable tasks
<6>[18430.033961] Freezing remaining freezable tasks completed (elapsed 0.000 seconds)
<7>[18430.038213] GFP mask restricted
<4>[18430.051289] queueing ieee80211 work while going to suspend
<7>[18430.607549] PM: suspend of devices complete after 569.330 msecs
<7>[18430.607562] PM: start suspend of devices complete after 573.595 msecs
<7>[18430.609181] Clearing debounce for GPIO #0 during suspend.
<7>[18430.609190] Disabling GPIO #5 interrupt for suspend.
<7>[18430.609198] Disabling GPIO #8 interrupt for suspend.
<7>[18430.609215] Disabling GPIO #84 interrupt for suspend.
<7>[18430.609609] PM: late suspend of devices complete after 2.041 msecs
<7>[18430.609646] Setting wake for GPIO 8 to enable
<6>[18430.656166] ACPI: EC: interrupt blocked
<7>[18430.932362] PM: noirq suspend of devices complete after 322.518 msecs
<6>[18430.933276] ACPI: \_SB_.PEP_: Successfully transitioned to state screen off
<6>[18431.146563] ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 ms entry
<6>[18431.147688] ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 entry
<7>[18431.148328] PM: suspend-to-idle
<7>[18431.148374] amd_pmc: SMU idlemask s0i3: 0x3ffb3ebd
<7>[20229.356609] Timekeeping suspended for 1798.630 seconds
<7>[20229.356662] PM: Triggering wakeup from IRQ 9
<7>[20229.356774] ACPI: PM: ACPI fixed event wakeup
<7>[20229.356783] PM: resume from suspend-to-idle
<6>[20229.358435] ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 exit
<6>[20229.359569] ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 ms exit
<6>[20229.360456] ACPI: \_SB_.PEP_: Successfully transitioned to state screen on
<6>[20230.021171] ACPI: EC: interrupt unblocked
<7>[20230.066059] PM: noirq resume of devices complete after 705.593 msecs
<7>[20230.066246] Setting wake for GPIO 8 to disable
<7>[20230.069320] PM: early resume of devices complete after 3.013 msecs
<6>[20230.123919] amdgpu 0000:c1:00.0: [drm] PCIE GART of 512M enabled (table at 0x000000801FD00000).
<6>[20230.124027] amdgpu 0000:c1:00.0: SMU is resuming...
<6>[20230.124337] nvme nvme0: 12/0/0 default/read/poll queues
<6>[20230.127051] amdgpu 0000:c1:00.0: SMU is resumed successfully!
<6>[20230.254372] amdgpu 0000:c1:00.0: [drm] Applying panel backlight quirk, min_brightness: 0
<6>[20230.455966] amdgpu 0000:c1:00.0: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
<6>[20230.455974] amdgpu 0000:c1:00.0: ring comp_1.0.0 uses VM inv eng 1 on hub 0
<6>[20230.455978] amdgpu 0000:c1:00.0: ring comp_1.1.0 uses VM inv eng 4 on hub 0
<6>[20230.455980] amdgpu 0000:c1:00.0: ring comp_1.2.0 uses VM inv eng 6 on hub 0
<6>[20230.455983] amdgpu 0000:c1:00.0: ring comp_1.3.0 uses VM inv eng 7 on hub 0
<6>[20230.455985] amdgpu 0000:c1:00.0: ring comp_1.0.1 uses VM inv eng 8 on hub 0
<6>[20230.455988] amdgpu 0000:c1:00.0: ring comp_1.1.1 uses VM inv eng 9 on hub 0
<6>[20230.455990] amdgpu 0000:c1:00.0: ring comp_1.2.1 uses VM inv eng 10 on hub 0
<6>[20230.455993] amdgpu 0000:c1:00.0: ring comp_1.3.1 uses VM inv eng 11 on hub 0
<6>[20230.455995] amdgpu 0000:c1:00.0: ring sdma0 uses VM inv eng 12 on hub 0
<6>[20230.455998] amdgpu 0000:c1:00.0: ring vcn_unified_0 uses VM inv eng 0 on hub 8
<6>[20230.456001] amdgpu 0000:c1:00.0: ring jpeg_dec uses VM inv eng 1 on hub 8
<6>[20230.456003] amdgpu 0000:c1:00.0: ring mes_kiq_3.1.0 uses VM inv eng 13 on hub 0
<7>[20231.184760] PM: resume of devices complete after 1115.427 msecs
<7>[20231.185012] GFP mask restored
<6>[20231.194019] OOM killer enabled.
<6>[20231.194022] Restarting tasks: Starting
<6>[20231.194840] Restarting tasks: Done
<6>[20231.194852] efivarfs: resyncing variable state
<6>[20231.206279] efivarfs: finished resyncing variable state
<5>[20231.206365] random: crng reseeded on system resumption
<6>[20231.211974] PM: suspend exit
<6>[20231.359169] PM: hibernation: hibernation entry
<6>[20231.408854] Filesystems sync: 0.013 seconds
<6>[20231.409242] Freezing user space processes
<6>[20231.410864] Freezing user space processes completed (elapsed 0.001 seconds)
<6>[20231.410869] OOM killer disabled.
<7>[20231.411265] PM: hibernation: Marking nosave pages: [mem 0x00000000-0x00000fff]
<7>[20231.411270] PM: hibernation: Marking nosave pages: [mem 0x0009f000-0x000fffff]
<7>[20231.411274] PM: hibernation: Marking nosave pages: [mem 0x09b00000-0x09dfffff]
<7>[20231.411286] PM: hibernation: Marking nosave pages: [mem 0x09f00000-0x09f3bfff]
<7>[20231.411289] PM: hibernation: Marking nosave pages: [mem 0x49b50000-0x4bd4ffff]
<7>[20231.411404] PM: hibernation: Marking nosave pages: [mem 0x4bd69000-0x4bd6cfff]
<7>[20231.411406] PM: hibernation: Marking nosave pages: [mem 0x4bd6f000-0x4bd6ffff]
<7>[20231.411408] PM: hibernation: Marking nosave pages: [mem 0x52e9f000-0x52f1ffff]
<7>[20231.411412] PM: hibernation: Marking nosave pages: [mem 0x54967000-0x54967fff]
<7>[20231.411414] PM: hibernation: Marking nosave pages: [mem 0x57f7f000-0x5affefff]
<7>[20231.411577] PM: hibernation: Marking nosave pages: [mem 0x5b000000-0xffffffff]
<7>[20231.411862] PM: hibernation: Basic memory bitmaps created
<6>[20231.413989] PM: hibernation: Preallocating image memory
<6>[20235.372228] PM: hibernation: Allocated 3173282 pages for snapshot
<6>[20235.372233] PM: hibernation: Allocated 12693128 kbytes in 3.95 seconds (3213.45 MB/s)
<6>[20235.372237] Freezing remaining freezable tasks
<6>[20235.373588] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
<7>[20236.052767] GFP mask restricted
<4>[20236.062902] queueing ieee80211 work while going to suspend
<7>[20237.973450] PM: freeze of devices complete after 1920.679 msecs
<7>[20237.974355] Disabling GPIO #0 interrupt for hibernate.
<7>[20237.974364] Clearing debounce for GPIO #0 during hibernate.
<7>[20237.974371] Disabling GPIO #2 interrupt for hibernate.
<7>[20237.974377] Disabling GPIO #5 interrupt for hibernate.
<7>[20237.974383] Disabling GPIO #6 interrupt for hibernate.
<7>[20237.974388] Disabling GPIO #8 interrupt for hibernate.
<7>[20237.974396] Disabling GPIO #54 interrupt for hibernate.
<7>[20237.974403] Disabling GPIO #58 interrupt for hibernate.
<7>[20237.974408] Disabling GPIO #59 interrupt for hibernate.
<7>[20237.974414] Disabling GPIO #61 interrupt for hibernate.
<7>[20237.974419] Disabling GPIO #62 interrupt for hibernate.
<7>[20237.974426] Disabling GPIO #84 interrupt for hibernate.
<7>[20237.974886] PM: late freeze of devices complete after 1.422 msecs
<7>[20237.974898] Setting wake for GPIO 8 to enable
<6>[20237.975872] ACPI: EC: interrupt blocked
<7>[20238.000493] PM: noirq freeze of devices complete after 25.400 msecs
<7>[20238.000500] PM: end freeze of devices complete after 27.036 msecs
<6>[20238.000505] ACPI: PM: Preparing to enter system sleep state S4
<6>[20238.312774] ACPI: EC: event blocked
<6>[20238.312783] ACPI: EC: EC stopped
<6>[20238.312786] ACPI: PM: Saving platform NVS memory
<6>[20238.323120] Disabling non-boot CPUs ...
<6>[20238.325576] smpboot: CPU 11 is now offline
<6>[20238.329339] smpboot: CPU 10 is now offline
<6>[20238.332819] smpboot: CPU 9 is now offline
<6>[20238.336178] smpboot: CPU 8 is now offline
<6>[20238.339837] smpboot: CPU 7 is now offline
<6>[20238.343627] smpboot: CPU 6 is now offline
<6>[20238.347525] smpboot: CPU 5 is now offline
<6>[20238.350816] smpboot: CPU 4 is now offline
<6>[20238.354060] smpboot: CPU 3 is now offline
<6>[20238.357498] smpboot: CPU 2 is now offline
<6>[20238.361013] smpboot: CPU 1 is now offline
<6>[20238.362214] Spectre V2 : Update user space SMT mitigation: STIBP off
<7>[20238.362281] Checking wakeup interrupts
<7>[20238.362285] Calling kvm_suspend+0x0/0x30 [kvm]
<7>[20238.362382] Calling mce_syscore_suspend+0x0/0x40
<7>[20238.362393] Calling timekeeping_syscore_suspend+0x0/0x10
<7>[20238.362444] Calling irq_gc_suspend+0x0/0x80
<7>[20238.362452] Calling ioapic_suspend+0x0/0x10
<7>[20238.362619] Calling i8259A_suspend+0x0/0x30
<7>[20238.362634] Calling perf_ibs_suspend+0x0/0x40
<7>[20238.362642] Calling amd_iommu_suspend+0x0/0x50
<7>[20238.362737] Calling fw_suspend+0x0/0x20
<7>[20238.362756] Calling acpi_save_bm_rld+0x0/0x30
<7>[20238.362772] Calling lapic_suspend+0x0/0x170
<7>[20238.362919] PM: hibernation: Creating image
<6>[20238.363262] ACPI: PM: Restoring platform NVS memory
<6>[20238.364260] ACPI: EC: EC started
<7>[20238.364263] Calling lapic_resume+0x0/0x2b0
<7>[20238.364712] Calling acpi_restore_bm_rld+0x0/0x70
<7>[20238.364722] Calling irqrouter_resume+0x0/0x90
<7>[20238.364726] Calling amd_iommu_resume+0x0/0x60
<7>[20238.365136] Calling perf_ibs_resume+0x0/0x30
<6>[20238.365140] LVT offset 0 assigned for vector 0x400
<7>[20238.365141] Calling i8259A_resume+0x0/0x40
<7>[20238.365291] Calling i8237A_resume+0x0/0xb0
<7>[20238.365339] Calling ioapic_resume+0x0/0xd0
<7>[20238.365438] Calling irq_gc_resume+0x0/0x70
<7>[20238.365441] Calling irq_pm_syscore_resume+0x0/0x20
<7>[20238.365483] Calling timekeeping_syscore_resume+0x0/0x10
<7>[20238.365527] Timekeeping suspended for 16714.994 seconds
<7>[20238.365540] Calling init_counter_refs+0x0/0x40
<7>[20238.365543] Calling mce_syscore_resume+0x0/0x50
<7>[20238.366200] Calling microcode_bsp_syscore_resume+0x0/0x20
<7>[20238.366204] Calling kvm_resume+0x0/0x40 [kvm]
<6>[20238.366451] Enabling non-boot CPUs ...
<6>[20238.366510] smpboot: Booting Node 0 Processor 1 APIC 0x1
<6>[20238.369647] Spectre V2 : Update user space SMT mitigation: STIBP always-on
<6>[20238.369674] CPU1 is up
<6>[20238.369732] smpboot: Booting Node 0 Processor 2 APIC 0x2
<6>[20238.372460] CPU2 is up
<6>[20238.372497] smpboot: Booting Node 0 Processor 3 APIC 0x3
<6>[20238.375221] CPU3 is up
<6>[20238.375263] smpboot: Booting Node 0 Processor 4 APIC 0x4
<6>[20238.378181] CPU4 is up
<6>[20238.378220] smpboot: Booting Node 0 Processor 5 APIC 0x5
<6>[20238.381169] CPU5 is up
<6>[20238.381215] smpboot: Booting Node 0 Processor 6 APIC 0x6
<6>[20238.384155] CPU6 is up
<6>[20238.384194] smpboot: Booting Node 0 Processor 7 APIC 0x7
<6>[20238.387116] CPU7 is up
<6>[20238.387154] smpboot: Booting Node 0 Processor 8 APIC 0x8
<6>[20238.390127] CPU8 is up
<6>[20238.390170] smpboot: Booting Node 0 Processor 9 APIC 0x9
<6>[20238.393136] CPU9 is up
<6>[20238.393174] smpboot: Booting Node 0 Processor 10 APIC 0xa
<6>[20238.396176] CPU10 is up
<6>[20238.396216] smpboot: Booting Node 0 Processor 11 APIC 0xb
<6>[20238.399194] CPU11 is up
<6>[20238.402507] ACPI: PM: Waking up from system sleep state S4
<6>[20238.422996] ACPI: EC: interrupt unblocked
<7>[20238.424971] PM: noirq restore of devices complete after 14.567 msecs
<7>[20238.425048] Setting wake for GPIO 8 to disable
<7>[20238.426665] PM: early restore of devices complete after 1.606 msecs
<7>[20239.266115] PM: hibernation: Need to copy 2797841 pages
<7>[20239.266120] PM: hibernation: Normal pages needed: 2797841 + 1024, available pages: 5408436
<3>[20242.221049] mt7921e 0000:01:00.0: Message 00020007 (seq 15) timeout
<3>[20242.221090] mt7921e 0000:01:00.0: PM: dpm_run_callback(): pci_pm_restore returns -110
<3>[20242.221116] mt7921e 0000:01:00.0: PM: failed to restore: error -110
<6>[20242.221929] amdgpu 0000:c1:00.0: [drm] PCIE GART of 512M enabled (table at 0x000000801FD00000).
<6>[20242.221980] amdgpu 0000:c1:00.0: PSP is resuming...
<6>[20242.230168] nvme nvme0: 12/0/0 default/read/poll queues
<6>[20242.244955] amdgpu 0000:c1:00.0: reserve 0x4000000 from 0x8018000000 for PSP TMR
<6>[20242.295984] mt7921e 0000:01:00.0: HW/SW Version: 0x8a108a10, Build Time: 20260224103145a
<6>[20242.666440] mt7921e 0000:01:00.0: WM Firmware Version: ____000000, Build Time: 20260224103233
<6>[20242.965330] amdgpu 0000:c1:00.0: RAS: optional ras ta ucode is not available
<6>[20242.973696] amdgpu 0000:c1:00.0: RAP: optional rap ta ucode is not available
<6>[20242.973700] amdgpu 0000:c1:00.0: SECUREDISPLAY: optional securedisplay ta ucode is not available
<6>[20242.973704] amdgpu 0000:c1:00.0: SMU is resuming...
<6>[20242.999562] amdgpu 0000:c1:00.0: SMU is resumed successfully!
<6>[20243.007512] amdgpu 0000:c1:00.0: [drm] DMUB hardware initialized: version=0x08005B00
<6>[20243.130512] amdgpu 0000:c1:00.0: [drm] Applying panel backlight quirk, min_brightness: 0
<6>[20243.424624] amdgpu 0000:c1:00.0: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
<6>[20243.424634] amdgpu 0000:c1:00.0: ring comp_1.0.0 uses VM inv eng 1 on hub 0
<6>[20243.424637] amdgpu 0000:c1:00.0: ring comp_1.1.0 uses VM inv eng 4 on hub 0
<6>[20243.424640] amdgpu 0000:c1:00.0: ring comp_1.2.0 uses VM inv eng 6 on hub 0
<6>[20243.424642] amdgpu 0000:c1:00.0: ring comp_1.3.0 uses VM inv eng 7 on hub 0
<6>[20243.424645] amdgpu 0000:c1:00.0: ring comp_1.0.1 uses VM inv eng 8 on hub 0
<6>[20243.424647] amdgpu 0000:c1:00.0: ring comp_1.1.1 uses VM inv eng 9 on hub 0
<6>[20243.424649] amdgpu 0000:c1:00.0: ring comp_1.2.1 uses VM inv eng 10 on hub 0
<6>[20243.424652] amdgpu 0000:c1:00.0: ring comp_1.3.1 uses VM inv eng 11 on hub 0
<6>[20243.424655] amdgpu 0000:c1:00.0: ring sdma0 uses VM inv eng 12 on hub 0
<6>[20243.424657] amdgpu 0000:c1:00.0: ring vcn_unified_0 uses VM inv eng 0 on hub 8
<6>[20243.424660] amdgpu 0000:c1:00.0: ring jpeg_dec uses VM inv eng 1 on hub 8
<6>[20243.424663] amdgpu 0000:c1:00.0: ring mes_kiq_3.1.0 uses VM inv eng 13 on hub 0
<5>[20243.567047] usb usb1: root hub lost power or was reset
<5>[20243.567061] usb usb2: root hub lost power or was reset
<5>[20243.568512] usb usb3: root hub lost power or was reset
<5>[20243.568517] usb usb4: root hub lost power or was reset
<5>[20243.676703] usb usb5: root hub lost power or was reset
<5>[20243.676718] usb usb6: root hub lost power or was reset
<5>[20243.677643] usb usb7: root hub lost power or was reset
<5>[20243.677649] usb usb8: root hub lost power or was reset
<6>[20243.678403] ACPI: EC: event unblocked
<4>[20244.236434] queueing ieee80211 work while going to suspend
<6>[20244.832308] usb 3-1: reset high-speed USB device number 2 using xhci_hcd
<4>[20244.994582] usb 1-4: WARN: invalid context state for evaluate context command.
<6>[20245.106469] usb 1-4: reset full-speed USB device number 2 using xhci_hcd
<6>[20245.372343] usb 1-5: reset high-speed USB device number 3 using xhci_hcd
<7>[20245.590020] PM: restore of devices complete after 6409.972 msecs
<6>[20245.590024] wlp1s0: Driver requested disconnection from AP 00:00:00:00:00:00
<7>[20245.590082] GFP mask restored
<7>[20245.599205] PM: hibernation: Hibernation image restored successfully.
<7>[20245.599680] PM: hibernation: Basic memory bitmaps freed
<6>[20245.599963] OOM killer enabled.
<6>[20245.599967] Restarting tasks: Starting
<6>[20245.603162] Restarting tasks: Done
<6>[20245.603175] efivarfs: resyncing variable state
<6>[20245.603251] efivarfs: removing variable HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
<6>[20245.606983] Bluetooth: hci0: HW/SW Version: 0x008a008a, Build Time: 20260224103448
<6>[20245.614342] efivarfs: finished resyncing variable state
<6>[20245.616162] PM: hibernation: hibernation exit
<6>[20245.712775] usb 7-1: new high-speed USB device number 4 using xhci_hcd
<6>[20245.838214] usb 7-1: New USB device found, idVendor=0451, idProduct=8442, bcdDevice= 1.00
<6>[20245.838223] usb 7-1: New USB device strings: Mfr=0, Product=0, SerialNumber=1
<6>[20245.838226] usb 7-1: SerialNumber: B20A00799F64
<4>[20245.861141] amdgpu 0000:c1:00.0: [drm] REG_WAIT timeout 1us * 100 tries - dcn31_program_compbuf_size line:141
<6>[20245.887344] hub 7-1:1.0: USB hub found
<6>[20245.890762] hub 7-1:1.0: 6 ports detected
<6>[20246.238760] usb 7-1.5: new high-speed USB device number 5 using xhci_hcd
<6>[20246.324457] usb 7-1.5: New USB device found, idVendor=0451, idProduct=82ff, bcdDevice= 2.00
<6>[20246.324465] usb 7-1.5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
<6>[20246.369897] hid-generic 0003:0451:82FF.0005: hiddev96,hidraw0: USB HID v1.11 Device [HID 0451:82ff] on usb-0000:c3:00.4-1.5/input0
<6>[20246.677462] input: vicinae-snippet-virtual-keyboard as /devices/virtual/input/input18
<6>[20247.858011] Bluetooth: hci0: Device setup in 2200426 usecs
<4>[20247.858025] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
<6>[20247.915007] Bluetooth: MGMT ver 1.23
<6>[20248.110263] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[20248.588881] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[20248.598021] wlp1s0: authenticated
<6>[20248.599761] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[20248.618466] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=5)
<6>[20248.649563] wlp1s0: associated
<7>[20248.649648] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<4>[20439.058668] amdgpu 0000:c1:00.0: [drm] REG_WAIT timeout 1us * 100 tries - dcn31_program_compbuf_size line:142
<6>[20558.547449] wlp1s0: disconnect from AP 94:cd:fd:f8:f6:87 for new auth to 94:cd:fd:f8:f6:88
<6>[20558.716966] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[20559.220044] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[20561.577202] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[20561.594517] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[20561.700328] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 2/3)
<6>[20561.736272] wlp1s0: authenticated
<6>[20561.736827] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[20561.757341] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=5)
<6>[20561.792937] wlp1s0: associated
<7>[20561.793029] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<4>[20814.415191] amdgpu 0000:c1:00.0: [drm] REG_WAIT timeout 1us * 100 tries - dcn31_program_compbuf_size line:142
<6>[20871.485354] wlp1s0: disconnect from AP 94:cd:fd:f8:f6:87 for new auth to 94:cd:fd:f8:f6:88
<6>[20871.640652] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[20871.678339] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[20876.361106] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[20876.374111] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[20876.479568] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 2/3)
<6>[20876.519215] wlp1s0: authenticated
<6>[20876.520553] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[20876.539429] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=5)
<6>[20876.576072] wlp1s0: associated
<7>[20876.669614] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<6>[21186.091881] wlp1s0: disconnect from AP 94:cd:fd:f8:f6:87 for new auth to 94:cd:fd:f8:f6:88
<6>[21186.255474] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[21186.296542] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[21190.993259] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[21191.008454] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[21191.116470] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 2/3)
<6>[21191.144210] wlp1s0: authenticated
<6>[21191.145099] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[21191.165680] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=5)
<6>[21191.202957] wlp1s0: associated
<7>[21191.226597] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<4>[21352.165453] amdgpu 0000:c1:00.0: [drm] REG_WAIT timeout 1us * 100 tries - dcn31_program_compbuf_size line:142
<6>[21500.812129] wlp1s0: disconnect from AP 94:cd:fd:f8:f6:87 for new auth to 94:cd:fd:f8:f6:88
<6>[21500.977925] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[21501.018629] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[21505.707323] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[21505.723105] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[21505.817524] wlp1s0: authenticated
<6>[21505.818750] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[21505.839295] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=5)
<6>[21505.880998] wlp1s0: associated
<7>[21506.000761] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<4>[21739.390579] amdgpu 0000:c1:00.0: [drm] REG_WAIT timeout 1us * 100 tries - dcn31_program_compbuf_size line:142
<6>[22124.586723] wlp1s0: disconnect from AP 94:cd:fd:f8:f6:87 for new auth to 94:cd:fd:f8:f6:88
<6>[22124.750356] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[22124.791472] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[22129.465864] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[22129.481616] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[22129.583851] wlp1s0: authenticated
<6>[22129.586117] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[22129.607305] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=5)
<6>[22129.648524] wlp1s0: associated
<7>[22129.648633] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<4>[23163.816658] amdgpu 0000:c1:00.0: [drm] REG_WAIT timeout 1us * 100 tries - dcn31_program_compbuf_size line:142
<6>[23651.494642] input: WH-1000XM5 (AVRCP) as /devices/virtual/input/input19
<3>[23672.322504] Bluetooth: hci0: ACL packet for unknown connection handle 3837
<6>[23985.706212] wlp1s0: disconnect from AP 94:cd:fd:f8:f6:87 for new auth to 94:cd:fd:f8:f6:88
<6>[23985.869139] wlp1s0: authenticate with 94:cd:fd:f8:f6:88 (local address=04:68:74:dd:fa:93)
<6>[23985.909526] wlp1s0: send auth to 94:cd:fd:f8:f6:88 (try 1/3)
<6>[23990.573813] wlp1s0: authenticate with 94:cd:fd:f8:f6:87 (local address=04:68:74:dd:fa:93)
<6>[23990.588646] wlp1s0: send auth to 94:cd:fd:f8:f6:87 (try 1/3)
<6>[23990.672166] wlp1s0: authenticated
<6>[23990.672770] wlp1s0: associate with 94:cd:fd:f8:f6:87 (try 1/3)
<6>[23990.698512] wlp1s0: RX AssocResp from 94:cd:fd:f8:f6:87 (capab=0x1111 status=0 aid=5)
<6>[23990.736320] wlp1s0: associated
<7>[23990.736389] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 94:cd:fd:f8:f6:87
<6>[24306.897065] input: WH-1000XM5 (AVRCP) as /devices/virtual/input/input20
<4>[24510.614323] amdgpu 0000:c1:00.0: [drm] REG_WAIT timeout 1us * 100 tries - dcn31_program_compbuf_size line:142
<4>[24739.814545] amdgpu 0000:c1:00.0: [drm] REG_WAIT timeout 1us * 100 tries - dcn31_program_compbuf_size line:142
<6>[25146.622344] usb 7-1: USB disconnect, device number 4
<6>[25146.622360] usb 7-1.5: USB disconnect, device number 5
<6>[25463.597919] wlp1s0: deauthenticating from 94:cd:fd:f8:f6:87 by local choice (Reason: 3=DEAUTH_LEAVING)
<6>[25464.066321] PM: suspend entry (s2idle)
<6>[25464.070662] Filesystems sync: 0.004 seconds
<4>[25464.401351] amdgpu 0000:c1:00.0: [drm] REG_WAIT timeout 1us * 100 tries - dcn31_program_compbuf_size line:141
<6>[25464.558449] Freezing user space processes
<6>[25464.560454] Freezing user space processes completed (elapsed 0.001 seconds)
<6>[25464.560467] OOM killer disabled.
<6>[25464.560471] Freezing remaining freezable tasks
<6>[25464.562751] Freezing remaining freezable tasks completed (elapsed 0.002 seconds)
<7>[25464.569736] GFP mask restricted
<4>[25464.582111] queueing ieee80211 work while going to suspend
<7>[25465.173054] PM: suspend of devices complete after 603.332 msecs
<7>[25465.173069] PM: start suspend of devices complete after 610.321 msecs
<7>[25465.174912] Clearing debounce for GPIO #0 during suspend.
<7>[25465.174922] Disabling GPIO #5 interrupt for suspend.
<7>[25465.174930] Disabling GPIO #8 interrupt for suspend.
<7>[25465.174950] Disabling GPIO #84 interrupt for suspend.
<7>[25465.175387] PM: late suspend of devices complete after 2.310 msecs
<7>[25465.175433] Setting wake for GPIO 8 to enable
<6>[25465.221900] ACPI: EC: interrupt blocked
<7>[25465.525684] PM: noirq suspend of devices complete after 350.053 msecs
<6>[25465.526624] ACPI: \_SB_.PEP_: Successfully transitioned to state screen off
<6>[25465.740329] ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 ms entry
<6>[25465.741463] ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 entry
<7>[25465.742126] PM: suspend-to-idle
<7>[25465.742181] amd_pmc: SMU idlemask s0i3: 0x1ffbbebd
<7>[27264.609126] Timekeeping suspended for 1799.090 seconds
<7>[27264.609169] PM: Triggering wakeup from IRQ 9
<7>[27264.609265] ACPI: PM: ACPI fixed event wakeup
<7>[27264.609275] PM: resume from suspend-to-idle
<6>[27264.611359] ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 exit
<6>[27264.612503] ACPI: \_SB_.PEP_: Successfully transitioned to state lps0 ms exit
<6>[27264.613392] ACPI: \_SB_.PEP_: Successfully transitioned to state screen on
<6>[27265.278886] ACPI: EC: interrupt unblocked
<7>[27265.323668] PM: noirq resume of devices complete after 710.296 msecs
<7>[27265.323845] Setting wake for GPIO 8 to disable
<7>[27265.326968] PM: early resume of devices complete after 3.073 msecs
<6>[27265.381576] amdgpu 0000:c1:00.0: [drm] PCIE GART of 512M enabled (table at 0x000000801FD00000).
<6>[27265.381683] amdgpu 0000:c1:00.0: SMU is resuming...
<6>[27265.382237] nvme nvme0: 12/0/0 default/read/poll queues
<6>[27265.385941] amdgpu 0000:c1:00.0: SMU is resumed successfully!
<6>[27265.513289] amdgpu 0000:c1:00.0: [drm] Applying panel backlight quirk, min_brightness: 0
<6>[27265.714910] amdgpu 0000:c1:00.0: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
<6>[27265.714919] amdgpu 0000:c1:00.0: ring comp_1.0.0 uses VM inv eng 1 on hub 0
<6>[27265.714923] amdgpu 0000:c1:00.0: ring comp_1.1.0 uses VM inv eng 4 on hub 0
<6>[27265.714925] amdgpu 0000:c1:00.0: ring comp_1.2.0 uses VM inv eng 6 on hub 0
<6>[27265.714928] amdgpu 0000:c1:00.0: ring comp_1.3.0 uses VM inv eng 7 on hub 0
<6>[27265.714930] amdgpu 0000:c1:00.0: ring comp_1.0.1 uses VM inv eng 8 on hub 0
<6>[27265.714933] amdgpu 0000:c1:00.0: ring comp_1.1.1 uses VM inv eng 9 on hub 0
<6>[27265.714935] amdgpu 0000:c1:00.0: ring comp_1.2.1 uses VM inv eng 10 on hub 0
<6>[27265.714938] amdgpu 0000:c1:00.0: ring comp_1.3.1 uses VM inv eng 11 on hub 0
<6>[27265.714940] amdgpu 0000:c1:00.0: ring sdma0 uses VM inv eng 12 on hub 0
<6>[27265.714943] amdgpu 0000:c1:00.0: ring vcn_unified_0 uses VM inv eng 0 on hub 8
<6>[27265.714946] amdgpu 0000:c1:00.0: ring jpeg_dec uses VM inv eng 1 on hub 8
<6>[27265.714949] amdgpu 0000:c1:00.0: ring mes_kiq_3.1.0 uses VM inv eng 13 on hub 0
<7>[27266.443147] PM: resume of devices complete after 1116.212 msecs
<7>[27266.443412] GFP mask restored
<6>[27266.451029] OOM killer enabled.
<6>[27266.451032] Restarting tasks: Starting
<6>[27266.453634] Restarting tasks: Done
<6>[27266.453651] efivarfs: resyncing variable state
<6>[27266.465934] efivarfs: finished resyncing variable state
<5>[27266.466068] random: crng reseeded on system resumption
<6>[27266.472515] PM: suspend exit
<6>[27266.697808] PM: hibernation: hibernation entry
<6>[27266.756251] Filesystems sync: 0.014 seconds
<6>[27266.756702] Freezing user space processes
<6>[27266.758806] Freezing user space processes completed (elapsed 0.002 seconds)
<6>[27266.758812] OOM killer disabled.
<7>[27266.759681] PM: hibernation: Marking nosave pages: [mem 0x00000000-0x00000fff]
<7>[27266.759687] PM: hibernation: Marking nosave pages: [mem 0x0009f000-0x000fffff]
<7>[27266.759691] PM: hibernation: Marking nosave pages: [mem 0x09b00000-0x09dfffff]
<7>[27266.759704] PM: hibernation: Marking nosave pages: [mem 0x09f00000-0x09f3bfff]
<7>[27266.759707] PM: hibernation: Marking nosave pages: [mem 0x49b50000-0x4bd4ffff]
<7>[27266.759823] PM: hibernation: Marking nosave pages: [mem 0x4bd69000-0x4bd6cfff]
<7>[27266.759826] PM: hibernation: Marking nosave pages: [mem 0x4bd6f000-0x4bd6ffff]
<7>[27266.759829] PM: hibernation: Marking nosave pages: [mem 0x52e9f000-0x52f1ffff]
<7>[27266.759833] PM: hibernation: Marking nosave pages: [mem 0x54967000-0x54967fff]
<7>[27266.759836] PM: hibernation: Marking nosave pages: [mem 0x57f7f000-0x5affefff]
<7>[27266.760037] PM: hibernation: Marking nosave pages: [mem 0x5b000000-0xffffffff]
<7>[27266.760525] PM: hibernation: Basic memory bitmaps created
<6>[27266.764839] PM: hibernation: Preallocating image memory
<6>[27276.126978] PM: hibernation: Allocated 2788900 pages for snapshot
<6>[27276.126986] PM: hibernation: Allocated 11155600 kbytes in 9.36 seconds (1191.83 MB/s)
<6>[27276.126990] Freezing remaining freezable tasks
<6>[27276.128653] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
<7>[27276.185273] GFP mask restricted
<4>[27276.196618] queueing ieee80211 work while going to suspend
<4>[27285.758418] ------------[ cut here ]------------
<4>[27285.758422] WARNING: drivers/gpu/drm/ttm/ttm_resource.c:235 at ttm_resource_add_bulk_move+0x90/0xa0 [ttm], CPU#11: systemd-sleep/686828
<4>[27285.758435] Modules linked in: xt_connmark xt_mark ccm rfcomm snd_seq_dummy snd_hrtimer snd_seq snd_seq_device af_packet xt_MASQUERADE xfrm_user xfrm_algo xt_set ip_set nft_chain_nat xt_addrtype overlay tun uhid cmac algif_hash algif_skcipher af_alg bnep nls_iso8859_1 nls_cp437 vfat fat snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof hid_sensor_als hid_sensor_trigger kfifo_buf snd_sof_utils hid_sensor_iio_common snd_pci_ps snd_soc_acpi_amd_match industrialio snd_soc_acpi_amd_sdca_quirks snd_amd_sdw_acpi soundwire_amd snd_hda_codec_alc269 soundwire_generic_allocation mousedev snd_hda_codec_realtek_lib soundwire_bus snd_hda_scodec_component snd_soc_sdca snd_hda_codec_generic snd_hda_codec_atihdmi mt7921e mt7921_common snd_hda_codec_hdmi joydev snd_soc_core mt792x_lib snd_hda_intel spd5118 hid_multitouch hid_sensor_hub snd_compress mt76_connac_lib ac97_bus intel_rapl_msr snd_hda_codec snd_pcm_dmaengine mt76
<4>[27285.758496] snd_rpl_pci_acp6x snd_hda_core btusb mac80211 snd_acp_pci uvcvideo btrtl snd_amd_acpi_mach btintel videobuf2_vmalloc snd_acp_legacy_common snd_intel_dspcfg uvc btmtk snd_intel_sdw_acpi snd_pci_acp6x videobuf2_memops snd_hwdep sp5100_tco btbcm videobuf2_v4l2 snd_pci_acp5x watchdog snd_pcm cfg80211 videobuf2_common snd_rn_pci_acp3x amd_pmf snd_acp_config edac_mce_amd bluetooth i2c_piix4 videodev amdtee ucsi_acpi edac_core snd_soc_acpi typec_ucsi amd_sfh snd_timer amd_atl intel_rapl_common ecdh_generic snd rfkill ghash_clmulni_intel aesni_intel rapl wmi_bmof roles framework_laptop(O) tiny_power_button platform_profile onboard_usb_dev k10temp mc ecc amdxdna i2c_smbus libarc4 snd_pci_acp3x soundcore thermal rtc_cmos typec ac i2c_hid_acpi tee i2c_hid button amd_pmc evdev input_leds mac_hid serio_raw xt_conntrack xt_tcpudp ip6t_rpfilter ipt_rpfilter xt_pkttype nft_compat leds_cros_ec cros_charge_control cros_kbd_led_backlight led_class_multicolor cros_ec_sysfs cros_ec_hwmon battery led_class cros_ec_debugfs
<4>[27285.758570] gpio_cros_ec cros_ec_chardev nf_tables cros_ec_dev sch_fq_codel kvm_amd ccp kvm xt_nat br_netfilter x_tables nf_nat bridge nf_conntrack cros_ec_lpcs irqbypass ramoops cros_ec nf_defrag_ipv6 cros_ec_proto nf_defrag_ipv4 stp uinput veth reed_solomon loop llc fuse configfs nfnetlink zram 842_decompress 842_compress lz4hc_compress lz4_compress dmi_sysfs ext4 mbcache jbd2 hid_generic usbhid atkbd hid libps2 vivaldi_fmap nvme thunderbolt nvme_core xhci_pci nvme_keyring i8042 nvme_auth xhci_hcd hkdf serio amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec drm_panel_backlight_quirks gpu_sched drm_suballoc_helper video wmi drm_buddy drm_display_helper dm_mod cec crc16 efivarfs autofs4
<4>[27285.758633] CPU: 11 UID: 0 PID: 686828 Comm: systemd-sleep Tainted: G W O 7.0.11 #1-NixOS PREEMPT(lazy)
<4>[27285.758637] Tainted: [W]=WARN, [O]=OOT_MODULE
<4>[27285.758638] Hardware name: Framework Laptop 13 (AMD Ryzen 7040Series)/FRANMDCP05, BIOS 03.17 11/14/2025
<4>[27285.758640] RIP: 0010:ttm_resource_add_bulk_move+0x90/0xa0 [ttm]
<4>[27285.758646] Code: c6 e9 b4 fa ff ff 48 8b 96 a8 01 00 00 48 85 d2 74 b8 f6 42 08 21 74 b2 e9 18 05 8a d9 48 89 07 48 89 47 08 e9 0c 05 8a d9 90 <0f> 0b 90 eb cf 66 66 2e 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
<4>[27285.758648] RSP: 0018:ffffd18aa49a77a8 EFLAGS: 00010287
<4>[27285.758651] RAX: ffff8bd321281b40 RBX: ffff8bd4d1882048 RCX: ffff8bd32d6e0148
<4>[27285.758652] RDX: ffff8bd326800048 RSI: 0000000000000000 RDI: ffff8bd4fb697968
<4>[27285.758654] RBP: ffffd18aa49a77f0 R08: 0000000000000000 R09: ffff8bd321281b40
<4>[27285.758655] R10: ffff8bd30004b700 R11: 0000000000000000 R12: ffffd18aa49a78f0
<4>[27285.758657] R13: ffff8bd31ba0ee38 R14: ffffd18aa49a7928 R15: ffff8bd4d1882048
<4>[27285.758658] FS: 00007b5e32dfdcc0(0000) GS:ffff8bdac1e5d000(0000) knlGS:0000000000000000
<4>[27285.758660] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[27285.758662] CR2: 00007f83dfb96dd0 CR3: 000000037d596000 CR4: 0000000000f50ef0
<4>[27285.758664] PKRU: 55555554
<4>[27285.758665] Call Trace:
<4>[27285.758667] <TASK>
<4>[27285.758669] ttm_resource_alloc+0xf4/0x120 [ttm]
<4>[27285.758676] ttm_bo_swapout_cb+0x10f/0x270 [ttm]
<4>[27285.758683] ttm_lru_walk_for_evict+0xad/0x1d0 [ttm]
<4>[27285.758690] ttm_bo_swapout+0x5c/0x80 [ttm]
<4>[27285.758697] ttm_device_prepare_hibernation+0x71/0xb0 [ttm]
<4>[27285.758705] amdgpu_device_evict_resources+0x62/0x80 [amdgpu]
<4>[27285.759085] amdgpu_device_suspend+0x13a/0x240 [amdgpu]
<4>[27285.759252] amdgpu_pmops_freeze+0x1e/0x70 [amdgpu]
<4>[27285.759418] pci_pm_freeze+0x5b/0xe0
<4>[27285.759423] ? __pfx_pci_pm_freeze+0x10/0x10
<4>[27285.759425] dpm_run_callback+0x51/0x180
<4>[27285.759431] device_suspend+0x1aa/0x5e0
<4>[27285.759434] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.759438] ? dpm_async_suspend_superior+0x98/0x160
<4>[27285.759442] dpm_suspend+0x1e2/0x400
<4>[27285.759445] hibernation_snapshot+0xdc/0x560
<4>[27285.759450] hibernate.cold+0x110/0x495
<4>[27285.759455] state_store+0xc3/0xd0
<4>[27285.759458] kernfs_fop_write_iter+0x189/0x230
<4>[27285.759464] vfs_write+0x260/0x480
<4>[27285.759470] ksys_write+0x73/0xf0
<4>[27285.759473] do_syscall_64+0x10f/0x1540
<4>[27285.759477] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.759480] ? do_syscall_64+0x14e/0x1540
<4>[27285.759485] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.759487] ? kmem_cache_free+0xb7/0x410
<4>[27285.759491] ? do_sys_openat2+0x9a/0xe0
<4>[27285.759495] ? do_sys_openat2+0x9a/0xe0
<4>[27285.759498] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.759501] ? __x64_sys_fcntl+0x80/0x110
<4>[27285.759504] ? __x64_sys_openat+0x61/0xa0
<4>[27285.759508] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.759510] ? do_syscall_64+0x14e/0x1540
<4>[27285.759513] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.759515] ? __sys_sendmsg+0x8a/0xf0
<4>[27285.759522] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.759524] ? do_syscall_64+0x14e/0x1540
<4>[27285.759526] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.759528] ? irqentry_exit+0x7a/0x730
<4>[27285.759531] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.759534] ? __irq_exit_rcu+0x4c/0xf0
<4>[27285.759538] entry_SYSCALL_64_after_hwframe+0x77/0x7f
<4>[27285.759541] RIP: 0033:0x7b5e3249a03e
<4>[27285.759567] Code: 03 00 00 59 5e 48 83 f8 fc 74 39 c9 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3 0f 1f 00 48 8b 45 10 0f 05 <c9> 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3
<4>[27285.759569] RSP: 002b:00007ffd50928d60 EFLAGS: 00000202 ORIG_RAX: 0000000000000001
<4>[27285.759572] RAX: ffffffffffffffda RBX: 0000000000000005 RCX: 00007b5e3249a03e
<4>[27285.759574] RDX: 0000000000000005 RSI: 000059e5cc690f70 RDI: 0000000000000008
<4>[27285.759575] RBP: 00007ffd50928d70 R08: 0000000000000000 R09: 0000000000000000
<4>[27285.759576] R10: 0000000000000000 R11: 0000000000000202 R12: 000059e5cc67f310
<4>[27285.759578] R13: 000059e5cc690f70 R14: 0000000000000005 R15: 00007ffd50928f00
<4>[27285.759582] </TASK>
<4>[27285.759583] ---[ end trace 0000000000000000 ]---
<4>[27285.759699] ------------[ cut here ]------------
<4>[27285.759700] WARNING: drivers/gpu/drm/ttm/ttm_resource.c:235 at ttm_resource_add_bulk_move+0x90/0xa0 [ttm], CPU#11: systemd-sleep/686828
<4>[27285.759707] Modules linked in: xt_connmark xt_mark ccm rfcomm snd_seq_dummy snd_hrtimer snd_seq snd_seq_device af_packet xt_MASQUERADE xfrm_user xfrm_algo xt_set ip_set nft_chain_nat xt_addrtype overlay tun uhid cmac algif_hash algif_skcipher af_alg bnep nls_iso8859_1 nls_cp437 vfat fat snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof hid_sensor_als hid_sensor_trigger kfifo_buf snd_sof_utils hid_sensor_iio_common snd_pci_ps snd_soc_acpi_amd_match industrialio snd_soc_acpi_amd_sdca_quirks snd_amd_sdw_acpi soundwire_amd snd_hda_codec_alc269 soundwire_generic_allocation mousedev snd_hda_codec_realtek_lib soundwire_bus snd_hda_scodec_component snd_soc_sdca snd_hda_codec_generic snd_hda_codec_atihdmi mt7921e mt7921_common snd_hda_codec_hdmi joydev snd_soc_core mt792x_lib snd_hda_intel spd5118 hid_multitouch hid_sensor_hub snd_compress mt76_connac_lib ac97_bus intel_rapl_msr snd_hda_codec snd_pcm_dmaengine mt76
<4>[27285.759763] snd_rpl_pci_acp6x snd_hda_core btusb mac80211 snd_acp_pci uvcvideo btrtl snd_amd_acpi_mach btintel videobuf2_vmalloc snd_acp_legacy_common snd_intel_dspcfg uvc btmtk snd_intel_sdw_acpi snd_pci_acp6x videobuf2_memops snd_hwdep sp5100_tco btbcm videobuf2_v4l2 snd_pci_acp5x watchdog snd_pcm cfg80211 videobuf2_common snd_rn_pci_acp3x amd_pmf snd_acp_config edac_mce_amd bluetooth i2c_piix4 videodev amdtee ucsi_acpi edac_core snd_soc_acpi typec_ucsi amd_sfh snd_timer amd_atl intel_rapl_common ecdh_generic snd rfkill ghash_clmulni_intel aesni_intel rapl wmi_bmof roles framework_laptop(O) tiny_power_button platform_profile onboard_usb_dev k10temp mc ecc amdxdna i2c_smbus libarc4 snd_pci_acp3x soundcore thermal rtc_cmos typec ac i2c_hid_acpi tee i2c_hid button amd_pmc evdev input_leds mac_hid serio_raw xt_conntrack xt_tcpudp ip6t_rpfilter ipt_rpfilter xt_pkttype nft_compat leds_cros_ec cros_charge_control cros_kbd_led_backlight led_class_multicolor cros_ec_sysfs cros_ec_hwmon battery led_class cros_ec_debugfs
<4>[27285.759835] gpio_cros_ec cros_ec_chardev nf_tables cros_ec_dev sch_fq_codel kvm_amd ccp kvm xt_nat br_netfilter x_tables nf_nat bridge nf_conntrack cros_ec_lpcs irqbypass ramoops cros_ec nf_defrag_ipv6 cros_ec_proto nf_defrag_ipv4 stp uinput veth reed_solomon loop llc fuse configfs nfnetlink zram 842_decompress 842_compress lz4hc_compress lz4_compress dmi_sysfs ext4 mbcache jbd2 hid_generic usbhid atkbd hid libps2 vivaldi_fmap nvme thunderbolt nvme_core xhci_pci nvme_keyring i8042 nvme_auth xhci_hcd hkdf serio amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec drm_panel_backlight_quirks gpu_sched drm_suballoc_helper video wmi drm_buddy drm_display_helper dm_mod cec crc16 efivarfs autofs4
<4>[27285.759891] CPU: 11 UID: 0 PID: 686828 Comm: systemd-sleep Tainted: G W O 7.0.11 #1-NixOS PREEMPT(lazy)
<4>[27285.759894] Tainted: [W]=WARN, [O]=OOT_MODULE
<4>[27285.759896] Hardware name: Framework Laptop 13 (AMD Ryzen 7040Series)/FRANMDCP05, BIOS 03.17 11/14/2025
<4>[27285.759897] RIP: 0010:ttm_resource_add_bulk_move+0x90/0xa0 [ttm]
<4>[27285.759901] Code: c6 e9 b4 fa ff ff 48 8b 96 a8 01 00 00 48 85 d2 74 b8 f6 42 08 21 74 b2 e9 18 05 8a d9 48 89 07 48 89 47 08 e9 0c 05 8a d9 90 <0f> 0b 90 eb cf 66 66 2e 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
<4>[27285.759903] RSP: 0018:ffffd18aa49a77a8 EFLAGS: 00010287
<4>[27285.759905] RAX: ffff8bd321281480 RBX: ffff8bd4fc984448 RCX: ffff8bd32d6e0148
<4>[27285.759906] RDX: ffff8bd326800048 RSI: 0000000000000000 RDI: ffff8bd4fb697968
<4>[27285.759908] RBP: ffffd18aa49a77f0 R08: 0000000000000000 R09: ffff8bd321281480
<4>[27285.759909] R10: ffff8bd30004b700 R11: 0000000000000000 R12: ffffd18aa49a78f0
<4>[27285.759910] R13: ffff8bd31ba0ee38 R14: ffffd18aa49a7928 R15: ffff8bd4fc984448
<4>[27285.759912] FS: 00007b5e32dfdcc0(0000) GS:ffff8bdac1e5d000(0000) knlGS:0000000000000000
<4>[27285.759913] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[27285.759915] CR2: 00007f83dfb96dd0 CR3: 000000037d596000 CR4: 0000000000f50ef0
<4>[27285.759916] PKRU: 55555554
<4>[27285.759918] Call Trace:
<4>[27285.759919] <TASK>
<4>[27285.759920] ttm_resource_alloc+0xf4/0x120 [ttm]
<4>[27285.759926] ttm_bo_swapout_cb+0x10f/0x270 [ttm]
<4>[27285.759933] ttm_lru_walk_for_evict+0xad/0x1d0 [ttm]
<4>[27285.759941] ttm_bo_swapout+0x5c/0x80 [ttm]
<4>[27285.759946] ttm_device_prepare_hibernation+0x71/0xb0 [ttm]
<4>[27285.759952] amdgpu_device_evict_resources+0x62/0x80 [amdgpu]
<4>[27285.760122] amdgpu_device_suspend+0x13a/0x240 [amdgpu]
<4>[27285.760284] amdgpu_pmops_freeze+0x1e/0x70 [amdgpu]
<4>[27285.760443] pci_pm_freeze+0x5b/0xe0
<4>[27285.760446] ? __pfx_pci_pm_freeze+0x10/0x10
<4>[27285.760448] dpm_run_callback+0x51/0x180
<4>[27285.760452] device_suspend+0x1aa/0x5e0
<4>[27285.760455] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.760458] ? dpm_async_suspend_superior+0x98/0x160
<4>[27285.760461] dpm_suspend+0x1e2/0x400
<4>[27285.760464] hibernation_snapshot+0xdc/0x560
<4>[27285.760468] hibernate.cold+0x110/0x495
<4>[27285.760471] state_store+0xc3/0xd0
<4>[27285.760475] kernfs_fop_write_iter+0x189/0x230
<4>[27285.760479] vfs_write+0x260/0x480
<4>[27285.760483] ksys_write+0x73/0xf0
<4>[27285.760486] do_syscall_64+0x10f/0x1540
<4>[27285.760489] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.760491] ? do_syscall_64+0x14e/0x1540
<4>[27285.760496] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.760499] ? kmem_cache_free+0xb7/0x410
<4>[27285.760501] ? do_sys_openat2+0x9a/0xe0
<4>[27285.760505] ? do_sys_openat2+0x9a/0xe0
<4>[27285.760508] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.760510] ? __x64_sys_fcntl+0x80/0x110
<4>[27285.760513] ? __x64_sys_openat+0x61/0xa0
<4>[27285.760516] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.760519] ? do_syscall_64+0x14e/0x1540
<4>[27285.760522] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.760524] ? __sys_sendmsg+0x8a/0xf0
<4>[27285.760529] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.760531] ? do_syscall_64+0x14e/0x1540
<4>[27285.760533] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.760536] ? irqentry_exit+0x7a/0x730
<4>[27285.760538] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.760540] ? __irq_exit_rcu+0x4c/0xf0
<4>[27285.760543] entry_SYSCALL_64_after_hwframe+0x77/0x7f
<4>[27285.760545] RIP: 0033:0x7b5e3249a03e
<4>[27285.760551] Code: 03 00 00 59 5e 48 83 f8 fc 74 39 c9 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3 0f 1f 00 48 8b 45 10 0f 05 <c9> 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3
<4>[27285.760553] RSP: 002b:00007ffd50928d60 EFLAGS: 00000202 ORIG_RAX: 0000000000000001
<4>[27285.760555] RAX: ffffffffffffffda RBX: 0000000000000005 RCX: 00007b5e3249a03e
<4>[27285.760557] RDX: 0000000000000005 RSI: 000059e5cc690f70 RDI: 0000000000000008
<4>[27285.760558] RBP: 00007ffd50928d70 R08: 0000000000000000 R09: 0000000000000000
<4>[27285.760559] R10: 0000000000000000 R11: 0000000000000202 R12: 000059e5cc67f310
<4>[27285.760561] R13: 000059e5cc690f70 R14: 0000000000000005 R15: 00007ffd50928f00
<4>[27285.760565] </TASK>
<4>[27285.760567] ---[ end trace 0000000000000000 ]---
<4>[27285.760676] ------------[ cut here ]------------
<4>[27285.760678] WARNING: drivers/gpu/drm/ttm/ttm_resource.c:235 at ttm_resource_add_bulk_move+0x90/0xa0 [ttm], CPU#11: systemd-sleep/686828
<4>[27285.760683] Modules linked in: xt_connmark xt_mark ccm rfcomm snd_seq_dummy snd_hrtimer snd_seq snd_seq_device af_packet xt_MASQUERADE xfrm_user xfrm_algo xt_set ip_set nft_chain_nat xt_addrtype overlay tun uhid cmac algif_hash algif_skcipher af_alg bnep nls_iso8859_1 nls_cp437 vfat fat snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof hid_sensor_als hid_sensor_trigger kfifo_buf snd_sof_utils hid_sensor_iio_common snd_pci_ps snd_soc_acpi_amd_match industrialio snd_soc_acpi_amd_sdca_quirks snd_amd_sdw_acpi soundwire_amd snd_hda_codec_alc269 soundwire_generic_allocation mousedev snd_hda_codec_realtek_lib soundwire_bus snd_hda_scodec_component snd_soc_sdca snd_hda_codec_generic snd_hda_codec_atihdmi mt7921e mt7921_common snd_hda_codec_hdmi joydev snd_soc_core mt792x_lib snd_hda_intel spd5118 hid_multitouch hid_sensor_hub snd_compress mt76_connac_lib ac97_bus intel_rapl_msr snd_hda_codec snd_pcm_dmaengine mt76
<4>[27285.760739] snd_rpl_pci_acp6x snd_hda_core btusb mac80211 snd_acp_pci uvcvideo btrtl snd_amd_acpi_mach btintel videobuf2_vmalloc snd_acp_legacy_common snd_intel_dspcfg uvc btmtk snd_intel_sdw_acpi snd_pci_acp6x videobuf2_memops snd_hwdep sp5100_tco btbcm videobuf2_v4l2 snd_pci_acp5x watchdog snd_pcm cfg80211 videobuf2_common snd_rn_pci_acp3x amd_pmf snd_acp_config edac_mce_amd bluetooth i2c_piix4 videodev amdtee ucsi_acpi edac_core snd_soc_acpi typec_ucsi amd_sfh snd_timer amd_atl intel_rapl_common ecdh_generic snd rfkill ghash_clmulni_intel aesni_intel rapl wmi_bmof roles framework_laptop(O) tiny_power_button platform_profile onboard_usb_dev k10temp mc ecc amdxdna i2c_smbus libarc4 snd_pci_acp3x soundcore thermal rtc_cmos typec ac i2c_hid_acpi tee i2c_hid button amd_pmc evdev input_leds mac_hid serio_raw xt_conntrack xt_tcpudp ip6t_rpfilter ipt_rpfilter xt_pkttype nft_compat leds_cros_ec cros_charge_control cros_kbd_led_backlight led_class_multicolor cros_ec_sysfs cros_ec_hwmon battery led_class cros_ec_debugfs
<4>[27285.760811] gpio_cros_ec cros_ec_chardev nf_tables cros_ec_dev sch_fq_codel kvm_amd ccp kvm xt_nat br_netfilter x_tables nf_nat bridge nf_conntrack cros_ec_lpcs irqbypass ramoops cros_ec nf_defrag_ipv6 cros_ec_proto nf_defrag_ipv4 stp uinput veth reed_solomon loop llc fuse configfs nfnetlink zram 842_decompress 842_compress lz4hc_compress lz4_compress dmi_sysfs ext4 mbcache jbd2 hid_generic usbhid atkbd hid libps2 vivaldi_fmap nvme thunderbolt nvme_core xhci_pci nvme_keyring i8042 nvme_auth xhci_hcd hkdf serio amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec drm_panel_backlight_quirks gpu_sched drm_suballoc_helper video wmi drm_buddy drm_display_helper dm_mod cec crc16 efivarfs autofs4
<4>[27285.760867] CPU: 11 UID: 0 PID: 686828 Comm: systemd-sleep Tainted: G W O 7.0.11 #1-NixOS PREEMPT(lazy)
<4>[27285.760870] Tainted: [W]=WARN, [O]=OOT_MODULE
<4>[27285.760871] Hardware name: Framework Laptop 13 (AMD Ryzen 7040Series)/FRANMDCP05, BIOS 03.17 11/14/2025
<4>[27285.760872] RIP: 0010:ttm_resource_add_bulk_move+0x90/0xa0 [ttm]
<4>[27285.760876] Code: c6 e9 b4 fa ff ff 48 8b 96 a8 01 00 00 48 85 d2 74 b8 f6 42 08 21 74 b2 e9 18 05 8a d9 48 89 07 48 89 47 08 e9 0c 05 8a d9 90 <0f> 0b 90 eb cf 66 66 2e 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
<4>[27285.760878] RSP: 0018:ffffd18aa49a77a8 EFLAGS: 00010287
<4>[27285.760880] RAX: ffff8bd321281f00 RBX: ffff8bd83d7e0048 RCX: ffff8bd32d6e0148
<4>[27285.760881] RDX: ffff8bd326800048 RSI: 0000000000000000 RDI: ffff8bd4fb697968
<4>[27285.760883] RBP: ffffd18aa49a77f0 R08: 0000000000000000 R09: ffff8bd321281f00
<4>[27285.760884] R10: ffff8bd30004b700 R11: 0000000000000000 R12: ffffd18aa49a78f0
<4>[27285.760885] R13: ffff8bd31ba0ee38 R14: ffffd18aa49a7928 R15: ffff8bd83d7e0048
<4>[27285.760887] FS: 00007b5e32dfdcc0(0000) GS:ffff8bdac1e5d000(0000) knlGS:0000000000000000
<4>[27285.760888] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[27285.760890] CR2: 00007f83dfb96dd0 CR3: 000000037d596000 CR4: 0000000000f50ef0
<4>[27285.760891] PKRU: 55555554
<4>[27285.760892] Call Trace:
<4>[27285.760894] <TASK>
<4>[27285.760895] ttm_resource_alloc+0xf4/0x120 [ttm]
<4>[27285.760900] ttm_bo_swapout_cb+0x10f/0x270 [ttm]
<4>[27285.760906] ttm_lru_walk_for_evict+0xad/0x1d0 [ttm]
<4>[27285.760913] ttm_bo_swapout+0x5c/0x80 [ttm]
<4>[27285.760918] ttm_device_prepare_hibernation+0x71/0xb0 [ttm]
<4>[27285.760924] amdgpu_device_evict_resources+0x62/0x80 [amdgpu]
<4>[27285.761087] amdgpu_device_suspend+0x13a/0x240 [amdgpu]
<4>[27285.761248] amdgpu_pmops_freeze+0x1e/0x70 [amdgpu]
<4>[27285.761412] pci_pm_freeze+0x5b/0xe0
<4>[27285.761414] ? __pfx_pci_pm_freeze+0x10/0x10
<4>[27285.761416] dpm_run_callback+0x51/0x180
<4>[27285.761420] device_suspend+0x1aa/0x5e0
<4>[27285.761423] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.761426] ? dpm_async_suspend_superior+0x98/0x160
<4>[27285.761429] dpm_suspend+0x1e2/0x400
<4>[27285.761432] hibernation_snapshot+0xdc/0x560
<4>[27285.761436] hibernate.cold+0x110/0x495
<4>[27285.761439] state_store+0xc3/0xd0
<4>[27285.761442] kernfs_fop_write_iter+0x189/0x230
<4>[27285.761446] vfs_write+0x260/0x480
<4>[27285.761451] ksys_write+0x73/0xf0
<4>[27285.761454] do_syscall_64+0x10f/0x1540
<4>[27285.761456] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.761459] ? do_syscall_64+0x14e/0x1540
<4>[27285.761464] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.761466] ? kmem_cache_free+0xb7/0x410
<4>[27285.761468] ? do_sys_openat2+0x9a/0xe0
<4>[27285.761472] ? do_sys_openat2+0x9a/0xe0
<4>[27285.761475] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.761478] ? __x64_sys_fcntl+0x80/0x110
<4>[27285.761480] ? __x64_sys_openat+0x61/0xa0
<4>[27285.761484] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.761486] ? do_syscall_64+0x14e/0x1540
<4>[27285.761489] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.761491] ? __sys_sendmsg+0x8a/0xf0
<4>[27285.761496] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.761498] ? do_syscall_64+0x14e/0x1540
<4>[27285.761500] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.761503] ? irqentry_exit+0x7a/0x730
<4>[27285.761505] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.761507] ? __irq_exit_rcu+0x4c/0xf0
<4>[27285.761510] entry_SYSCALL_64_after_hwframe+0x77/0x7f
<4>[27285.761513] RIP: 0033:0x7b5e3249a03e
<4>[27285.761518] Code: 03 00 00 59 5e 48 83 f8 fc 74 39 c9 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3 0f 1f 00 48 8b 45 10 0f 05 <c9> 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3
<4>[27285.761520] RSP: 002b:00007ffd50928d60 EFLAGS: 00000202 ORIG_RAX: 0000000000000001
<4>[27285.761522] RAX: ffffffffffffffda RBX: 0000000000000005 RCX: 00007b5e3249a03e
<4>[27285.761523] RDX: 0000000000000005 RSI: 000059e5cc690f70 RDI: 0000000000000008
<4>[27285.761524] RBP: 00007ffd50928d70 R08: 0000000000000000 R09: 0000000000000000
<4>[27285.761526] R10: 0000000000000000 R11: 0000000000000202 R12: 000059e5cc67f310
<4>[27285.761527] R13: 000059e5cc690f70 R14: 0000000000000005 R15: 00007ffd50928f00
<4>[27285.761532] </TASK>
<4>[27285.761533] ---[ end trace 0000000000000000 ]---
<4>[27285.761640] ------------[ cut here ]------------
<4>[27285.761642] WARNING: drivers/gpu/drm/ttm/ttm_resource.c:235 at ttm_resource_add_bulk_move+0x90/0xa0 [ttm], CPU#11: systemd-sleep/686828
<4>[27285.761647] Modules linked in: xt_connmark xt_mark ccm rfcomm snd_seq_dummy snd_hrtimer snd_seq snd_seq_device af_packet xt_MASQUERADE xfrm_user xfrm_algo xt_set ip_set nft_chain_nat xt_addrtype overlay tun uhid cmac algif_hash algif_skcipher af_alg bnep nls_iso8859_1 nls_cp437 vfat fat snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof hid_sensor_als hid_sensor_trigger kfifo_buf snd_sof_utils hid_sensor_iio_common snd_pci_ps snd_soc_acpi_amd_match industrialio snd_soc_acpi_amd_sdca_quirks snd_amd_sdw_acpi soundwire_amd snd_hda_codec_alc269 soundwire_generic_allocation mousedev snd_hda_codec_realtek_lib soundwire_bus snd_hda_scodec_component snd_soc_sdca snd_hda_codec_generic snd_hda_codec_atihdmi mt7921e mt7921_common snd_hda_codec_hdmi joydev snd_soc_core mt792x_lib snd_hda_intel spd5118 hid_multitouch hid_sensor_hub snd_compress mt76_connac_lib ac97_bus intel_rapl_msr snd_hda_codec snd_pcm_dmaengine mt76
<4>[27285.761703] snd_rpl_pci_acp6x snd_hda_core btusb mac80211 snd_acp_pci uvcvideo btrtl snd_amd_acpi_mach btintel videobuf2_vmalloc snd_acp_legacy_common snd_intel_dspcfg uvc btmtk snd_intel_sdw_acpi snd_pci_acp6x videobuf2_memops snd_hwdep sp5100_tco btbcm videobuf2_v4l2 snd_pci_acp5x watchdog snd_pcm cfg80211 videobuf2_common snd_rn_pci_acp3x amd_pmf snd_acp_config edac_mce_amd bluetooth i2c_piix4 videodev amdtee ucsi_acpi edac_core snd_soc_acpi typec_ucsi amd_sfh snd_timer amd_atl intel_rapl_common ecdh_generic snd rfkill ghash_clmulni_intel aesni_intel rapl wmi_bmof roles framework_laptop(O) tiny_power_button platform_profile onboard_usb_dev k10temp mc ecc amdxdna i2c_smbus libarc4 snd_pci_acp3x soundcore thermal rtc_cmos typec ac i2c_hid_acpi tee i2c_hid button amd_pmc evdev input_leds mac_hid serio_raw xt_conntrack xt_tcpudp ip6t_rpfilter ipt_rpfilter xt_pkttype nft_compat leds_cros_ec cros_charge_control cros_kbd_led_backlight led_class_multicolor cros_ec_sysfs cros_ec_hwmon battery led_class cros_ec_debugfs
<4>[27285.761770] gpio_cros_ec cros_ec_chardev nf_tables cros_ec_dev sch_fq_codel kvm_amd ccp kvm xt_nat br_netfilter x_tables nf_nat bridge nf_conntrack cros_ec_lpcs irqbypass ramoops cros_ec nf_defrag_ipv6 cros_ec_proto nf_defrag_ipv4 stp uinput veth reed_solomon loop llc fuse configfs nfnetlink zram 842_decompress 842_compress lz4hc_compress lz4_compress dmi_sysfs ext4 mbcache jbd2 hid_generic usbhid atkbd hid libps2 vivaldi_fmap nvme thunderbolt nvme_core xhci_pci nvme_keyring i8042 nvme_auth xhci_hcd hkdf serio amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec drm_panel_backlight_quirks gpu_sched drm_suballoc_helper video wmi drm_buddy drm_display_helper dm_mod cec crc16 efivarfs autofs4
<4>[27285.761830] CPU: 11 UID: 0 PID: 686828 Comm: systemd-sleep Tainted: G W O 7.0.11 #1-NixOS PREEMPT(lazy)
<4>[27285.761833] Tainted: [W]=WARN, [O]=OOT_MODULE
<4>[27285.761834] Hardware name: Framework Laptop 13 (AMD Ryzen 7040Series)/FRANMDCP05, BIOS 03.17 11/14/2025
<4>[27285.761835] RIP: 0010:ttm_resource_add_bulk_move+0x90/0xa0 [ttm]
<4>[27285.761839] Code: c6 e9 b4 fa ff ff 48 8b 96 a8 01 00 00 48 85 d2 74 b8 f6 42 08 21 74 b2 e9 18 05 8a d9 48 89 07 48 89 47 08 e9 0c 05 8a d9 90 <0f> 0b 90 eb cf 66 66 2e 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
<4>[27285.761841] RSP: 0018:ffffd18aa49a77a8 EFLAGS: 00010287
<4>[27285.761843] RAX: ffff8bd3212816c0 RBX: ffff8bd4fb8c2048 RCX: ffff8bd32d6e0148
<4>[27285.761844] RDX: ffff8bd326800048 RSI: 0000000000000000 RDI: ffff8bd4fb697968
<4>[27285.761845] RBP: ffffd18aa49a77f0 R08: 0000000000000000 R09: ffff8bd3212816c0
<4>[27285.761847] R10: ffff8bd30004b700 R11: 0000000000000000 R12: ffffd18aa49a78f0
<4>[27285.761848] R13: ffff8bd31ba0ee38 R14: ffffd18aa49a7928 R15: ffff8bd4fb8c2048
<4>[27285.761849] FS: 00007b5e32dfdcc0(0000) GS:ffff8bdac1e5d000(0000) knlGS:0000000000000000
<4>[27285.761851] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[27285.761852] CR2: 00007f83dfb96dd0 CR3: 000000037d596000 CR4: 0000000000f50ef0
<4>[27285.761854] PKRU: 55555554
<4>[27285.761855] Call Trace:
<4>[27285.761856] <TASK>
<4>[27285.761857] ttm_resource_alloc+0xf4/0x120 [ttm]
<4>[27285.761863] ttm_bo_swapout_cb+0x10f/0x270 [ttm]
<4>[27285.761869] ttm_lru_walk_for_evict+0xad/0x1d0 [ttm]
<4>[27285.761875] ttm_bo_swapout+0x5c/0x80 [ttm]
<4>[27285.761880] ttm_device_prepare_hibernation+0x71/0xb0 [ttm]
<4>[27285.761886] amdgpu_device_evict_resources+0x62/0x80 [amdgpu]
<4>[27285.762048] amdgpu_device_suspend+0x13a/0x240 [amdgpu]
<4>[27285.762219] amdgpu_pmops_freeze+0x1e/0x70 [amdgpu]
<4>[27285.762378] pci_pm_freeze+0x5b/0xe0
<4>[27285.762381] ? __pfx_pci_pm_freeze+0x10/0x10
<4>[27285.762383] dpm_run_callback+0x51/0x180
<4>[27285.762387] device_suspend+0x1aa/0x5e0
<4>[27285.762390] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.762392] ? dpm_async_suspend_superior+0x98/0x160
<4>[27285.762396] dpm_suspend+0x1e2/0x400
<4>[27285.762399] hibernation_snapshot+0xdc/0x560
<4>[27285.762402] hibernate.cold+0x110/0x495
<4>[27285.762406] state_store+0xc3/0xd0
<4>[27285.762409] kernfs_fop_write_iter+0x189/0x230
<4>[27285.762413] vfs_write+0x260/0x480
<4>[27285.762417] ksys_write+0x73/0xf0
<4>[27285.762420] do_syscall_64+0x10f/0x1540
<4>[27285.762423] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.762425] ? do_syscall_64+0x14e/0x1540
<4>[27285.762431] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.762433] ? kmem_cache_free+0xb7/0x410
<4>[27285.762435] ? do_sys_openat2+0x9a/0xe0
<4>[27285.762439] ? do_sys_openat2+0x9a/0xe0
<4>[27285.762442] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.762445] ? __x64_sys_fcntl+0x80/0x110
<4>[27285.762447] ? __x64_sys_openat+0x61/0xa0
<4>[27285.762451] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.762453] ? do_syscall_64+0x14e/0x1540
<4>[27285.762456] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.762458] ? __sys_sendmsg+0x8a/0xf0
<4>[27285.762463] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.762465] ? do_syscall_64+0x14e/0x1540
<4>[27285.762467] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.762470] ? irqentry_exit+0x7a/0x730
<4>[27285.762472] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.762474] ? __irq_exit_rcu+0x4c/0xf0
<4>[27285.762477] entry_SYSCALL_64_after_hwframe+0x77/0x7f
<4>[27285.762480] RIP: 0033:0x7b5e3249a03e
<4>[27285.762485] Code: 03 00 00 59 5e 48 83 f8 fc 74 39 c9 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3 0f 1f 00 48 8b 45 10 0f 05 <c9> 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3
<4>[27285.762487] RSP: 002b:00007ffd50928d60 EFLAGS: 00000202 ORIG_RAX: 0000000000000001
<4>[27285.762489] RAX: ffffffffffffffda RBX: 0000000000000005 RCX: 00007b5e3249a03e
<4>[27285.762490] RDX: 0000000000000005 RSI: 000059e5cc690f70 RDI: 0000000000000008
<4>[27285.762491] RBP: 00007ffd50928d70 R08: 0000000000000000 R09: 0000000000000000
<4>[27285.762493] R10: 0000000000000000 R11: 0000000000000202 R12: 000059e5cc67f310
<4>[27285.762494] R13: 000059e5cc690f70 R14: 0000000000000005 R15: 00007ffd50928f00
<4>[27285.762499] </TASK>
<4>[27285.762500] ---[ end trace 0000000000000000 ]---
<4>[27285.762607] ------------[ cut here ]------------
<4>[27285.762609] WARNING: drivers/gpu/drm/ttm/ttm_resource.c:235 at ttm_resource_add_bulk_move+0x90/0xa0 [ttm], CPU#11: systemd-sleep/686828
<4>[27285.762614] Modules linked in: xt_connmark xt_mark ccm rfcomm snd_seq_dummy snd_hrtimer snd_seq snd_seq_device af_packet xt_MASQUERADE xfrm_user xfrm_algo xt_set ip_set nft_chain_nat xt_addrtype overlay tun uhid cmac algif_hash algif_skcipher af_alg bnep nls_iso8859_1 nls_cp437 vfat fat snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof hid_sensor_als hid_sensor_trigger kfifo_buf snd_sof_utils hid_sensor_iio_common snd_pci_ps snd_soc_acpi_amd_match industrialio snd_soc_acpi_amd_sdca_quirks snd_amd_sdw_acpi soundwire_amd snd_hda_codec_alc269 soundwire_generic_allocation mousedev snd_hda_codec_realtek_lib soundwire_bus snd_hda_scodec_component snd_soc_sdca snd_hda_codec_generic snd_hda_codec_atihdmi mt7921e mt7921_common snd_hda_codec_hdmi joydev snd_soc_core mt792x_lib snd_hda_intel spd5118 hid_multitouch hid_sensor_hub snd_compress mt76_connac_lib ac97_bus intel_rapl_msr snd_hda_codec snd_pcm_dmaengine mt76
<4>[27285.762670] snd_rpl_pci_acp6x snd_hda_core btusb mac80211 snd_acp_pci uvcvideo btrtl snd_amd_acpi_mach btintel videobuf2_vmalloc snd_acp_legacy_common snd_intel_dspcfg uvc btmtk snd_intel_sdw_acpi snd_pci_acp6x videobuf2_memops snd_hwdep sp5100_tco btbcm videobuf2_v4l2 snd_pci_acp5x watchdog snd_pcm cfg80211 videobuf2_common snd_rn_pci_acp3x amd_pmf snd_acp_config edac_mce_amd bluetooth i2c_piix4 videodev amdtee ucsi_acpi edac_core snd_soc_acpi typec_ucsi amd_sfh snd_timer amd_atl intel_rapl_common ecdh_generic snd rfkill ghash_clmulni_intel aesni_intel rapl wmi_bmof roles framework_laptop(O) tiny_power_button platform_profile onboard_usb_dev k10temp mc ecc amdxdna i2c_smbus libarc4 snd_pci_acp3x soundcore thermal rtc_cmos typec ac i2c_hid_acpi tee i2c_hid button amd_pmc evdev input_leds mac_hid serio_raw xt_conntrack xt_tcpudp ip6t_rpfilter ipt_rpfilter xt_pkttype nft_compat leds_cros_ec cros_charge_control cros_kbd_led_backlight led_class_multicolor cros_ec_sysfs cros_ec_hwmon battery led_class cros_ec_debugfs
<4>[27285.762736] gpio_cros_ec cros_ec_chardev nf_tables cros_ec_dev sch_fq_codel kvm_amd ccp kvm xt_nat br_netfilter x_tables nf_nat bridge nf_conntrack cros_ec_lpcs irqbypass ramoops cros_ec nf_defrag_ipv6 cros_ec_proto nf_defrag_ipv4 stp uinput veth reed_solomon loop llc fuse configfs nfnetlink zram 842_decompress 842_compress lz4hc_compress lz4_compress dmi_sysfs ext4 mbcache jbd2 hid_generic usbhid atkbd hid libps2 vivaldi_fmap nvme thunderbolt nvme_core xhci_pci nvme_keyring i8042 nvme_auth xhci_hcd hkdf serio amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec drm_panel_backlight_quirks gpu_sched drm_suballoc_helper video wmi drm_buddy drm_display_helper dm_mod cec crc16 efivarfs autofs4
<4>[27285.762796] CPU: 11 UID: 0 PID: 686828 Comm: systemd-sleep Tainted: G W O 7.0.11 #1-NixOS PREEMPT(lazy)
<4>[27285.762799] Tainted: [W]=WARN, [O]=OOT_MODULE
<4>[27285.762800] Hardware name: Framework Laptop 13 (AMD Ryzen 7040Series)/FRANMDCP05, BIOS 03.17 11/14/2025
<4>[27285.762802] RIP: 0010:ttm_resource_add_bulk_move+0x90/0xa0 [ttm]
<4>[27285.762806] Code: c6 e9 b4 fa ff ff 48 8b 96 a8 01 00 00 48 85 d2 74 b8 f6 42 08 21 74 b2 e9 18 05 8a d9 48 89 07 48 89 47 08 e9 0c 05 8a d9 90 <0f> 0b 90 eb cf 66 66 2e 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
<4>[27285.762808] RSP: 0018:ffffd18aa49a77a8 EFLAGS: 00010287
<4>[27285.762810] RAX: ffff8bd321281cc0 RBX: ffff8bd386e61848 RCX: ffff8bd32d6e0148
<4>[27285.762811] RDX: ffff8bd326800048 RSI: 0000000000000000 RDI: ffff8bd4fb697968
<4>[27285.762812] RBP: ffffd18aa49a77f0 R08: 0000000000000000 R09: ffff8bd321281cc0
<4>[27285.762814] R10: ffff8bd30004b700 R11: 0000000000000000 R12: ffffd18aa49a78f0
<4>[27285.762815] R13: ffff8bd31ba0ee38 R14: ffffd18aa49a7928 R15: ffff8bd386e61848
<4>[27285.762816] FS: 00007b5e32dfdcc0(0000) GS:ffff8bdac1e5d000(0000) knlGS:0000000000000000
<4>[27285.762818] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[27285.762819] CR2: 00007f83dfb96dd0 CR3: 000000037d596000 CR4: 0000000000f50ef0
<4>[27285.762821] PKRU: 55555554
<4>[27285.762822] Call Trace:
<4>[27285.762823] <TASK>
<4>[27285.762825] ttm_resource_alloc+0xf4/0x120 [ttm]
<4>[27285.762830] ttm_bo_swapout_cb+0x10f/0x270 [ttm]
<4>[27285.762836] ttm_lru_walk_for_evict+0xad/0x1d0 [ttm]
<4>[27285.762842] ttm_bo_swapout+0x5c/0x80 [ttm]
<4>[27285.762847] ttm_device_prepare_hibernation+0x71/0xb0 [ttm]
<4>[27285.762853] amdgpu_device_evict_resources+0x62/0x80 [amdgpu]
<4>[27285.763014] amdgpu_device_suspend+0x13a/0x240 [amdgpu]
<4>[27285.763185] amdgpu_pmops_freeze+0x1e/0x70 [amdgpu]
<4>[27285.763348] pci_pm_freeze+0x5b/0xe0
<4>[27285.763350] ? __pfx_pci_pm_freeze+0x10/0x10
<4>[27285.763353] dpm_run_callback+0x51/0x180
<4>[27285.763356] device_suspend+0x1aa/0x5e0
<4>[27285.763359] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.763362] ? dpm_async_suspend_superior+0x98/0x160
<4>[27285.763365] dpm_suspend+0x1e2/0x400
<4>[27285.763368] hibernation_snapshot+0xdc/0x560
<4>[27285.763372] hibernate.cold+0x110/0x495
<4>[27285.763375] state_store+0xc3/0xd0
<4>[27285.763378] kernfs_fop_write_iter+0x189/0x230
<4>[27285.763382] vfs_write+0x260/0x480
<4>[27285.763387] ksys_write+0x73/0xf0
<4>[27285.763390] do_syscall_64+0x10f/0x1540
<4>[27285.763392] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.763395] ? do_syscall_64+0x14e/0x1540
<4>[27285.763400] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.763402] ? kmem_cache_free+0xb7/0x410
<4>[27285.763404] ? do_sys_openat2+0x9a/0xe0
<4>[27285.763408] ? do_sys_openat2+0x9a/0xe0
<4>[27285.763411] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.763414] ? __x64_sys_fcntl+0x80/0x110
<4>[27285.763416] ? __x64_sys_openat+0x61/0xa0
<4>[27285.763420] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.763422] ? do_syscall_64+0x14e/0x1540
<4>[27285.763425] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.763427] ? __sys_sendmsg+0x8a/0xf0
<4>[27285.763432] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.763434] ? do_syscall_64+0x14e/0x1540
<4>[27285.763437] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.763439] ? irqentry_exit+0x7a/0x730
<4>[27285.763441] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.763443] ? __irq_exit_rcu+0x4c/0xf0
<4>[27285.763446] entry_SYSCALL_64_after_hwframe+0x77/0x7f
<4>[27285.763449] RIP: 0033:0x7b5e3249a03e
<4>[27285.763454] Code: 03 00 00 59 5e 48 83 f8 fc 74 39 c9 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3 0f 1f 00 48 8b 45 10 0f 05 <c9> 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3
<4>[27285.763456] RSP: 002b:00007ffd50928d60 EFLAGS: 00000202 ORIG_RAX: 0000000000000001
<4>[27285.763458] RAX: ffffffffffffffda RBX: 0000000000000005 RCX: 00007b5e3249a03e
<4>[27285.763459] RDX: 0000000000000005 RSI: 000059e5cc690f70 RDI: 0000000000000008
<4>[27285.763461] RBP: 00007ffd50928d70 R08: 0000000000000000 R09: 0000000000000000
<4>[27285.763462] R10: 0000000000000000 R11: 0000000000000202 R12: 000059e5cc67f310
<4>[27285.763463] R13: 000059e5cc690f70 R14: 0000000000000005 R15: 00007ffd50928f00
<4>[27285.763468] </TASK>
<4>[27285.763469] ---[ end trace 0000000000000000 ]---
<4>[27285.763577] ------------[ cut here ]------------
<4>[27285.763578] WARNING: drivers/gpu/drm/ttm/ttm_resource.c:235 at ttm_resource_add_bulk_move+0x90/0xa0 [ttm], CPU#11: systemd-sleep/686828
<4>[27285.763583] Modules linked in: xt_connmark xt_mark ccm rfcomm snd_seq_dummy snd_hrtimer snd_seq snd_seq_device af_packet xt_MASQUERADE xfrm_user xfrm_algo xt_set ip_set nft_chain_nat xt_addrtype overlay tun uhid cmac algif_hash algif_skcipher af_alg bnep nls_iso8859_1 nls_cp437 vfat fat snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof hid_sensor_als hid_sensor_trigger kfifo_buf snd_sof_utils hid_sensor_iio_common snd_pci_ps snd_soc_acpi_amd_match industrialio snd_soc_acpi_amd_sdca_quirks snd_amd_sdw_acpi soundwire_amd snd_hda_codec_alc269 soundwire_generic_allocation mousedev snd_hda_codec_realtek_lib soundwire_bus snd_hda_scodec_component snd_soc_sdca snd_hda_codec_generic snd_hda_codec_atihdmi mt7921e mt7921_common snd_hda_codec_hdmi joydev snd_soc_core mt792x_lib snd_hda_intel spd5118 hid_multitouch hid_sensor_hub snd_compress mt76_connac_lib ac97_bus intel_rapl_msr snd_hda_codec snd_pcm_dmaengine mt76
<4>[27285.763640] snd_rpl_pci_acp6x snd_hda_core btusb mac80211 snd_acp_pci uvcvideo btrtl snd_amd_acpi_mach btintel videobuf2_vmalloc snd_acp_legacy_common snd_intel_dspcfg uvc btmtk snd_intel_sdw_acpi snd_pci_acp6x videobuf2_memops snd_hwdep sp5100_tco btbcm videobuf2_v4l2 snd_pci_acp5x watchdog snd_pcm cfg80211 videobuf2_common snd_rn_pci_acp3x amd_pmf snd_acp_config edac_mce_amd bluetooth i2c_piix4 videodev amdtee ucsi_acpi edac_core snd_soc_acpi typec_ucsi amd_sfh snd_timer amd_atl intel_rapl_common ecdh_generic snd rfkill ghash_clmulni_intel aesni_intel rapl wmi_bmof roles framework_laptop(O) tiny_power_button platform_profile onboard_usb_dev k10temp mc ecc amdxdna i2c_smbus libarc4 snd_pci_acp3x soundcore thermal rtc_cmos typec ac i2c_hid_acpi tee i2c_hid button amd_pmc evdev input_leds mac_hid serio_raw xt_conntrack xt_tcpudp ip6t_rpfilter ipt_rpfilter xt_pkttype nft_compat leds_cros_ec cros_charge_control cros_kbd_led_backlight led_class_multicolor cros_ec_sysfs cros_ec_hwmon battery led_class cros_ec_debugfs
<4>[27285.763706] gpio_cros_ec cros_ec_chardev nf_tables cros_ec_dev sch_fq_codel kvm_amd ccp kvm xt_nat br_netfilter x_tables nf_nat bridge nf_conntrack cros_ec_lpcs irqbypass ramoops cros_ec nf_defrag_ipv6 cros_ec_proto nf_defrag_ipv4 stp uinput veth reed_solomon loop llc fuse configfs nfnetlink zram 842_decompress 842_compress lz4hc_compress lz4_compress dmi_sysfs ext4 mbcache jbd2 hid_generic usbhid atkbd hid libps2 vivaldi_fmap nvme thunderbolt nvme_core xhci_pci nvme_keyring i8042 nvme_auth xhci_hcd hkdf serio amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec drm_panel_backlight_quirks gpu_sched drm_suballoc_helper video wmi drm_buddy drm_display_helper dm_mod cec crc16 efivarfs autofs4
<4>[27285.763762] CPU: 11 UID: 0 PID: 686828 Comm: systemd-sleep Tainted: G W O 7.0.11 #1-NixOS PREEMPT(lazy)
<4>[27285.763765] Tainted: [W]=WARN, [O]=OOT_MODULE
<4>[27285.763766] Hardware name: Framework Laptop 13 (AMD Ryzen 7040Series)/FRANMDCP05, BIOS 03.17 11/14/2025
<4>[27285.763767] RIP: 0010:ttm_resource_add_bulk_move+0x90/0xa0 [ttm]
<4>[27285.763771] Code: c6 e9 b4 fa ff ff 48 8b 96 a8 01 00 00 48 85 d2 74 b8 f6 42 08 21 74 b2 e9 18 05 8a d9 48 89 07 48 89 47 08 e9 0c 05 8a d9 90 <0f> 0b 90 eb cf 66 66 2e 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
<4>[27285.763773] RSP: 0018:ffffd18aa49a77a8 EFLAGS: 00010287
<4>[27285.763775] RAX: ffff8bd321281000 RBX: ffff8bd3240f8048 RCX: ffff8bd32d6e0148
<4>[27285.763776] RDX: ffff8bd326800048 RSI: 0000000000000000 RDI: ffff8bd4fb697968
<4>[27285.763777] RBP: ffffd18aa49a77f0 R08: 0000000000000000 R09: ffff8bd321281000
<4>[27285.763779] R10: ffff8bd30004b700 R11: 0000000000000000 R12: ffffd18aa49a78f0
<4>[27285.763780] R13: ffff8bd31ba0ee38 R14: ffffd18aa49a7928 R15: ffff8bd3240f8048
<4>[27285.763782] FS: 00007b5e32dfdcc0(0000) GS:ffff8bdac1e5d000(0000) knlGS:0000000000000000
<4>[27285.763783] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[27285.763789] CR2: 00007f83dfb96dd0 CR3: 000000037d596000 CR4: 0000000000f50ef0
<4>[27285.763791] PKRU: 55555554
<4>[27285.763792] Call Trace:
<4>[27285.763793] <TASK>
<4>[27285.763794] ttm_resource_alloc+0xf4/0x120 [ttm]
<4>[27285.763799] ttm_bo_swapout_cb+0x10f/0x270 [ttm]
<4>[27285.763805] ttm_lru_walk_for_evict+0xad/0x1d0 [ttm]
<4>[27285.763812] ttm_bo_swapout+0x5c/0x80 [ttm]
<4>[27285.763817] ttm_device_prepare_hibernation+0x71/0xb0 [ttm]
<4>[27285.763823] amdgpu_device_evict_resources+0x62/0x80 [amdgpu]
<4>[27285.763989] amdgpu_device_suspend+0x13a/0x240 [amdgpu]
<4>[27285.764150] amdgpu_pmops_freeze+0x1e/0x70 [amdgpu]
<4>[27285.764308] pci_pm_freeze+0x5b/0xe0
<4>[27285.764311] ? __pfx_pci_pm_freeze+0x10/0x10
<4>[27285.764313] dpm_run_callback+0x51/0x180
<4>[27285.764317] device_suspend+0x1aa/0x5e0
<4>[27285.764320] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.764322] ? dpm_async_suspend_superior+0x98/0x160
<4>[27285.764326] dpm_suspend+0x1e2/0x400
<4>[27285.764329] hibernation_snapshot+0xdc/0x560
<4>[27285.764332] hibernate.cold+0x110/0x495
<4>[27285.764336] state_store+0xc3/0xd0
<4>[27285.764339] kernfs_fop_write_iter+0x189/0x230
<4>[27285.764343] vfs_write+0x260/0x480
<4>[27285.764347] ksys_write+0x73/0xf0
<4>[27285.764350] do_syscall_64+0x10f/0x1540
<4>[27285.764353] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.764355] ? do_syscall_64+0x14e/0x1540
<4>[27285.764360] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.764363] ? kmem_cache_free+0xb7/0x410
<4>[27285.764365] ? do_sys_openat2+0x9a/0xe0
<4>[27285.764368] ? do_sys_openat2+0x9a/0xe0
<4>[27285.764372] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.764374] ? __x64_sys_fcntl+0x80/0x110
<4>[27285.764377] ? __x64_sys_openat+0x61/0xa0
<4>[27285.764380] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.764382] ? do_syscall_64+0x14e/0x1540
<4>[27285.764385] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.764388] ? __sys_sendmsg+0x8a/0xf0
<4>[27285.764392] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.764395] ? do_syscall_64+0x14e/0x1540
<4>[27285.764397] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.764399] ? irqentry_exit+0x7a/0x730
<4>[27285.764401] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.764404] ? __irq_exit_rcu+0x4c/0xf0
<4>[27285.764407] entry_SYSCALL_64_after_hwframe+0x77/0x7f
<4>[27285.764409] RIP: 0033:0x7b5e3249a03e
<4>[27285.764415] Code: 03 00 00 59 5e 48 83 f8 fc 74 39 c9 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3 0f 1f 00 48 8b 45 10 0f 05 <c9> 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3
<4>[27285.764416] RSP: 002b:00007ffd50928d60 EFLAGS: 00000202 ORIG_RAX: 0000000000000001
<4>[27285.764418] RAX: ffffffffffffffda RBX: 0000000000000005 RCX: 00007b5e3249a03e
<4>[27285.764420] RDX: 0000000000000005 RSI: 000059e5cc690f70 RDI: 0000000000000008
<4>[27285.764421] RBP: 00007ffd50928d70 R08: 0000000000000000 R09: 0000000000000000
<4>[27285.764422] R10: 0000000000000000 R11: 0000000000000202 R12: 000059e5cc67f310
<4>[27285.764423] R13: 000059e5cc690f70 R14: 0000000000000005 R15: 00007ffd50928f00
<4>[27285.764428] </TASK>
<4>[27285.764429] ---[ end trace 0000000000000000 ]---
<4>[27285.764534] ------------[ cut here ]------------
<4>[27285.764535] WARNING: drivers/gpu/drm/ttm/ttm_resource.c:235 at ttm_resource_add_bulk_move+0x90/0xa0 [ttm], CPU#11: systemd-sleep/686828
<4>[27285.764540] Modules linked in: xt_connmark xt_mark ccm rfcomm snd_seq_dummy snd_hrtimer snd_seq snd_seq_device af_packet xt_MASQUERADE xfrm_user xfrm_algo xt_set ip_set nft_chain_nat xt_addrtype overlay tun uhid cmac algif_hash algif_skcipher af_alg bnep nls_iso8859_1 nls_cp437 vfat fat snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof hid_sensor_als hid_sensor_trigger kfifo_buf snd_sof_utils hid_sensor_iio_common snd_pci_ps snd_soc_acpi_amd_match industrialio snd_soc_acpi_amd_sdca_quirks snd_amd_sdw_acpi soundwire_amd snd_hda_codec_alc269 soundwire_generic_allocation mousedev snd_hda_codec_realtek_lib soundwire_bus snd_hda_scodec_component snd_soc_sdca snd_hda_codec_generic snd_hda_codec_atihdmi mt7921e mt7921_common snd_hda_codec_hdmi joydev snd_soc_core mt792x_lib snd_hda_intel spd5118 hid_multitouch hid_sensor_hub snd_compress mt76_connac_lib ac97_bus intel_rapl_msr snd_hda_codec snd_pcm_dmaengine mt76
<4>[27285.764596] snd_rpl_pci_acp6x snd_hda_core btusb mac80211 snd_acp_pci uvcvideo btrtl snd_amd_acpi_mach btintel videobuf2_vmalloc snd_acp_legacy_common snd_intel_dspcfg uvc btmtk snd_intel_sdw_acpi snd_pci_acp6x videobuf2_memops snd_hwdep sp5100_tco btbcm videobuf2_v4l2 snd_pci_acp5x watchdog snd_pcm cfg80211 videobuf2_common snd_rn_pci_acp3x amd_pmf snd_acp_config edac_mce_amd bluetooth i2c_piix4 videodev amdtee ucsi_acpi edac_core snd_soc_acpi typec_ucsi amd_sfh snd_timer amd_atl intel_rapl_common ecdh_generic snd rfkill ghash_clmulni_intel aesni_intel rapl wmi_bmof roles framework_laptop(O) tiny_power_button platform_profile onboard_usb_dev k10temp mc ecc amdxdna i2c_smbus libarc4 snd_pci_acp3x soundcore thermal rtc_cmos typec ac i2c_hid_acpi tee i2c_hid button amd_pmc evdev input_leds mac_hid serio_raw xt_conntrack xt_tcpudp ip6t_rpfilter ipt_rpfilter xt_pkttype nft_compat leds_cros_ec cros_charge_control cros_kbd_led_backlight led_class_multicolor cros_ec_sysfs cros_ec_hwmon battery led_class cros_ec_debugfs
<4>[27285.764662] gpio_cros_ec cros_ec_chardev nf_tables cros_ec_dev sch_fq_codel kvm_amd ccp kvm xt_nat br_netfilter x_tables nf_nat bridge nf_conntrack cros_ec_lpcs irqbypass ramoops cros_ec nf_defrag_ipv6 cros_ec_proto nf_defrag_ipv4 stp uinput veth reed_solomon loop llc fuse configfs nfnetlink zram 842_decompress 842_compress lz4hc_compress lz4_compress dmi_sysfs ext4 mbcache jbd2 hid_generic usbhid atkbd hid libps2 vivaldi_fmap nvme thunderbolt nvme_core xhci_pci nvme_keyring i8042 nvme_auth xhci_hcd hkdf serio amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec drm_panel_backlight_quirks gpu_sched drm_suballoc_helper video wmi drm_buddy drm_display_helper dm_mod cec crc16 efivarfs autofs4
<4>[27285.764718] CPU: 11 UID: 0 PID: 686828 Comm: systemd-sleep Tainted: G W O 7.0.11 #1-NixOS PREEMPT(lazy)
<4>[27285.764720] Tainted: [W]=WARN, [O]=OOT_MODULE
<4>[27285.764721] Hardware name: Framework Laptop 13 (AMD Ryzen 7040Series)/FRANMDCP05, BIOS 03.17 11/14/2025
<4>[27285.764723] RIP: 0010:ttm_resource_add_bulk_move+0x90/0xa0 [ttm]
<4>[27285.764727] Code: c6 e9 b4 fa ff ff 48 8b 96 a8 01 00 00 48 85 d2 74 b8 f6 42 08 21 74 b2 e9 18 05 8a d9 48 89 07 48 89 47 08 e9 0c 05 8a d9 90 <0f> 0b 90 eb cf 66 66 2e 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
<4>[27285.764728] RSP: 0018:ffffd18aa49a77a8 EFLAGS: 00010287
<4>[27285.764730] RAX: ffff8bd321281180 RBX: ffff8bd3329e8048 RCX: ffff8bd32d6e0148
<4>[27285.764731] RDX: ffff8bd326800048 RSI: 0000000000000000 RDI: ffff8bd4fb697968
<4>[27285.764733] RBP: ffffd18aa49a77f0 R08: 0000000000000000 R09: ffff8bd321281180
<4>[27285.764734] R10: ffff8bd30004b700 R11: 0000000000000000 R12: ffffd18aa49a78f0
<4>[27285.764735] R13: ffff8bd31ba0ee38 R14: ffffd18aa49a7928 R15: ffff8bd3329e8048
<4>[27285.764737] FS: 00007b5e32dfdcc0(0000) GS:ffff8bdac1e5d000(0000) knlGS:0000000000000000
<4>[27285.764738] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[27285.764739] CR2: 00007f83dfb96dd0 CR3: 000000037d596000 CR4: 0000000000f50ef0
<4>[27285.764741] PKRU: 55555554
<4>[27285.764742] Call Trace:
<4>[27285.764743] <TASK>
<4>[27285.764745] ttm_resource_alloc+0xf4/0x120 [ttm]
<4>[27285.764750] ttm_bo_swapout_cb+0x10f/0x270 [ttm]
<4>[27285.764756] ttm_lru_walk_for_evict+0xad/0x1d0 [ttm]
<4>[27285.764763] ttm_bo_swapout+0x5c/0x80 [ttm]
<4>[27285.764768] ttm_device_prepare_hibernation+0x71/0xb0 [ttm]
<4>[27285.764773] amdgpu_device_evict_resources+0x62/0x80 [amdgpu]
<4>[27285.764938] amdgpu_device_suspend+0x13a/0x240 [amdgpu]
<4>[27285.765103] amdgpu_pmops_freeze+0x1e/0x70 [amdgpu]
<4>[27285.765266] pci_pm_freeze+0x5b/0xe0
<4>[27285.765268] ? __pfx_pci_pm_freeze+0x10/0x10
<4>[27285.765271] dpm_run_callback+0x51/0x180
<4>[27285.765274] device_suspend+0x1aa/0x5e0
<4>[27285.765277] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.765280] ? dpm_async_suspend_superior+0x98/0x160
<4>[27285.765284] dpm_suspend+0x1e2/0x400
<4>[27285.765286] hibernation_snapshot+0xdc/0x560
<4>[27285.765290] hibernate.cold+0x110/0x495
<4>[27285.765293] state_store+0xc3/0xd0
<4>[27285.765297] kernfs_fop_write_iter+0x189/0x230
<4>[27285.765301] vfs_write+0x260/0x480
<4>[27285.765305] ksys_write+0x73/0xf0
<4>[27285.765308] do_syscall_64+0x10f/0x1540
<4>[27285.765311] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.765313] ? do_syscall_64+0x14e/0x1540
<4>[27285.765318] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.765321] ? kmem_cache_free+0xb7/0x410
<4>[27285.765323] ? do_sys_openat2+0x9a/0xe0
<4>[27285.765327] ? do_sys_openat2+0x9a/0xe0
<4>[27285.765330] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.765333] ? __x64_sys_fcntl+0x80/0x110
<4>[27285.765335] ? __x64_sys_openat+0x61/0xa0
<4>[27285.765339] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.765341] ? do_syscall_64+0x14e/0x1540
<4>[27285.765344] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.765346] ? __sys_sendmsg+0x8a/0xf0
<4>[27285.765351] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.765353] ? do_syscall_64+0x14e/0x1540
<4>[27285.765355] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.765358] ? irqentry_exit+0x7a/0x730
<4>[27285.765360] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.765362] ? __irq_exit_rcu+0x4c/0xf0
<4>[27285.765365] entry_SYSCALL_64_after_hwframe+0x77/0x7f
<4>[27285.765368] RIP: 0033:0x7b5e3249a03e
<4>[27285.765373] Code: 03 00 00 59 5e 48 83 f8 fc 74 39 c9 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3 0f 1f 00 48 8b 45 10 0f 05 <c9> 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3
<4>[27285.765375] RSP: 002b:00007ffd50928d60 EFLAGS: 00000202 ORIG_RAX: 0000000000000001
<4>[27285.765377] RAX: ffffffffffffffda RBX: 0000000000000005 RCX: 00007b5e3249a03e
<4>[27285.765378] RDX: 0000000000000005 RSI: 000059e5cc690f70 RDI: 0000000000000008
<4>[27285.765380] RBP: 00007ffd50928d70 R08: 0000000000000000 R09: 0000000000000000
<4>[27285.765381] R10: 0000000000000000 R11: 0000000000000202 R12: 000059e5cc67f310
<4>[27285.765382] R13: 000059e5cc690f70 R14: 0000000000000005 R15: 00007ffd50928f00
<4>[27285.765387] </TASK>
<4>[27285.765388] ---[ end trace 0000000000000000 ]---
<4>[27285.765493] ------------[ cut here ]------------
<4>[27285.765495] WARNING: drivers/gpu/drm/ttm/ttm_resource.c:235 at ttm_resource_add_bulk_move+0x90/0xa0 [ttm], CPU#11: systemd-sleep/686828
<4>[27285.765500] Modules linked in: xt_connmark xt_mark ccm rfcomm snd_seq_dummy snd_hrtimer snd_seq snd_seq_device af_packet xt_MASQUERADE xfrm_user xfrm_algo xt_set ip_set nft_chain_nat xt_addrtype overlay tun uhid cmac algif_hash algif_skcipher af_alg bnep nls_iso8859_1 nls_cp437 vfat fat snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof hid_sensor_als hid_sensor_trigger kfifo_buf snd_sof_utils hid_sensor_iio_common snd_pci_ps snd_soc_acpi_amd_match industrialio snd_soc_acpi_amd_sdca_quirks snd_amd_sdw_acpi soundwire_amd snd_hda_codec_alc269 soundwire_generic_allocation mousedev snd_hda_codec_realtek_lib soundwire_bus snd_hda_scodec_component snd_soc_sdca snd_hda_codec_generic snd_hda_codec_atihdmi mt7921e mt7921_common snd_hda_codec_hdmi joydev snd_soc_core mt792x_lib snd_hda_intel spd5118 hid_multitouch hid_sensor_hub snd_compress mt76_connac_lib ac97_bus intel_rapl_msr snd_hda_codec snd_pcm_dmaengine mt76
<4>[27285.765555] snd_rpl_pci_acp6x snd_hda_core btusb mac80211 snd_acp_pci uvcvideo btrtl snd_amd_acpi_mach btintel videobuf2_vmalloc snd_acp_legacy_common snd_intel_dspcfg uvc btmtk snd_intel_sdw_acpi snd_pci_acp6x videobuf2_memops snd_hwdep sp5100_tco btbcm videobuf2_v4l2 snd_pci_acp5x watchdog snd_pcm cfg80211 videobuf2_common snd_rn_pci_acp3x amd_pmf snd_acp_config edac_mce_amd bluetooth i2c_piix4 videodev amdtee ucsi_acpi edac_core snd_soc_acpi typec_ucsi amd_sfh snd_timer amd_atl intel_rapl_common ecdh_generic snd rfkill ghash_clmulni_intel aesni_intel rapl wmi_bmof roles framework_laptop(O) tiny_power_button platform_profile onboard_usb_dev k10temp mc ecc amdxdna i2c_smbus libarc4 snd_pci_acp3x soundcore thermal rtc_cmos typec ac i2c_hid_acpi tee i2c_hid button amd_pmc evdev input_leds mac_hid serio_raw xt_conntrack xt_tcpudp ip6t_rpfilter ipt_rpfilter xt_pkttype nft_compat leds_cros_ec cros_charge_control cros_kbd_led_backlight led_class_multicolor cros_ec_sysfs cros_ec_hwmon battery led_class cros_ec_debugfs
<4>[27285.765622] gpio_cros_ec cros_ec_chardev nf_tables cros_ec_dev sch_fq_codel kvm_amd ccp kvm xt_nat br_netfilter x_tables nf_nat bridge nf_conntrack cros_ec_lpcs irqbypass ramoops cros_ec nf_defrag_ipv6 cros_ec_proto nf_defrag_ipv4 stp uinput veth reed_solomon loop llc fuse configfs nfnetlink zram 842_decompress 842_compress lz4hc_compress lz4_compress dmi_sysfs ext4 mbcache jbd2 hid_generic usbhid atkbd hid libps2 vivaldi_fmap nvme thunderbolt nvme_core xhci_pci nvme_keyring i8042 nvme_auth xhci_hcd hkdf serio amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec drm_panel_backlight_quirks gpu_sched drm_suballoc_helper video wmi drm_buddy drm_display_helper dm_mod cec crc16 efivarfs autofs4
<4>[27285.765678] CPU: 11 UID: 0 PID: 686828 Comm: systemd-sleep Tainted: G W O 7.0.11 #1-NixOS PREEMPT(lazy)
<4>[27285.765680] Tainted: [W]=WARN, [O]=OOT_MODULE
<4>[27285.765681] Hardware name: Framework Laptop 13 (AMD Ryzen 7040Series)/FRANMDCP05, BIOS 03.17 11/14/2025
<4>[27285.765683] RIP: 0010:ttm_resource_add_bulk_move+0x90/0xa0 [ttm]
<4>[27285.765687] Code: c6 e9 b4 fa ff ff 48 8b 96 a8 01 00 00 48 85 d2 74 b8 f6 42 08 21 74 b2 e9 18 05 8a d9 48 89 07 48 89 47 08 e9 0c 05 8a d9 90 <0f> 0b 90 eb cf 66 66 2e 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
<4>[27285.765688] RSP: 0018:ffffd18aa49a77a8 EFLAGS: 00010287
<4>[27285.765690] RAX: ffff8bd321281240 RBX: ffff8bd4fc468048 RCX: ffff8bd32d6e0148
<4>[27285.765692] RDX: ffff8bd326800048 RSI: 0000000000000000 RDI: ffff8bd4fb697968
<4>[27285.765693] RBP: ffffd18aa49a77f0 R08: 0000000000000000 R09: ffff8bd321281240
<4>[27285.765694] R10: ffff8bd30004b700 R11: 0000000000000000 R12: ffffd18aa49a78f0
<4>[27285.765695] R13: ffff8bd31ba0ee38 R14: ffffd18aa49a7928 R15: ffff8bd4fc468048
<4>[27285.765697] FS: 00007b5e32dfdcc0(0000) GS:ffff8bdac1e5d000(0000) knlGS:0000000000000000
<4>[27285.765698] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[27285.765700] CR2: 00007f83dfb96dd0 CR3: 000000037d596000 CR4: 0000000000f50ef0
<4>[27285.765701] PKRU: 55555554
<4>[27285.765702] Call Trace:
<4>[27285.765704] <TASK>
<4>[27285.765705] ttm_resource_alloc+0xf4/0x120 [ttm]
<4>[27285.765710] ttm_bo_swapout_cb+0x10f/0x270 [ttm]
<4>[27285.765716] ttm_lru_walk_for_evict+0xad/0x1d0 [ttm]
<4>[27285.765723] ttm_bo_swapout+0x5c/0x80 [ttm]
<4>[27285.765728] ttm_device_prepare_hibernation+0x71/0xb0 [ttm]
<4>[27285.765733] amdgpu_device_evict_resources+0x62/0x80 [amdgpu]
<4>[27285.765898] amdgpu_device_suspend+0x13a/0x240 [amdgpu]
<4>[27285.766063] amdgpu_pmops_freeze+0x1e/0x70 [amdgpu]
<4>[27285.766222] pci_pm_freeze+0x5b/0xe0
<4>[27285.766225] ? __pfx_pci_pm_freeze+0x10/0x10
<4>[27285.766227] dpm_run_callback+0x51/0x180
<4>[27285.766231] device_suspend+0x1aa/0x5e0
<4>[27285.766234] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.766236] ? dpm_async_suspend_superior+0x98/0x160
<4>[27285.766240] dpm_suspend+0x1e2/0x400
<4>[27285.766243] hibernation_snapshot+0xdc/0x560
<4>[27285.766247] hibernate.cold+0x110/0x495
<4>[27285.766250] state_store+0xc3/0xd0
<4>[27285.766253] kernfs_fop_write_iter+0x189/0x230
<4>[27285.766257] vfs_write+0x260/0x480
<4>[27285.766261] ksys_write+0x73/0xf0
<4>[27285.766264] do_syscall_64+0x10f/0x1540
<4>[27285.766267] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.766269] ? do_syscall_64+0x14e/0x1540
<4>[27285.766275] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.766277] ? kmem_cache_free+0xb7/0x410
<4>[27285.766279] ? do_sys_openat2+0x9a/0xe0
<4>[27285.766283] ? do_sys_openat2+0x9a/0xe0
<4>[27285.766286] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.766288] ? __x64_sys_fcntl+0x80/0x110
<4>[27285.766291] ? __x64_sys_openat+0x61/0xa0
<4>[27285.766294] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.766297] ? do_syscall_64+0x14e/0x1540
<4>[27285.766300] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.766302] ? __sys_sendmsg+0x8a/0xf0
<4>[27285.766307] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.766309] ? do_syscall_64+0x14e/0x1540
<4>[27285.766311] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.766313] ? irqentry_exit+0x7a/0x730
<4>[27285.766316] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.766318] ? __irq_exit_rcu+0x4c/0xf0
<4>[27285.766321] entry_SYSCALL_64_after_hwframe+0x77/0x7f
<4>[27285.766323] RIP: 0033:0x7b5e3249a03e
<4>[27285.766329] Code: 03 00 00 59 5e 48 83 f8 fc 74 39 c9 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3 0f 1f 00 48 8b 45 10 0f 05 <c9> 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3
<4>[27285.766330] RSP: 002b:00007ffd50928d60 EFLAGS: 00000202 ORIG_RAX: 0000000000000001
<4>[27285.766333] RAX: ffffffffffffffda RBX: 0000000000000005 RCX: 00007b5e3249a03e
<4>[27285.766334] RDX: 0000000000000005 RSI: 000059e5cc690f70 RDI: 0000000000000008
<4>[27285.766335] RBP: 00007ffd50928d70 R08: 0000000000000000 R09: 0000000000000000
<4>[27285.766336] R10: 0000000000000000 R11: 0000000000000202 R12: 000059e5cc67f310
<4>[27285.766338] R13: 000059e5cc690f70 R14: 0000000000000005 R15: 00007ffd50928f00
<4>[27285.766342] </TASK>
<4>[27285.766343] ---[ end trace 0000000000000000 ]---
<4>[27285.766449] ------------[ cut here ]------------
<4>[27285.766450] WARNING: drivers/gpu/drm/ttm/ttm_resource.c:235 at ttm_resource_add_bulk_move+0x90/0xa0 [ttm], CPU#11: systemd-sleep/686828
<4>[27285.766455] Modules linked in: xt_connmark xt_mark ccm rfcomm snd_seq_dummy snd_hrtimer snd_seq snd_seq_device af_packet xt_MASQUERADE xfrm_user xfrm_algo xt_set ip_set nft_chain_nat xt_addrtype overlay tun uhid cmac algif_hash algif_skcipher af_alg bnep nls_iso8859_1 nls_cp437 vfat fat snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof hid_sensor_als hid_sensor_trigger kfifo_buf snd_sof_utils hid_sensor_iio_common snd_pci_ps snd_soc_acpi_amd_match industrialio snd_soc_acpi_amd_sdca_quirks snd_amd_sdw_acpi soundwire_amd snd_hda_codec_alc269 soundwire_generic_allocation mousedev snd_hda_codec_realtek_lib soundwire_bus snd_hda_scodec_component snd_soc_sdca snd_hda_codec_generic snd_hda_codec_atihdmi mt7921e mt7921_common snd_hda_codec_hdmi joydev snd_soc_core mt792x_lib snd_hda_intel spd5118 hid_multitouch hid_sensor_hub snd_compress mt76_connac_lib ac97_bus intel_rapl_msr snd_hda_codec snd_pcm_dmaengine mt76
<4>[27285.766511] snd_rpl_pci_acp6x snd_hda_core btusb mac80211 snd_acp_pci uvcvideo btrtl snd_amd_acpi_mach btintel videobuf2_vmalloc snd_acp_legacy_common snd_intel_dspcfg uvc btmtk snd_intel_sdw_acpi snd_pci_acp6x videobuf2_memops snd_hwdep sp5100_tco btbcm videobuf2_v4l2 snd_pci_acp5x watchdog snd_pcm cfg80211 videobuf2_common snd_rn_pci_acp3x amd_pmf snd_acp_config edac_mce_amd bluetooth i2c_piix4 videodev amdtee ucsi_acpi edac_core snd_soc_acpi typec_ucsi amd_sfh snd_timer amd_atl intel_rapl_common ecdh_generic snd rfkill ghash_clmulni_intel aesni_intel rapl wmi_bmof roles framework_laptop(O) tiny_power_button platform_profile onboard_usb_dev k10temp mc ecc amdxdna i2c_smbus libarc4 snd_pci_acp3x soundcore thermal rtc_cmos typec ac i2c_hid_acpi tee i2c_hid button amd_pmc evdev input_leds mac_hid serio_raw xt_conntrack xt_tcpudp ip6t_rpfilter ipt_rpfilter xt_pkttype nft_compat leds_cros_ec cros_charge_control cros_kbd_led_backlight led_class_multicolor cros_ec_sysfs cros_ec_hwmon battery led_class cros_ec_debugfs
<4>[27285.766578] gpio_cros_ec cros_ec_chardev nf_tables cros_ec_dev sch_fq_codel kvm_amd ccp kvm xt_nat br_netfilter x_tables nf_nat bridge nf_conntrack cros_ec_lpcs irqbypass ramoops cros_ec nf_defrag_ipv6 cros_ec_proto nf_defrag_ipv4 stp uinput veth reed_solomon loop llc fuse configfs nfnetlink zram 842_decompress 842_compress lz4hc_compress lz4_compress dmi_sysfs ext4 mbcache jbd2 hid_generic usbhid atkbd hid libps2 vivaldi_fmap nvme thunderbolt nvme_core xhci_pci nvme_keyring i8042 nvme_auth xhci_hcd hkdf serio amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec drm_panel_backlight_quirks gpu_sched drm_suballoc_helper video wmi drm_buddy drm_display_helper dm_mod cec crc16 efivarfs autofs4
<4>[27285.766633] CPU: 11 UID: 0 PID: 686828 Comm: systemd-sleep Tainted: G W O 7.0.11 #1-NixOS PREEMPT(lazy)
<4>[27285.766635] Tainted: [W]=WARN, [O]=OOT_MODULE
<4>[27285.766636] Hardware name: Framework Laptop 13 (AMD Ryzen 7040Series)/FRANMDCP05, BIOS 03.17 11/14/2025
<4>[27285.766637] RIP: 0010:ttm_resource_add_bulk_move+0x90/0xa0 [ttm]
<4>[27285.766641] Code: c6 e9 b4 fa ff ff 48 8b 96 a8 01 00 00 48 85 d2 74 b8 f6 42 08 21 74 b2 e9 18 05 8a d9 48 89 07 48 89 47 08 e9 0c 05 8a d9 90 <0f> 0b 90 eb cf 66 66 2e 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
<4>[27285.766643] RSP: 0018:ffffd18aa49a77a8 EFLAGS: 00010287
<4>[27285.766645] RAX: ffff8bd321281660 RBX: ffff8bd83d7e8048 RCX: ffff8bd32d6e0148
<4>[27285.766646] RDX: ffff8bd326800048 RSI: 0000000000000000 RDI: ffff8bd4fb697968
<4>[27285.766647] RBP: ffffd18aa49a77f0 R08: 0000000000000000 R09: ffff8bd321281660
<4>[27285.766649] R10: ffff8bd30004b700 R11: 0000000000000000 R12: ffffd18aa49a78f0
<4>[27285.766650] R13: ffff8bd31ba0ee38 R14: ffffd18aa49a7928 R15: ffff8bd83d7e8048
<4>[27285.766651] FS: 00007b5e32dfdcc0(0000) GS:ffff8bdac1e5d000(0000) knlGS:0000000000000000
<4>[27285.766653] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[27285.766654] CR2: 00007f83dfb96dd0 CR3: 000000037d596000 CR4: 0000000000f50ef0
<4>[27285.766656] PKRU: 55555554
<4>[27285.766657] Call Trace:
<4>[27285.766658] <TASK>
<4>[27285.766659] ttm_resource_alloc+0xf4/0x120 [ttm]
<4>[27285.766665] ttm_bo_swapout_cb+0x10f/0x270 [ttm]
<4>[27285.766670] ttm_lru_walk_for_evict+0xad/0x1d0 [ttm]
<4>[27285.766677] ttm_bo_swapout+0x5c/0x80 [ttm]
<4>[27285.766682] ttm_device_prepare_hibernation+0x71/0xb0 [ttm]
<4>[27285.766687] amdgpu_device_evict_resources+0x62/0x80 [amdgpu]
<4>[27285.766853] amdgpu_device_suspend+0x13a/0x240 [amdgpu]
<4>[27285.767014] amdgpu_pmops_freeze+0x1e/0x70 [amdgpu]
<4>[27285.767177] pci_pm_freeze+0x5b/0xe0
<4>[27285.767180] ? __pfx_pci_pm_freeze+0x10/0x10
<4>[27285.767182] dpm_run_callback+0x51/0x180
<4>[27285.767186] device_suspend+0x1aa/0x5e0
<4>[27285.767189] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.767192] ? dpm_async_suspend_superior+0x98/0x160
<4>[27285.767195] dpm_suspend+0x1e2/0x400
<4>[27285.767198] hibernation_snapshot+0xdc/0x560
<4>[27285.767202] hibernate.cold+0x110/0x495
<4>[27285.767205] state_store+0xc3/0xd0
<4>[27285.767208] kernfs_fop_write_iter+0x189/0x230
<4>[27285.767212] vfs_write+0x260/0x480
<4>[27285.767217] ksys_write+0x73/0xf0
<4>[27285.767220] do_syscall_64+0x10f/0x1540
<4>[27285.767222] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.767225] ? do_syscall_64+0x14e/0x1540
<4>[27285.767230] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.767232] ? kmem_cache_free+0xb7/0x410
<4>[27285.767234] ? do_sys_openat2+0x9a/0xe0
<4>[27285.767238] ? do_sys_openat2+0x9a/0xe0
<4>[27285.767242] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.767244] ? __x64_sys_fcntl+0x80/0x110
<4>[27285.767247] ? __x64_sys_openat+0x61/0xa0
<4>[27285.767250] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.767252] ? do_syscall_64+0x14e/0x1540
<4>[27285.767255] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.767257] ? __sys_sendmsg+0x8a/0xf0
<4>[27285.767262] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.767264] ? do_syscall_64+0x14e/0x1540
<4>[27285.767267] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.767269] ? irqentry_exit+0x7a/0x730
<4>[27285.767271] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.767274] ? __irq_exit_rcu+0x4c/0xf0
<4>[27285.767277] entry_SYSCALL_64_after_hwframe+0x77/0x7f
<4>[27285.767279] RIP: 0033:0x7b5e3249a03e
<4>[27285.767284] Code: 03 00 00 59 5e 48 83 f8 fc 74 39 c9 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3 0f 1f 00 48 8b 45 10 0f 05 <c9> 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3
<4>[27285.767286] RSP: 002b:00007ffd50928d60 EFLAGS: 00000202 ORIG_RAX: 0000000000000001
<4>[27285.767288] RAX: ffffffffffffffda RBX: 0000000000000005 RCX: 00007b5e3249a03e
<4>[27285.767290] RDX: 0000000000000005 RSI: 000059e5cc690f70 RDI: 0000000000000008
<4>[27285.767291] RBP: 00007ffd50928d70 R08: 0000000000000000 R09: 0000000000000000
<4>[27285.767292] R10: 0000000000000000 R11: 0000000000000202 R12: 000059e5cc67f310
<4>[27285.767293] R13: 000059e5cc690f70 R14: 0000000000000005 R15: 00007ffd50928f00
<4>[27285.767298] </TASK>
<4>[27285.767299] ---[ end trace 0000000000000000 ]---
<4>[27285.767404] ------------[ cut here ]------------
<4>[27285.767405] WARNING: drivers/gpu/drm/ttm/ttm_resource.c:235 at ttm_resource_add_bulk_move+0x90/0xa0 [ttm], CPU#11: systemd-sleep/686828
<4>[27285.767410] Modules linked in: xt_connmark xt_mark ccm rfcomm snd_seq_dummy snd_hrtimer snd_seq snd_seq_device af_packet xt_MASQUERADE xfrm_user xfrm_algo xt_set ip_set nft_chain_nat xt_addrtype overlay tun uhid cmac algif_hash algif_skcipher af_alg bnep nls_iso8859_1 nls_cp437 vfat fat snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof hid_sensor_als hid_sensor_trigger kfifo_buf snd_sof_utils hid_sensor_iio_common snd_pci_ps snd_soc_acpi_amd_match industrialio snd_soc_acpi_amd_sdca_quirks snd_amd_sdw_acpi soundwire_amd snd_hda_codec_alc269 soundwire_generic_allocation mousedev snd_hda_codec_realtek_lib soundwire_bus snd_hda_scodec_component snd_soc_sdca snd_hda_codec_generic snd_hda_codec_atihdmi mt7921e mt7921_common snd_hda_codec_hdmi joydev snd_soc_core mt792x_lib snd_hda_intel spd5118 hid_multitouch hid_sensor_hub snd_compress mt76_connac_lib ac97_bus intel_rapl_msr snd_hda_codec snd_pcm_dmaengine mt76
<4>[27285.767465] snd_rpl_pci_acp6x snd_hda_core btusb mac80211 snd_acp_pci uvcvideo btrtl snd_amd_acpi_mach btintel videobuf2_vmalloc snd_acp_legacy_common snd_intel_dspcfg uvc btmtk snd_intel_sdw_acpi snd_pci_acp6x videobuf2_memops snd_hwdep sp5100_tco btbcm videobuf2_v4l2 snd_pci_acp5x watchdog snd_pcm cfg80211 videobuf2_common snd_rn_pci_acp3x amd_pmf snd_acp_config edac_mce_amd bluetooth i2c_piix4 videodev amdtee ucsi_acpi edac_core snd_soc_acpi typec_ucsi amd_sfh snd_timer amd_atl intel_rapl_common ecdh_generic snd rfkill ghash_clmulni_intel aesni_intel rapl wmi_bmof roles framework_laptop(O) tiny_power_button platform_profile onboard_usb_dev k10temp mc ecc amdxdna i2c_smbus libarc4 snd_pci_acp3x soundcore thermal rtc_cmos typec ac i2c_hid_acpi tee i2c_hid button amd_pmc evdev input_leds mac_hid serio_raw xt_conntrack xt_tcpudp ip6t_rpfilter ipt_rpfilter xt_pkttype nft_compat leds_cros_ec cros_charge_control cros_kbd_led_backlight led_class_multicolor cros_ec_sysfs cros_ec_hwmon battery led_class cros_ec_debugfs
<4>[27285.767532] gpio_cros_ec cros_ec_chardev nf_tables cros_ec_dev sch_fq_codel kvm_amd ccp kvm xt_nat br_netfilter x_tables nf_nat bridge nf_conntrack cros_ec_lpcs irqbypass ramoops cros_ec nf_defrag_ipv6 cros_ec_proto nf_defrag_ipv4 stp uinput veth reed_solomon loop llc fuse configfs nfnetlink zram 842_decompress 842_compress lz4hc_compress lz4_compress dmi_sysfs ext4 mbcache jbd2 hid_generic usbhid atkbd hid libps2 vivaldi_fmap nvme thunderbolt nvme_core xhci_pci nvme_keyring i8042 nvme_auth xhci_hcd hkdf serio amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec drm_panel_backlight_quirks gpu_sched drm_suballoc_helper video wmi drm_buddy drm_display_helper dm_mod cec crc16 efivarfs autofs4
<4>[27285.767587] CPU: 11 UID: 0 PID: 686828 Comm: systemd-sleep Tainted: G W O 7.0.11 #1-NixOS PREEMPT(lazy)
<4>[27285.767590] Tainted: [W]=WARN, [O]=OOT_MODULE
<4>[27285.767591] Hardware name: Framework Laptop 13 (AMD Ryzen 7040Series)/FRANMDCP05, BIOS 03.17 11/14/2025
<4>[27285.767592] RIP: 0010:ttm_resource_add_bulk_move+0x90/0xa0 [ttm]
<4>[27285.767596] Code: c6 e9 b4 fa ff ff 48 8b 96 a8 01 00 00 48 85 d2 74 b8 f6 42 08 21 74 b2 e9 18 05 8a d9 48 89 07 48 89 47 08 e9 0c 05 8a d9 90 <0f> 0b 90 eb cf 66 66 2e 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
<4>[27285.767598] RSP: 0018:ffffd18aa49a77a8 EFLAGS: 00010287
<4>[27285.767599] RAX: ffff8bd321281d80 RBX: ffff8bd33be8dc48 RCX: ffff8bd32d6e0148
<4>[27285.767601] RDX: ffff8bd326800048 RSI: 0000000000000000 RDI: ffff8bd4fb697968
<4>[27285.767602] RBP: ffffd18aa49a77f0 R08: 0000000000000000 R09: ffff8bd321281d80
<4>[27285.767603] R10: ffff8bd30004b700 R11: 0000000000000000 R12: ffffd18aa49a78f0
<4>[27285.767605] R13: ffff8bd31ba0ee38 R14: ffffd18aa49a7928 R15: ffff8bd33be8dc48
<4>[27285.767606] FS: 00007b5e32dfdcc0(0000) GS:ffff8bdac1e5d000(0000) knlGS:0000000000000000
<4>[27285.767608] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[27285.767609] CR2: 00007f83dfb96dd0 CR3: 000000037d596000 CR4: 0000000000f50ef0
<4>[27285.767610] PKRU: 55555554
<4>[27285.767612] Call Trace:
<4>[27285.767613] <TASK>
<4>[27285.767614] ttm_resource_alloc+0xf4/0x120 [ttm]
<4>[27285.767619] ttm_bo_swapout_cb+0x10f/0x270 [ttm]
<4>[27285.767625] ttm_lru_walk_for_evict+0xad/0x1d0 [ttm]
<4>[27285.767632] ttm_bo_swapout+0x5c/0x80 [ttm]
<4>[27285.767637] ttm_device_prepare_hibernation+0x71/0xb0 [ttm]
<4>[27285.767642] amdgpu_device_evict_resources+0x62/0x80 [amdgpu]
<4>[27285.767810] amdgpu_device_suspend+0x13a/0x240 [amdgpu]
<4>[27285.767975] amdgpu_pmops_freeze+0x1e/0x70 [amdgpu]
<4>[27285.768141] pci_pm_freeze+0x5b/0xe0
<4>[27285.768144] ? __pfx_pci_pm_freeze+0x10/0x10
<4>[27285.768146] dpm_run_callback+0x51/0x180
<4>[27285.768150] device_suspend+0x1aa/0x5e0
<4>[27285.768153] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.768155] ? dpm_async_suspend_superior+0x98/0x160
<4>[27285.768159] dpm_suspend+0x1e2/0x400
<4>[27285.768161] hibernation_snapshot+0xdc/0x560
<4>[27285.768165] hibernate.cold+0x110/0x495
<4>[27285.768168] state_store+0xc3/0xd0
<4>[27285.768172] kernfs_fop_write_iter+0x189/0x230
<4>[27285.768175] vfs_write+0x260/0x480
<4>[27285.768180] ksys_write+0x73/0xf0
<4>[27285.768183] do_syscall_64+0x10f/0x1540
<4>[27285.768186] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.768188] ? do_syscall_64+0x14e/0x1540
<4>[27285.768193] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.768195] ? kmem_cache_free+0xb7/0x410
<4>[27285.768198] ? do_sys_openat2+0x9a/0xe0
<4>[27285.768201] ? do_sys_openat2+0x9a/0xe0
<4>[27285.768205] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.768207] ? __x64_sys_fcntl+0x80/0x110
<4>[27285.768210] ? __x64_sys_openat+0x61/0xa0
<4>[27285.768213] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.768215] ? do_syscall_64+0x14e/0x1540
<4>[27285.768218] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.768221] ? __sys_sendmsg+0x8a/0xf0
<4>[27285.768225] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.768228] ? do_syscall_64+0x14e/0x1540
<4>[27285.768230] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.768232] ? irqentry_exit+0x7a/0x730
<4>[27285.768235] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.768237] ? __irq_exit_rcu+0x4c/0xf0
<4>[27285.768240] entry_SYSCALL_64_after_hwframe+0x77/0x7f
<4>[27285.768242] RIP: 0033:0x7b5e3249a03e
<4>[27285.768248] Code: 03 00 00 59 5e 48 83 f8 fc 74 39 c9 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3 0f 1f 00 48 8b 45 10 0f 05 <c9> 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3
<4>[27285.768249] RSP: 002b:00007ffd50928d60 EFLAGS: 00000202 ORIG_RAX: 0000000000000001
<4>[27285.768252] RAX: ffffffffffffffda RBX: 0000000000000005 RCX: 00007b5e3249a03e
<4>[27285.768253] RDX: 0000000000000005 RSI: 000059e5cc690f70 RDI: 0000000000000008
<4>[27285.768254] RBP: 00007ffd50928d70 R08: 0000000000000000 R09: 0000000000000000
<4>[27285.768256] R10: 0000000000000000 R11: 0000000000000202 R12: 000059e5cc67f310
<4>[27285.768257] R13: 000059e5cc690f70 R14: 0000000000000005 R15: 00007ffd50928f00
<4>[27285.768262] </TASK>
<4>[27285.768263] ---[ end trace 0000000000000000 ]---
<4>[27285.768369] ------------[ cut here ]------------
<4>[27285.768370] WARNING: drivers/gpu/drm/ttm/ttm_resource.c:235 at ttm_resource_add_bulk_move+0x90/0xa0 [ttm], CPU#11: systemd-sleep/686828
<4>[27285.768375] Modules linked in: xt_connmark xt_mark ccm rfcomm snd_seq_dummy snd_hrtimer snd_seq snd_seq_device af_packet xt_MASQUERADE xfrm_user xfrm_algo xt_set ip_set nft_chain_nat xt_addrtype overlay tun uhid cmac algif_hash algif_skcipher af_alg bnep nls_iso8859_1 nls_cp437 vfat fat snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof hid_sensor_als hid_sensor_trigger kfifo_buf snd_sof_utils hid_sensor_iio_common snd_pci_ps snd_soc_acpi_amd_match industrialio snd_soc_acpi_amd_sdca_quirks snd_amd_sdw_acpi soundwire_amd snd_hda_codec_alc269 soundwire_generic_allocation mousedev snd_hda_codec_realtek_lib soundwire_bus snd_hda_scodec_component snd_soc_sdca snd_hda_codec_generic snd_hda_codec_atihdmi mt7921e mt7921_common snd_hda_codec_hdmi joydev snd_soc_core mt792x_lib snd_hda_intel spd5118 hid_multitouch hid_sensor_hub snd_compress mt76_connac_lib ac97_bus intel_rapl_msr snd_hda_codec snd_pcm_dmaengine mt76
<4>[27285.768430] snd_rpl_pci_acp6x snd_hda_core btusb mac80211 snd_acp_pci uvcvideo btrtl snd_amd_acpi_mach btintel videobuf2_vmalloc snd_acp_legacy_common snd_intel_dspcfg uvc btmtk snd_intel_sdw_acpi snd_pci_acp6x videobuf2_memops snd_hwdep sp5100_tco btbcm videobuf2_v4l2 snd_pci_acp5x watchdog snd_pcm cfg80211 videobuf2_common snd_rn_pci_acp3x amd_pmf snd_acp_config edac_mce_amd bluetooth i2c_piix4 videodev amdtee ucsi_acpi edac_core snd_soc_acpi typec_ucsi amd_sfh snd_timer amd_atl intel_rapl_common ecdh_generic snd rfkill ghash_clmulni_intel aesni_intel rapl wmi_bmof roles framework_laptop(O) tiny_power_button platform_profile onboard_usb_dev k10temp mc ecc amdxdna i2c_smbus libarc4 snd_pci_acp3x soundcore thermal rtc_cmos typec ac i2c_hid_acpi tee i2c_hid button amd_pmc evdev input_leds mac_hid serio_raw xt_conntrack xt_tcpudp ip6t_rpfilter ipt_rpfilter xt_pkttype nft_compat leds_cros_ec cros_charge_control cros_kbd_led_backlight led_class_multicolor cros_ec_sysfs cros_ec_hwmon battery led_class cros_ec_debugfs
<4>[27285.768496] gpio_cros_ec cros_ec_chardev nf_tables cros_ec_dev sch_fq_codel kvm_amd ccp kvm xt_nat br_netfilter x_tables nf_nat bridge nf_conntrack cros_ec_lpcs irqbypass ramoops cros_ec nf_defrag_ipv6 cros_ec_proto nf_defrag_ipv4 stp uinput veth reed_solomon loop llc fuse configfs nfnetlink zram 842_decompress 842_compress lz4hc_compress lz4_compress dmi_sysfs ext4 mbcache jbd2 hid_generic usbhid atkbd hid libps2 vivaldi_fmap nvme thunderbolt nvme_core xhci_pci nvme_keyring i8042 nvme_auth xhci_hcd hkdf serio amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec drm_panel_backlight_quirks gpu_sched drm_suballoc_helper video wmi drm_buddy drm_display_helper dm_mod cec crc16 efivarfs autofs4
<4>[27285.768551] CPU: 11 UID: 0 PID: 686828 Comm: systemd-sleep Tainted: G W O 7.0.11 #1-NixOS PREEMPT(lazy)
<4>[27285.768553] Tainted: [W]=WARN, [O]=OOT_MODULE
<4>[27285.768554] Hardware name: Framework Laptop 13 (AMD Ryzen 7040Series)/FRANMDCP05, BIOS 03.17 11/14/2025
<4>[27285.768556] RIP: 0010:ttm_resource_add_bulk_move+0x90/0xa0 [ttm]
<4>[27285.768560] Code: c6 e9 b4 fa ff ff 48 8b 96 a8 01 00 00 48 85 d2 74 b8 f6 42 08 21 74 b2 e9 18 05 8a d9 48 89 07 48 89 47 08 e9 0c 05 8a d9 90 <0f> 0b 90 eb cf 66 66 2e 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
<4>[27285.768561] RSP: 0018:ffffd18aa49a77a8 EFLAGS: 00010287
<4>[27285.768563] RAX: ffff8bd321281780 RBX: ffff8bd333f2c848 RCX: ffff8bd32d6e0148
<4>[27285.768565] RDX: ffff8bd326800048 RSI: 0000000000000000 RDI: ffff8bd4fb697968
<4>[27285.768566] RBP: ffffd18aa49a77f0 R08: 0000000000000000 R09: ffff8bd321281780
<4>[27285.768567] R10: ffff8bd30004b700 R11: 0000000000000000 R12: ffffd18aa49a78f0
<4>[27285.768568] R13: ffff8bd31ba0ee38 R14: ffffd18aa49a7928 R15: ffff8bd333f2c848
<4>[27285.768570] FS: 00007b5e32dfdcc0(0000) GS:ffff8bdac1e5d000(0000) knlGS:0000000000000000
<4>[27285.768571] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[27285.768573] CR2: 00007f83dfb96dd0 CR3: 000000037d596000 CR4: 0000000000f50ef0
<4>[27285.768574] PKRU: 55555554
<4>[27285.768575] Call Trace:
<4>[27285.768577] <TASK>
<4>[27285.768578] ttm_resource_alloc+0xf4/0x120 [ttm]
<4>[27285.768583] ttm_bo_swapout_cb+0x10f/0x270 [ttm]
<4>[27285.768589] ttm_lru_walk_for_evict+0xad/0x1d0 [ttm]
<4>[27285.768596] ttm_bo_swapout+0x5c/0x80 [ttm]
<4>[27285.768601] ttm_device_prepare_hibernation+0x71/0xb0 [ttm]
<4>[27285.768606] amdgpu_device_evict_resources+0x62/0x80 [amdgpu]
<4>[27285.768767] amdgpu_device_suspend+0x13a/0x240 [amdgpu]
<4>[27285.768933] amdgpu_pmops_freeze+0x1e/0x70 [amdgpu]
<4>[27285.769092] pci_pm_freeze+0x5b/0xe0
<4>[27285.769095] ? __pfx_pci_pm_freeze+0x10/0x10
<4>[27285.769097] dpm_run_callback+0x51/0x180
<4>[27285.769101] device_suspend+0x1aa/0x5e0
<4>[27285.769104] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.769106] ? dpm_async_suspend_superior+0x98/0x160
<4>[27285.769110] dpm_suspend+0x1e2/0x400
<4>[27285.769113] hibernation_snapshot+0xdc/0x560
<4>[27285.769116] hibernate.cold+0x110/0x495
<4>[27285.769120] state_store+0xc3/0xd0
<4>[27285.769123] kernfs_fop_write_iter+0x189/0x230
<4>[27285.769127] vfs_write+0x260/0x480
<4>[27285.769131] ksys_write+0x73/0xf0
<4>[27285.769134] do_syscall_64+0x10f/0x1540
<4>[27285.769137] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.769139] ? do_syscall_64+0x14e/0x1540
<4>[27285.769144] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.769147] ? kmem_cache_free+0xb7/0x410
<4>[27285.769149] ? do_sys_openat2+0x9a/0xe0
<4>[27285.769152] ? do_sys_openat2+0x9a/0xe0
<4>[27285.769156] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.769158] ? __x64_sys_fcntl+0x80/0x110
<4>[27285.769161] ? __x64_sys_openat+0x61/0xa0
<4>[27285.769165] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.769167] ? do_syscall_64+0x14e/0x1540
<4>[27285.769170] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.769172] ? __sys_sendmsg+0x8a/0xf0
<4>[27285.769177] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.769179] ? do_syscall_64+0x14e/0x1540
<4>[27285.769182] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.769184] ? irqentry_exit+0x7a/0x730
<4>[27285.769186] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.769189] ? __irq_exit_rcu+0x4c/0xf0
<4>[27285.769192] entry_SYSCALL_64_after_hwframe+0x77/0x7f
<4>[27285.769194] RIP: 0033:0x7b5e3249a03e
<4>[27285.769199] Code: 03 00 00 59 5e 48 83 f8 fc 74 39 c9 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3 0f 1f 00 48 8b 45 10 0f 05 <c9> 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3
<4>[27285.769201] RSP: 002b:00007ffd50928d60 EFLAGS: 00000202 ORIG_RAX: 0000000000000001
<4>[27285.769203] RAX: ffffffffffffffda RBX: 0000000000000005 RCX: 00007b5e3249a03e
<4>[27285.769205] RDX: 0000000000000005 RSI: 000059e5cc690f70 RDI: 0000000000000008
<4>[27285.769206] RBP: 00007ffd50928d70 R08: 0000000000000000 R09: 0000000000000000
<4>[27285.769208] R10: 0000000000000000 R11: 0000000000000202 R12: 000059e5cc67f310
<4>[27285.769209] R13: 000059e5cc690f70 R14: 0000000000000005 R15: 00007ffd50928f00
<4>[27285.769214] </TASK>
<4>[27285.769215] ---[ end trace 0000000000000000 ]---
<4>[27285.769319] ------------[ cut here ]------------
<4>[27285.769320] WARNING: drivers/gpu/drm/ttm/ttm_resource.c:235 at ttm_resource_add_bulk_move+0x90/0xa0 [ttm], CPU#11: systemd-sleep/686828
<4>[27285.769325] Modules linked in: xt_connmark xt_mark ccm rfcomm snd_seq_dummy snd_hrtimer snd_seq snd_seq_device af_packet xt_MASQUERADE xfrm_user xfrm_algo xt_set ip_set nft_chain_nat xt_addrtype overlay tun uhid cmac algif_hash algif_skcipher af_alg bnep nls_iso8859_1 nls_cp437 vfat fat snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof hid_sensor_als hid_sensor_trigger kfifo_buf snd_sof_utils hid_sensor_iio_common snd_pci_ps snd_soc_acpi_amd_match industrialio snd_soc_acpi_amd_sdca_quirks snd_amd_sdw_acpi soundwire_amd snd_hda_codec_alc269 soundwire_generic_allocation mousedev snd_hda_codec_realtek_lib soundwire_bus snd_hda_scodec_component snd_soc_sdca snd_hda_codec_generic snd_hda_codec_atihdmi mt7921e mt7921_common snd_hda_codec_hdmi joydev snd_soc_core mt792x_lib snd_hda_intel spd5118 hid_multitouch hid_sensor_hub snd_compress mt76_connac_lib ac97_bus intel_rapl_msr snd_hda_codec snd_pcm_dmaengine mt76
<4>[27285.769382] snd_rpl_pci_acp6x snd_hda_core btusb mac80211 snd_acp_pci uvcvideo btrtl snd_amd_acpi_mach btintel videobuf2_vmalloc snd_acp_legacy_common snd_intel_dspcfg uvc btmtk snd_intel_sdw_acpi snd_pci_acp6x videobuf2_memops snd_hwdep sp5100_tco btbcm videobuf2_v4l2 snd_pci_acp5x watchdog snd_pcm cfg80211 videobuf2_common snd_rn_pci_acp3x amd_pmf snd_acp_config edac_mce_amd bluetooth i2c_piix4 videodev amdtee ucsi_acpi edac_core snd_soc_acpi typec_ucsi amd_sfh snd_timer amd_atl intel_rapl_common ecdh_generic snd rfkill ghash_clmulni_intel aesni_intel rapl wmi_bmof roles framework_laptop(O) tiny_power_button platform_profile onboard_usb_dev k10temp mc ecc amdxdna i2c_smbus libarc4 snd_pci_acp3x soundcore thermal rtc_cmos typec ac i2c_hid_acpi tee i2c_hid button amd_pmc evdev input_leds mac_hid serio_raw xt_conntrack xt_tcpudp ip6t_rpfilter ipt_rpfilter xt_pkttype nft_compat leds_cros_ec cros_charge_control cros_kbd_led_backlight led_class_multicolor cros_ec_sysfs cros_ec_hwmon battery led_class cros_ec_debugfs
<4>[27285.769449] gpio_cros_ec cros_ec_chardev nf_tables cros_ec_dev sch_fq_codel kvm_amd ccp kvm xt_nat br_netfilter x_tables nf_nat bridge nf_conntrack cros_ec_lpcs irqbypass ramoops cros_ec nf_defrag_ipv6 cros_ec_proto nf_defrag_ipv4 stp uinput veth reed_solomon loop llc fuse configfs nfnetlink zram 842_decompress 842_compress lz4hc_compress lz4_compress dmi_sysfs ext4 mbcache jbd2 hid_generic usbhid atkbd hid libps2 vivaldi_fmap nvme thunderbolt nvme_core xhci_pci nvme_keyring i8042 nvme_auth xhci_hcd hkdf serio amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec drm_panel_backlight_quirks gpu_sched drm_suballoc_helper video wmi drm_buddy drm_display_helper dm_mod cec crc16 efivarfs autofs4
<4>[27285.769505] CPU: 11 UID: 0 PID: 686828 Comm: systemd-sleep Tainted: G W O 7.0.11 #1-NixOS PREEMPT(lazy)
<4>[27285.769507] Tainted: [W]=WARN, [O]=OOT_MODULE
<4>[27285.769508] Hardware name: Framework Laptop 13 (AMD Ryzen 7040Series)/FRANMDCP05, BIOS 03.17 11/14/2025
<4>[27285.769510] RIP: 0010:ttm_resource_add_bulk_move+0x90/0xa0 [ttm]
<4>[27285.769514] Code: c6 e9 b4 fa ff ff 48 8b 96 a8 01 00 00 48 85 d2 74 b8 f6 42 08 21 74 b2 e9 18 05 8a d9 48 89 07 48 89 47 08 e9 0c 05 8a d9 90 <0f> 0b 90 eb cf 66 66 2e 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90
<4>[27285.769516] RSP: 0018:ffffd18aa49a77a8 EFLAGS: 00010287
<4>[27285.769518] RAX: ffff8bd321281de0 RBX: ffff8bd32d6e0048 RCX: ffff8bd32d6e0148
<4>[27285.769519] RDX: ffff8bd326800048 RSI: 0000000000000000 RDI: ffff8bd4fb697968
<4>[27285.769520] RBP: ffffd18aa49a77f0 R08: 0000000000000000 R09: ffff8bd321281de0
<4>[27285.769522] R10: ffff8bd30004b700 R11: 0000000000000000 R12: ffffd18aa49a78f0
<4>[27285.769523] R13: ffff8bd31ba0ee38 R14: ffffd18aa49a7928 R15: ffff8bd32d6e0048
<4>[27285.769525] FS: 00007b5e32dfdcc0(0000) GS:ffff8bdac1e5d000(0000) knlGS:0000000000000000
<4>[27285.769526] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[27285.769528] CR2: 00007f83dfb96dd0 CR3: 000000037d596000 CR4: 0000000000f50ef0
<4>[27285.769529] PKRU: 55555554
<4>[27285.769530] Call Trace:
<4>[27285.769532] <TASK>
<4>[27285.769533] ttm_resource_alloc+0xf4/0x120 [ttm]
<4>[27285.769538] ttm_bo_swapout_cb+0x10f/0x270 [ttm]
<4>[27285.769544] ttm_lru_walk_for_evict+0xad/0x1d0 [ttm]
<4>[27285.769551] ttm_bo_swapout+0x5c/0x80 [ttm]
<4>[27285.769556] ttm_device_prepare_hibernation+0x71/0xb0 [ttm]
<4>[27285.769561] amdgpu_device_evict_resources+0x62/0x80 [amdgpu]
<4>[27285.769723] amdgpu_device_suspend+0x13a/0x240 [amdgpu]
<4>[27285.769888] amdgpu_pmops_freeze+0x1e/0x70 [amdgpu]
<4>[27285.770047] pci_pm_freeze+0x5b/0xe0
<4>[27285.770050] ? __pfx_pci_pm_freeze+0x10/0x10
<4>[27285.770052] dpm_run_callback+0x51/0x180
<4>[27285.770056] device_suspend+0x1aa/0x5e0
<4>[27285.770059] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.770061] ? dpm_async_suspend_superior+0x98/0x160
<4>[27285.770065] dpm_suspend+0x1e2/0x400
<4>[27285.770068] hibernation_snapshot+0xdc/0x560
<4>[27285.770071] hibernate.cold+0x110/0x495
<4>[27285.770075] state_store+0xc3/0xd0
<4>[27285.770078] kernfs_fop_write_iter+0x189/0x230
<4>[27285.770082] vfs_write+0x260/0x480
<4>[27285.770086] ksys_write+0x73/0xf0
<4>[27285.770089] do_syscall_64+0x10f/0x1540
<4>[27285.770092] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.770094] ? do_syscall_64+0x14e/0x1540
<4>[27285.770100] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.770102] ? kmem_cache_free+0xb7/0x410
<4>[27285.770104] ? do_sys_openat2+0x9a/0xe0
<4>[27285.770108] ? do_sys_openat2+0x9a/0xe0
<4>[27285.770111] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.770114] ? __x64_sys_fcntl+0x80/0x110
<4>[27285.770116] ? __x64_sys_openat+0x61/0xa0
<4>[27285.770120] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.770122] ? do_syscall_64+0x14e/0x1540
<4>[27285.770125] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.770127] ? __sys_sendmsg+0x8a/0xf0
<4>[27285.770132] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.770134] ? do_syscall_64+0x14e/0x1540
<4>[27285.770137] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.770139] ? irqentry_exit+0x7a/0x730
<4>[27285.770141] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[27285.770144] ? __irq_exit_rcu+0x4c/0xf0
<4>[27285.770147] entry_SYSCALL_64_after_hwframe+0x77/0x7f
<4>[27285.770149] RIP: 0033:0x7b5e3249a03e
<4>[27285.770155] Code: 03 00 00 59 5e 48 83 f8 fc 74 39 c9 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3 0f 1f 00 48 8b 45 10 0f 05 <c9> 31 d2 31 c9 31 f6 31 ff 45 31 c0 45 31 c9 45 31 d2 45 31 db c3
<4>[27285.770156] RSP: 002b:00007ffd50928d60 EFLAGS: 00000202 ORIG_RAX: 0000000000000001
<4>[27285.770158] RAX: ffffffffffffffda RBX: 0000000000000005 RCX: 00007b5e3249a03e
<4>[27285.770160] RDX: 0000000000000005 RSI: 000059e5cc690f70 RDI: 0000000000000008
<4>[27285.770161] RBP: 00007ffd50928d70 R08: 0000000000000000 R09: 0000000000000000
<4>[27285.770162] R10: 0000000000000000 R11: 0000000000000202 R12: 000059e5cc67f310
<4>[27285.770164] R13: 000059e5cc690f70 R14: 0000000000000005 R15: 00007ffd50928f00
<4>[27285.770168] </TASK>
<4>[27285.770170] ---[ end trace 0000000000000000 ]---
<7>[27286.114093] PM: freeze of devices complete after 9929.225 msecs
<7>[27286.114563] Disabling GPIO #0 interrupt for hibernate.
<7>[27286.114569] Clearing debounce for GPIO #0 during hibernate.
<7>[27286.114573] Disabling GPIO #2 interrupt for hibernate.
<7>[27286.114577] Disabling GPIO #5 interrupt for hibernate.
<7>[27286.114580] Disabling GPIO #6 interrupt for hibernate.
<7>[27286.114583] Disabling GPIO #8 interrupt for hibernate.
<7>[27286.114589] Disabling GPIO #54 interrupt for hibernate.
<7>[27286.114593] Disabling GPIO #58 interrupt for hibernate.
<7>[27286.114596] Disabling GPIO #59 interrupt for hibernate.
<7>[27286.114600] Disabling GPIO #61 interrupt for hibernate.
<7>[27286.114603] Disabling GPIO #62 interrupt for hibernate.
<7>[27286.114607] Disabling GPIO #84 interrupt for hibernate.
<7>[27286.114807] PM: late freeze of devices complete after 0.708 msecs
<7>[27286.114814] Setting wake for GPIO 8 to enable
<6>[27286.115285] ACPI: EC: interrupt blocked
<7>[27286.119054] PM: noirq freeze of devices complete after 4.131 msecs
<7>[27286.119056] PM: end freeze of devices complete after 4.957 msecs
<6>[27286.119059] ACPI: PM: Preparing to enter system sleep state S4
<6>[27286.427336] ACPI: EC: event blocked
<6>[27286.427341] ACPI: EC: EC stopped
<6>[27286.427343] ACPI: PM: Saving platform NVS memory
<6>[27286.434904] Disabling non-boot CPUs ...
<6>[27286.437021] smpboot: CPU 11 is now offline
<6>[27286.441288] smpboot: CPU 10 is now offline
<6>[27286.446010] smpboot: CPU 9 is now offline
<6>[27286.449506] smpboot: CPU 8 is now offline
<6>[27286.453559] smpboot: CPU 7 is now offline
<6>[27286.458094] smpboot: CPU 6 is now offline
<6>[27286.462461] smpboot: CPU 5 is now offline
<6>[27286.466964] smpboot: CPU 4 is now offline
<6>[27286.471204] smpboot: CPU 3 is now offline
<6>[27286.474798] smpboot: CPU 2 is now offline
<6>[27286.479059] smpboot: CPU 1 is now offline
<6>[27286.480655] Spectre V2 : Update user space SMT mitigation: STIBP off
<7>[27286.480694] Checking wakeup interrupts
<7>[27286.480697] Calling kvm_suspend+0x0/0x30 [kvm]
<7>[27286.480877] Calling mce_syscore_suspend+0x0/0x40
<7>[27286.480885] Calling timekeeping_syscore_suspend+0x0/0x10
<7>[27286.480935] Calling irq_gc_suspend+0x0/0x80
<7>[27286.480941] Calling ioapic_suspend+0x0/0x10
<7>[27286.481121] Calling i8259A_suspend+0x0/0x30
<7>[27286.481133] Calling perf_ibs_suspend+0x0/0x40
<7>[27286.481139] Calling amd_iommu_suspend+0x0/0x50
<7>[27286.481232] Calling fw_suspend+0x0/0x20
<7>[27286.481249] Calling acpi_save_bm_rld+0x0/0x30
<7>[27286.481263] Calling lapic_suspend+0x0/0x170
<7>[27286.481408] PM: hibernation: Creating image
<6>[27286.481753] ACPI: PM: Restoring platform NVS memory
<6>[27286.482810] ACPI: EC: EC started
<7>[27286.482813] Calling lapic_resume+0x0/0x2b0
<7>[27286.483260] Calling acpi_restore_bm_rld+0x0/0x70
<7>[27286.483271] Calling irqrouter_resume+0x0/0x90
<7>[27286.483274] Calling amd_iommu_resume+0x0/0x60
<7>[27286.483668] Calling perf_ibs_resume+0x0/0x30
<6>[27286.483686] LVT offset 0 assigned for vector 0x400
<7>[27286.483687] Calling i8259A_resume+0x0/0x40
<7>[27286.483837] Calling i8237A_resume+0x0/0xb0
<7>[27286.483886] Calling ioapic_resume+0x0/0xd0
<7>[27286.483985] Calling irq_gc_resume+0x0/0x70
<7>[27286.483988] Calling irq_pm_syscore_resume+0x0/0x20
<7>[27286.484033] Calling timekeeping_syscore_resume+0x0/0x10
<7>[27286.484075] Timekeeping suspended for 512.127 seconds
<7>[27286.484090] Calling init_counter_refs+0x0/0x40
<7>[27286.484092] Calling mce_syscore_resume+0x0/0x50
<7>[27286.484253] Calling microcode_bsp_syscore_resume+0x0/0x20
<7>[27286.484257] Calling kvm_resume+0x0/0x40 [kvm]
<6>[27286.484592] Enabling non-boot CPUs ...
<6>[27286.484650] smpboot: Booting Node 0 Processor 1 APIC 0x1
<6>[27286.487882] Spectre V2 : Update user space SMT mitigation: STIBP always-on
<6>[27286.487919] CPU1 is up
<6>[27286.487968] smpboot: Booting Node 0 Processor 2 APIC 0x2
<6>[27286.490714] CPU2 is up
<6>[27286.490753] smpboot: Booting Node 0 Processor 3 APIC 0x3
<6>[27286.493495] CPU3 is up
<6>[27286.493536] smpboot: Booting Node 0 Processor 4 APIC 0x4
<6>[27286.496491] CPU4 is up
<6>[27286.496529] smpboot: Booting Node 0 Processor 5 APIC 0x5
<6>[27286.499491] CPU5 is up
<6>[27286.499529] smpboot: Booting Node 0 Processor 6 APIC 0x6
<6>[27286.502470] CPU6 is up
<6>[27286.502515] smpboot: Booting Node 0 Processor 7 APIC 0x7
<6>[27286.505469] CPU7 is up
<6>[27286.505505] smpboot: Booting Node 0 Processor 8 APIC 0x8
<6>[27286.508433] CPU8 is up
<6>[27286.508472] smpboot: Booting Node 0 Processor 9 APIC 0x9
<6>[27286.511506] CPU9 is up
<6>[27286.511538] smpboot: Booting Node 0 Processor 10 APIC 0xa
<6>[27286.514494] CPU10 is up
<6>[27286.514536] smpboot: Booting Node 0 Processor 11 APIC 0xb
<6>[27286.517648] CPU11 is up
<6>[27286.521157] ACPI: PM: Waking up from system sleep state S4
<6>[27286.542421] ACPI: EC: interrupt unblocked
<7>[27286.544494] PM: noirq restore of devices complete after 14.580 msecs
<7>[27286.544570] Setting wake for GPIO 8 to disable
<7>[27286.546182] PM: early restore of devices complete after 1.603 msecs
<7>[27287.209677] PM: hibernation: Need to copy 3189249 pages
<7>[27287.209686] PM: hibernation: Normal pages needed: 3189249 + 1024, available pages: 5017022
<3>[27290.348995] mt7921e 0000:01:00.0: Message 00020007 (seq 1) timeout
<3>[27290.349016] mt7921e 0000:01:00.0: PM: dpm_run_callback(): pci_pm_restore returns -110
<3>[27290.349030] mt7921e 0000:01:00.0: PM: failed to restore: error -110
<6>[27290.349539] amdgpu 0000:c1:00.0: [drm] PCIE GART of 512M enabled (table at 0x000000801FD00000).
<6>[27290.349578] amdgpu 0000:c1:00.0: PSP is resuming...
<6>[27290.357608] nvme nvme0: 12/0/0 default/read/poll queues
<6>[27290.373750] amdgpu 0000:c1:00.0: reserve 0x4000000 from 0x8018000000 for PSP TMR
<6>[27290.423949] mt7921e 0000:01:00.0: HW/SW Version: 0x8a108a10, Build Time: 20260224103145a
<6>[27290.794622] mt7921e 0000:01:00.0: WM Firmware Version: ____000000, Build Time: 20260224103233
<6>[27291.092243] amdgpu 0000:c1:00.0: RAS: optional ras ta ucode is not available
<6>[27291.100333] amdgpu 0000:c1:00.0: RAP: optional rap ta ucode is not available
<6>[27291.100337] amdgpu 0000:c1:00.0: SECUREDISPLAY: optional securedisplay ta ucode is not available
<6>[27291.100341] amdgpu 0000:c1:00.0: SMU is resuming...
<6>[27291.126544] amdgpu 0000:c1:00.0: SMU is resumed successfully!
<6>[27291.134479] amdgpu 0000:c1:00.0: [drm] DMUB hardware initialized: version=0x08005B00
<6>[27291.257460] amdgpu 0000:c1:00.0: [drm] Applying panel backlight quirk, min_brightness: 0
<6>[27291.411954] amdgpu 0000:c1:00.0: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
<6>[27291.411964] amdgpu 0000:c1:00.0: ring comp_1.0.0 uses VM inv eng 1 on hub 0
<6>[27291.411967] amdgpu 0000:c1:00.0: ring comp_1.1.0 uses VM inv eng 4 on hub 0
<6>[27291.411970] amdgpu 0000:c1:00.0: ring comp_1.2.0 uses VM inv eng 6 on hub 0
<6>[27291.411973] amdgpu 0000:c1:00.0: ring comp_1.3.0 uses VM inv eng 7 on hub 0
<6>[27291.411976] amdgpu 0000:c1:00.0: ring comp_1.0.1 uses VM inv eng 8 on hub 0
<6>[27291.411978] amdgpu 0000:c1:00.0: ring comp_1.1.1 uses VM inv eng 9 on hub 0
<6>[27291.411981] amdgpu 0000:c1:00.0: ring comp_1.2.1 uses VM inv eng 10 on hub 0
<6>[27291.411984] amdgpu 0000:c1:00.0: ring comp_1.3.1 uses VM inv eng 11 on hub 0
<6>[27291.411987] amdgpu 0000:c1:00.0: ring sdma0 uses VM inv eng 12 on hub 0
<6>[27291.411990] amdgpu 0000:c1:00.0: ring vcn_unified_0 uses VM inv eng 0 on hub 8
<6>[27291.411992] amdgpu 0000:c1:00.0: ring jpeg_dec uses VM inv eng 1 on hub 8
<6>[27291.411995] amdgpu 0000:c1:00.0: ring mes_kiq_3.1.0 uses VM inv eng 13 on hub 0
<5>[27291.462432] usb usb1: root hub lost power or was reset
<5>[27291.462444] usb usb2: root hub lost power or was reset
<5>[27291.463958] usb usb3: root hub lost power or was reset
<5>[27291.463963] usb usb4: root hub lost power or was reset
<5>[27291.581050] usb usb5: root hub lost power or was reset
<5>[27291.581063] usb usb6: root hub lost power or was reset
<5>[27291.582009] usb usb7: root hub lost power or was reset
<5>[27291.582018] usb usb8: root hub lost power or was reset
<6>[27291.582875] ACPI: EC: event unblocked
<4>[27292.371747] queueing ieee80211 work while going to suspend
<6>[27292.632228] usb 3-1: reset high-speed USB device number 2 using xhci_hcd
<4>[27292.798078] usb 1-4: WARN: invalid context state for evaluate context command.
<6>[27292.910318] usb 1-4: reset full-speed USB device number 2 using xhci_hcd
<6>[27293.174293] usb 1-5: reset high-speed USB device number 3 using xhci_hcd
<7>[27293.395935] PM: restore of devices complete after 6094.984 msecs
<6>[27293.395940] wlp1s0: Driver requested disconnection from AP 00:00:00:00:00:00
<7>[27293.396023] GFP mask restored
<7>[27293.405323] PM: hibernation: Hibernation image restored successfully.
<7>[27293.405562] PM: hibernation: Basic memory bitmaps freed
<6>[27293.405758] OOM killer enabled.
<6>[27293.405761] Restarting tasks: Starting
<6>[27293.407501] Restarting tasks: Done
<6>[27293.407516] efivarfs: resyncing variable state
<6>[27293.407966] efivarfs: removing variable HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
<6>[27293.413140] Bluetooth: hci0: HW/SW Version: 0x008a008a, Build Time: 20260224103448
<6>[27293.415553] efivarfs: finished resyncing variable state
<6>[27293.417864] PM: hibernation: hibernation exit
<6>[27294.502016] input: vicinae-snippet-virtual-keyboard as /devices/virtual/input/input21
<6>[27295.675414] Bluetooth: hci0: Device setup in 2211316 usecs
<4>[27295.675427] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
<6>[27295.733925] Bluetooth: MGMT ver 1.23
<6>[27295.975195] wlp1s0: authenticate with 8c:3b:ad:40:76:f6 (local address=04:68:74:dd:fa:93)
<6>[27296.191508] wlp1s0: send auth to 8c:3b:ad:40:76:f6 (try 1/3)
<6>[27296.700540] wlp1s0: send auth to 8c:3b:ad:40:76:f6 (try 2/3)
<6>[27296.804628] wlp1s0: send auth to 8c:3b:ad:40:76:f6 (try 3/3)
<6>[27297.213424] wlp1s0: authentication with 8c:3b:ad:40:76:f6 timed out
<6>[27307.629589] wlp1s0: authenticate with 8c:3b:ad:40:76:f7 (local address=04:68:74:dd:fa:93)
<6>[27308.110047] wlp1s0: send auth to 8c:3b:ad:40:76:f7 (try 1/3)
<6>[27308.119903] wlp1s0: authenticated
<6>[27308.121094] wlp1s0: associate with 8c:3b:ad:40:76:f7 (try 1/3)
<6>[27308.143957] wlp1s0: RX AssocResp from 8c:3b:ad:40:76:f7 (capab=0x131 status=0 aid=4)
<6>[27308.173894] wlp1s0: associated
<7>[27308.405818] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 8c:3b:ad:40:76:f7
<4>[28310.772017] slab kmalloc-rnd-09-256 start ffff8bd39ef84000 pointer offset 64 size 256
<3>[28310.772030] list_del corruption. next->prev should be ffff8bd321281e20, but was ffff8bd39ef84040. (next=ffff8bd39ef84040)
<4>[28310.772043] ------------[ cut here ]------------
<2>[28310.772045] kernel BUG at lib/list_debug.c:65!
<4>[28310.772055] Oops: invalid opcode: 0000 [#1] SMP NOPTI
<4>[28310.772062] CPU: 11 UID: 1000 PID: 2869 Comm: .swayosd-server Tainted: G W O 7.0.11 #1-NixOS PREEMPT(lazy)
<4>[28310.772068] Tainted: [W]=WARN, [O]=OOT_MODULE
<4>[28310.772071] Hardware name: Framework Laptop 13 (AMD Ryzen 7040Series)/FRANMDCP05, BIOS 03.17 11/14/2025
<4>[28310.772074] RIP: 0010:__list_del_entry_valid_or_report+0x10e/0x110
<4>[28310.772083] Code: d7 48 89 14 24 e8 a2 6f c3 ff 48 8b 14 24 48 8b 74 24 08 48 c7 c7 e8 b1 67 9b 48 8b 42 08 48 89 d1 48 89 c2 e8 73 4c 84 ff 90 <0f> 0b 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 f3 0f 1e fa
<4>[28310.772087] RSP: 0018:ffffd18a821e7a40 EFLAGS: 00010246
<4>[28310.772092] RAX: 000000000000006d RBX: ffff8bd321281de0 RCX: 0000000000000027
<4>[28310.772095] RDX: 0000000000000000 RSI: 0000000000000001 RDI: ffff8bda5e79e9c0
<4>[28310.772097] RBP: ffff8bd31ba0ee38 R08: 0000000000000000 R09: 00000000ffffdfff
<4>[28310.772100] R10: ffffffff9be5f640 R11: ffffd18a821e78f0 R12: ffff8bd321281e20
<4>[28310.772103] R13: ffffd18a821e7bc0 R14: 0000000000000040 R15: ffff8bd31ba0f6b0
<4>[28310.772105] FS: 000079fecd2723c0(0000) GS:ffff8bdac1e5d000(0000) knlGS:0000000000000000
<4>[28310.772109] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[28310.772111] CR2: 000079fe8979c000 CR3: 0000000114434000 CR4: 0000000000f50ef0
<4>[28310.772114] PKRU: 55555554
<4>[28310.772117] Call Trace:
<4>[28310.772121] <TASK>
<4>[28310.772128] ttm_resource_move_to_lru_tail+0x93/0x160 [ttm]
<4>[28310.772145] amdgpu_gem_create_ioctl+0x1ac/0x390 [amdgpu]
<4>[28310.772483] ? __pfx_amdgpu_bo_user_destroy+0x10/0x10 [amdgpu]
<4>[28310.772798] ? __pfx_amdgpu_gem_create_ioctl+0x10/0x10 [amdgpu]
<4>[28310.773178] drm_ioctl_kernel+0xae/0x100
<4>[28310.773192] drm_ioctl+0x27e/0x5a0
<4>[28310.773201] ? __pfx_amdgpu_gem_create_ioctl+0x10/0x10 [amdgpu]
<4>[28310.773677] amdgpu_drm_ioctl+0x4a/0x80 [amdgpu]
<4>[28310.774105] __x64_sys_ioctl+0x97/0xe0
<4>[28310.774116] do_syscall_64+0x10f/0x1540
<4>[28310.774127] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[28310.774134] ? inode_set_ctime_current+0x50/0x270
<4>[28310.774140] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[28310.774146] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[28310.774151] ? page_counter_uncharge+0x4a/0x80
<4>[28310.774158] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[28310.774164] ? drain_stock+0x7d/0xa0
<4>[28310.774170] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[28310.774176] ? refill_stock+0x1c1/0x200
<4>[28310.774182] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[28310.774187] ? obj_cgroup_uncharge_pages+0x5d/0xe0
<4>[28310.774193] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[28310.774200] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[28310.774205] ? refill_obj_stock+0x12e/0x240
<4>[28310.774212] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[28310.774217] ? __memcg_slab_free_hook+0xf8/0x150
<4>[28310.774223] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[28310.774227] ? kmem_cache_free+0xb7/0x410
<4>[28310.774232] ? task_work_run+0x5d/0x90
<4>[28310.774239] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[28310.774242] ? __fput+0x16d/0x2b0
<4>[28310.774249] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[28310.774253] ? irqentry_exit+0x7a/0x730
<4>[28310.774258] ? srso_alias_return_thunk+0x5/0xfbef5
<4>[28310.774262] ? __irq_exit_rcu+0x4c/0xf0
<4>[28310.774268] entry_SYSCALL_64_after_hwframe+0x77/0x7f
<4>[28310.774273] RIP: 0033:0x79fecf320fbd
<4>[28310.774302] Code: 04 25 28 00 00 00 48 89 45 c8 31 c0 48 8d 45 10 c7 45 b0 10 00 00 00 48 89 45 b8 48 8d 45 d0 48 89 45 c0 b8 10 00 00 00 0f 05 <89> c2 3d 00 f0 ff ff 77 22 48 8b 45 c8 64 48 2b 04 25 28 00 00 00
<4>[28310.774305] RSP: 002b:00007ffe9f770ed0 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
<4>[28310.774311] RAX: ffffffffffffffda RBX: 0000000000000244 RCX: 000079fecf320fbd
<4>[28310.774314] RDX: 00007ffe9f770f80 RSI: 00000000c0206440 RDI: 0000000000000015
<4>[28310.774316] RBP: 00007ffe9f770f20 R08: 0000000000000000 R09: 0000000000000000
<4>[28310.774319] R10: 0000000000000004 R11: 0000000000000246 R12: 00007ffe9f770f80
<4>[28310.774321] R13: 00000000c0206440 R14: 0000000000000015 R15: 0000000000040000
<4>[28310.774330] </TASK>
<4>[28310.774333] Modules linked in: xt_connmark xt_mark ccm rfcomm snd_seq_dummy snd_hrtimer snd_seq snd_seq_device af_packet xt_MASQUERADE xfrm_user xfrm_algo xt_set ip_set nft_chain_nat xt_addrtype overlay tun uhid cmac algif_hash algif_skcipher af_alg bnep nls_iso8859_1 nls_cp437 vfat fat snd_sof_amd_acp70 snd_sof_amd_acp63 snd_sof_amd_vangogh snd_sof_amd_rembrandt snd_sof_amd_renoir snd_sof_amd_acp snd_sof_pci snd_sof_xtensa_dsp snd_sof hid_sensor_als hid_sensor_trigger kfifo_buf snd_sof_utils hid_sensor_iio_common snd_pci_ps snd_soc_acpi_amd_match industrialio snd_soc_acpi_amd_sdca_quirks snd_amd_sdw_acpi soundwire_amd snd_hda_codec_alc269 soundwire_generic_allocation mousedev snd_hda_codec_realtek_lib soundwire_bus snd_hda_scodec_component snd_soc_sdca snd_hda_codec_generic snd_hda_codec_atihdmi mt7921e mt7921_common snd_hda_codec_hdmi joydev snd_soc_core mt792x_lib snd_hda_intel spd5118 hid_multitouch hid_sensor_hub snd_compress mt76_connac_lib ac97_bus intel_rapl_msr snd_hda_codec snd_pcm_dmaengine mt76
<4>[28310.774428] snd_rpl_pci_acp6x snd_hda_core btusb mac80211 snd_acp_pci uvcvideo btrtl snd_amd_acpi_mach btintel videobuf2_vmalloc snd_acp_legacy_common snd_intel_dspcfg uvc btmtk snd_intel_sdw_acpi snd_pci_acp6x videobuf2_memops snd_hwdep sp5100_tco btbcm videobuf2_v4l2 snd_pci_acp5x watchdog snd_pcm cfg80211 videobuf2_common snd_rn_pci_acp3x amd_pmf snd_acp_config edac_mce_amd bluetooth i2c_piix4 videodev amdtee ucsi_acpi edac_core snd_soc_acpi typec_ucsi amd_sfh snd_timer amd_atl intel_rapl_common ecdh_generic snd rfkill ghash_clmulni_intel aesni_intel rapl wmi_bmof roles framework_laptop(O) tiny_power_button platform_profile onboard_usb_dev k10temp mc ecc amdxdna i2c_smbus libarc4 snd_pci_acp3x soundcore thermal rtc_cmos typec ac i2c_hid_acpi tee i2c_hid button amd_pmc evdev input_leds mac_hid serio_raw xt_conntrack xt_tcpudp ip6t_rpfilter ipt_rpfilter xt_pkttype nft_compat leds_cros_ec cros_charge_control cros_kbd_led_backlight led_class_multicolor cros_ec_sysfs cros_ec_hwmon battery led_class cros_ec_debugfs
<4>[28310.774543] gpio_cros_ec cros_ec_chardev nf_tables cros_ec_dev sch_fq_codel kvm_amd ccp kvm xt_nat br_netfilter x_tables nf_nat bridge nf_conntrack cros_ec_lpcs irqbypass ramoops cros_ec nf_defrag_ipv6 cros_ec_proto nf_defrag_ipv4 stp uinput veth reed_solomon loop llc fuse configfs nfnetlink zram 842_decompress 842_compress lz4hc_compress lz4_compress dmi_sysfs ext4 mbcache jbd2 hid_generic usbhid atkbd hid libps2 vivaldi_fmap nvme thunderbolt nvme_core xhci_pci nvme_keyring i8042 nvme_auth xhci_hcd hkdf serio amdgpu amdxcp i2c_algo_bit drm_ttm_helper ttm drm_exec drm_panel_backlight_quirks gpu_sched drm_suballoc_helper video wmi drm_buddy drm_display_helper dm_mod cec crc16 efivarfs autofs4
<4>[28310.774664] ---[ end trace 0000000000000000 ]---
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-06-17 0:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20260615234922.151263-1-skainsworth@gmail.com>
2026-06-15 23:49 ` [PATCH v1 1/2] drm/ttm: don't leave bulk_move cursor dangling for unevictable resources Samuel Ainsworth
2026-06-16 7:12 ` Christian König
2026-06-17 0:13 ` Samuel Ainsworth
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).