diff options
author | Takashi Iwai <tiwai@suse.de> | 2013-07-11 11:55:57 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2013-07-15 12:12:49 -0400 |
commit | 60478295d6876619f8f47f6d1a5c25eaade69ee3 (patch) | |
tree | eacf6a2e3f0ed8eb7ec878591327c16ebd5240db /sound/pci/asihpi | |
parent | 1abfeb03a9ee05097aaa33a0f44984fc82131b7f (diff) |
ALSA: asihpi: Fix unlocked snd_pcm_stop() call
snd_pcm_stop() must be called in the PCM substream lock context.
Cc: <stable@vger.kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/asihpi')
-rw-r--r-- | sound/pci/asihpi/asihpi.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/pci/asihpi/asihpi.c b/sound/pci/asihpi/asihpi.c index 185d54a5cb1a..dc632cdc3870 100644 --- a/sound/pci/asihpi/asihpi.c +++ b/sound/pci/asihpi/asihpi.c | |||
@@ -769,7 +769,10 @@ static void snd_card_asihpi_timer_function(unsigned long data) | |||
769 | s->number); | 769 | s->number); |
770 | ds->drained_count++; | 770 | ds->drained_count++; |
771 | if (ds->drained_count > 20) { | 771 | if (ds->drained_count > 20) { |
772 | unsigned long flags; | ||
773 | snd_pcm_stream_lock_irqsave(s, flags); | ||
772 | snd_pcm_stop(s, SNDRV_PCM_STATE_XRUN); | 774 | snd_pcm_stop(s, SNDRV_PCM_STATE_XRUN); |
775 | snd_pcm_stream_unlock_irqrestore(s, flags); | ||
773 | continue; | 776 | continue; |
774 | } | 777 | } |
775 | } else { | 778 | } else { |