Intel AX210 doesn't work after resume from sleep

Hello,
Since the last two updates on Opensuse Tumbleweed Slowroll the wifi doesn’t work avec resume from sleep. My computer has an Intex AX 210 wifi card.
The dmesg command tells “Not associated and the session protection is over” and " Couldn’t get the d3 notif -2".
I have unload and reload the iwlmvm and iwlfiwi modules to get the wifi working again.
I don’t know if someone get the same error and find a solution.
Thanks.

I can only offer a workaround here. Since unloading and reloading the driver works for you after a resume, you could use a custom systemd sleep script (located in the /usr/lib/systemd/system-sleep/ directory) to automate this process.

A similar thread:

HI,
Yes, it works fine.
But what is curious is that everything did work fine before an kernel update.
I’ll try to post a bug for the kernel.
Thanks a lot for your answer.

Thanks for the feedback, and please share a link to the bug report when you get to that point. It may help others who come searching.

In fact, one has just to remove the iwlmvm module:
#!/bin/sh
case $1/$2 in
pre/)
modprobe -r iwlmvm
;;
post/
)
modprobe iwlmvm
;;
esac

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.