Which Linux distro are you using?
Which release version?
Debian Sid, updated a few days ago.
Which kernel are you using?
Any unmodified upstream kernel around (at least) 6.10.0 to current git (6.12.0 rc4), compiled using .config
file from Debian kernel as a basis (make oldconfig
and accept defaults to handle differences).
Which BIOS version are you using?
3.03
Which Framework Laptop 16 model are you using? (AMD Ryzen™ 7040 Series)
AMD Ryzen 7 7840HS w/ Radeon 780M Graphics
I normally use the Debian-provided kernel, but recently I have been testing upstream kernels. I ran into a strange problem: when I start slack (the desktop client, not the web client at https://slack.com/), the laptop shuts down. It doesn’t hang, or show a kernel panic, or anything like that–it just powers off completely.
This happens within a few seconds of when slack finishes loading and rendering the window.
There are no relevant messages in journalctl -b -1
. Apparently, if anything is logged, it never gets synced to disk.
The Debian kernels are not affected by this. I tracked the difference down to this patch:
https://sources.debian.org/patches/linux/6.11.4-1/debian/snd-pcsp-disable-autoload.patch
If I apply that patch on top of current upstream kernel git, then I do not get the shutdown.
I can also work around the problem by creating /etc/modprobe.d/no-snd_pcsp.conf
:
install snd_pcsp /bin/false
(or by rmmod snd_pcsp
, on a temporary basis).
I have not found any way to induce the problem other than by running slack.
The workaround is not a burden, but I spent a bunch of time narrowing down the problem, and hopefully this report will be useful to someone. I could not find the problem reported elsewhere.
-Corey