module_reload: remove snd_hda_intel

The audio driver uses the power well provided by our driver, so on
Haswell we can't "rmmod i915" if we don't "rmmod snd_hda_intel" first.

The problem with removing snd_hda_intel is that we also need to kill
its users. On the specific machine I tested, the only user seem to be
alsactl, but on other machines this may change. IMHO we should leave
the "kill user space" step to whoever is running the script, but
Daniel asked me to put it here so we have a better chance of Just
Working on QA's machines.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=70336
Requested-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
This commit is contained in:
Paulo Zanoni 2013-10-21 11:45:41 -02:00
parent 3c6a7e780b
commit bd0aa100ca

View File

@ -18,6 +18,10 @@ if ! echo 0 > /sys/class/vtconsole/vtcon1/bind ; then
exit 77 exit 77
fi fi
# The sound driver uses our power well
pkill alsactl
rmmod snd_hda_intel &> /dev/null
#ignore errors in ips - gen5 only #ignore errors in ips - gen5 only
rmmod intel_ips &> /dev/null rmmod intel_ips &> /dev/null
rmmod i915 rmmod i915
@ -38,6 +42,8 @@ fi
modprobe i915 modprobe i915
echo 1 > /sys/class/vtconsole/vtcon1/bind echo 1 > /sys/class/vtconsole/vtcon1/bind
modprobe snd_hda_intel
# try to run something # try to run something
$SOURCE_DIR/gem_exec_nop > /dev/null && echo "module successfully loaded again" $SOURCE_DIR/gem_exec_nop > /dev/null && echo "module successfully loaded again"