ALSA: hda - Fix pending unsol events at shutdown
authorTakashi Iwai <tiwai@suse.de>
Mon, 28 Oct 2019 10:58:03 +0000 (11:58 +0100)
committerTakashi Iwai <tiwai@suse.de>
Mon, 28 Oct 2019 11:44:28 +0000 (12:44 +0100)
This is an alternative fix attemp for the issue reported in the commit
caa8422d01e9 ("ALSA: hda: Flush interrupts on disabling") that was
reverted later due to regressions.  Instead of tweaking the hardware
disablement order and the enforced irq flushing, do calling
cancel_work_sync() of the unsol work early enough, and explicitly
ignore the unsol events during the shutdown by checking the
bus->shutdown flag.

Fixes: caa8422d01e9 ("ALSA: hda: Flush interrupts on disabling")
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Link: https://lore.kernel.org/r/s5h1ruxt9cz.wl-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/hda_bind.c
sound/pci/hda/hda_intel.c

index 8272b50b83493f6d0f0485b221f82b6068283863..6a85645663759d097e2615444ae72618fb915526 100644 (file)
@@ -43,6 +43,10 @@ static void hda_codec_unsol_event(struct hdac_device *dev, unsigned int ev)
 {
        struct hda_codec *codec = container_of(dev, struct hda_codec, core);
 
+       /* ignore unsol events during shutdown */
+       if (codec->bus->shutdown)
+               return;
+
        if (codec->patch_ops.unsol_event)
                codec->patch_ops.unsol_event(codec, ev);
 }
index 2a9d87ff2e1ce0f8ff280626f949ccf732e0d1d7..121b20121dae8c44ffa263c01752e2edcfc22da8 100644 (file)
@@ -1389,8 +1389,11 @@ static int azx_free(struct azx *chip)
 static int azx_dev_disconnect(struct snd_device *device)
 {
        struct azx *chip = device->device_data;
+       struct hdac_bus *bus = azx_bus(chip);
 
        chip->bus.shutdown = 1;
+       cancel_work_sync(&bus->unsol_work);
+
        return 0;
 }