ALSA: ctl: Stop notification after disconnection
authorTakashi Iwai <tiwai@suse.de>
Fri, 8 Jul 2016 06:05:19 +0000 (08:05 +0200)
committerWilly Tarreau <w@1wt.eu>
Sat, 27 Aug 2016 09:40:27 +0000 (11:40 +0200)
commit34abd998cd244b5f53cfe2e9f26ab3c6289a362b
tree48eef2e257c47bd384dfd6f34cf331e66a48ee67
parentb753d79cc246a290c7b64d38091d47acfc577e0c
ALSA: ctl: Stop notification after disconnection

commit f388cdcdd160687c6650833f286b9c89c50960ff upstream.

snd_ctl_remove() has a notification for the removal event.  It's
superfluous when done during the device got disconnected.  Although
the notification itself is mostly harmless, it may potentially be
harmful, and should be suppressed.  Actually some components PCM may
free ctl elements during the disconnect or free callbacks, thus it's
no theoretical issue.

This patch adds the check of card->shutdown flag for avoiding
unnecessary notifications after (or during) the disconnect.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Willy Tarreau <w@1wt.eu>
sound/core/control.c