New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kernel crash/hang during sys-net shutdown #1978

Open
marmarek opened this Issue May 10, 2016 · 1 comment

Comments

Projects
None yet
3 participants
@marmarek
Member

marmarek commented May 10, 2016

https://groups.google.com/d/msgid/qubes-users/2732b4d5da4cc5d319468510e81039cc1540%40guerrillamail.com.

iwlwifi module crashes during sys-net shutdown. Most likely because of removing underlying PCI device without detaching driver first.

@t-pa

This comment has been minimized.

Show comment
Hide comment
@t-pa

t-pa Jun 16, 2016

I have the same problem on a Thinkpad X260. The workaround of unloading the iwlwifi module before shutdown as suggested by Marek solves this problem for me:

#!/bin/bash
qvm-shutdown --wait --all --exclude=sys-net
qvm-run sys-net "sudo ifconfig wlp0s1 down; sudo modprobe -r iwlmvm; sudo modprobe -r iwlwifi"
qvm-shutdown --wait sys-net
sudo shutdown now

t-pa commented Jun 16, 2016

I have the same problem on a Thinkpad X260. The workaround of unloading the iwlwifi module before shutdown as suggested by Marek solves this problem for me:

#!/bin/bash
qvm-shutdown --wait --all --exclude=sys-net
qvm-run sys-net "sudo ifconfig wlp0s1 down; sudo modprobe -r iwlmvm; sudo modprobe -r iwlwifi"
qvm-shutdown --wait sys-net
sudo shutdown now
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment