lkml.org 
[lkml]   [2016]   [Nov]   [13]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Date
    Subject[PATCH 3.16 048/346] ALSA: ctl: Stop notification after disconnection
    3.16.39-rc1 review patch.  If anyone has any objections, please let me know.

    ------------------

    From: Takashi Iwai <tiwai@suse.de>

    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: Ben Hutchings <ben@decadent.org.uk>
    ---
    sound/core/control.c | 2 ++
    1 file changed, 2 insertions(+)

    --- a/sound/core/control.c
    +++ b/sound/core/control.c
    @@ -150,6 +150,8 @@ void snd_ctl_notify(struct snd_card *car

    if (snd_BUG_ON(!card || !id))
    return;
    + if (card->shutdown)
    + return;
    read_lock(&card->ctl_files_rwlock);
    #if IS_ENABLED(CONFIG_SND_MIXER_OSS)
    card->mixer_oss_change_count++;
    \
     
     \ /
      Last update: 2016-11-14 04:42    [W:3.284 / U:0.216 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site