This is a note to let you know that I've just added the patch titled
ALSA: Add SNDRV_PCM_STATE_PAUSED case in wait_for_avail function
to the 3.4-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
alsa-add-sndrv_pcm_state_paused-case-in-wait_for_avail-function.patch
and it can be found in the queue-3.4 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.
>From ed697e1aaf7237b1a62af39f64463b05c262808d Mon Sep 17 00:00:00 2001
From: JongHo Kim <[email protected]>
Date: Tue, 17 Dec 2013 23:02:24 +0900
Subject: ALSA: Add SNDRV_PCM_STATE_PAUSED case in wait_for_avail function
From: JongHo Kim <[email protected]>
commit ed697e1aaf7237b1a62af39f64463b05c262808d upstream.
When the process is sleeping at the SNDRV_PCM_STATE_PAUSED
state from the wait_for_avail function, the sleep process will be woken by
timeout(10 seconds). Even if the sleep process wake up by timeout, by this
patch, the process will continue with sleep and wait for the other state.
Signed-off-by: JongHo Kim <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
sound/core/pcm_lib.c | 2 ++
1 file changed, 2 insertions(+)
--- a/sound/core/pcm_lib.c
+++ b/sound/core/pcm_lib.c
@@ -1847,6 +1847,8 @@ static int wait_for_avail(struct snd_pcm
case SNDRV_PCM_STATE_DISCONNECTED:
err = -EBADFD;
goto _endloop;
+ case SNDRV_PCM_STATE_PAUSED:
+ continue;
}
if (!tout) {
snd_printd("%s write error (DMA or IRQ trouble?)\n",
Patches currently in stable-queue which might be from [email protected] are
queue-3.4/alsa-add-sndrv_pcm_state_paused-case-in-wait_for_avail-function.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html