From 35383a24129a47a0b8365ed17d3dcd2f75175929 Mon Sep 17 00:00:00 2001 From: Eric Laurent Date: Wed, 2 Mar 2016 09:54:57 -0800 Subject: [PATCH] ALSA: compress: allow writes in SNDRV_PCM_STATE_PREPARED state Allow writes in SNDRV_PCM_STATE_PREPARED state so that more than one buffer fragment can be written from user space before calling SNDRV_COMPRESS_START. Signed-off-by: Eric Laurent Acked-by: Vinod Koul Signed-off-by: Takashi Iwai --- sound/core/compress_offload.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/core/compress_offload.c b/sound/core/compress_offload.c index 7fac3cae8abd..9e7c2f0831d7 100644 --- a/sound/core/compress_offload.c +++ b/sound/core/compress_offload.c @@ -286,6 +286,7 @@ static ssize_t snd_compr_write(struct file *f, const char __user *buf, mutex_lock(&stream->device->lock); /* write is allowed when stream is running or has been steup */ if (stream->runtime->state != SNDRV_PCM_STATE_SETUP && + stream->runtime->state != SNDRV_PCM_STATE_PREPARED && stream->runtime->state != SNDRV_PCM_STATE_RUNNING) { mutex_unlock(&stream->device->lock); return -EBADFD; -- 2.25.1