diff mbox series

[v3] ALSA: pcm: Return 0 when size < start_threshold in capture

Message ID 20180825195322.GA4521@localhost.localdomain (mailing list archive)
State New, archived
Headers show
Series [v3] ALSA: pcm: Return 0 when size < start_threshold in capture | expand

Commit Message

Ricardo Biehl Pasquali Aug. 25, 2018, 7:53 p.m. UTC
In __snd_pcm_lib_xfer(), when capture, if state is PREPARED
and size is less than start_threshold nothing can be done.
As there is no error, 0 is returned.

Signed-off-by: Ricardo Biehl Pasquali <pasqualirb@gmail.com>
---

version 3:
Set 'err' variable inside 'else' block.

Comments

Takashi Iwai Aug. 26, 2018, 7:31 a.m. UTC | #1
On Sat, 25 Aug 2018 21:53:23 +0200,
Ricardo Biehl Pasquali wrote:
> 
> In __snd_pcm_lib_xfer(), when capture, if state is PREPARED
> and size is less than start_threshold nothing can be done.
> As there is no error, 0 is returned.
> 
> Signed-off-by: Ricardo Biehl Pasquali <pasqualirb@gmail.com>
> ---
> 
> version 3:
> Set 'err' variable inside 'else' block.

OK, re-queued this one in my local branch.  Will be published once
after 4.19-rc1 is released.


thanks,

Takashi
diff mbox series

Patch

--- a/sound/core/pcm_lib.c
+++ b/sound/core/pcm_lib.c
@@ -2173,11 +2173,16 @@  snd_pcm_sframes_t __snd_pcm_lib_xfer(str
 		goto _end_unlock;
 
 	if (!is_playback &&
-	    runtime->status->state == SNDRV_PCM_STATE_PREPARED &&
-	    size >= runtime->start_threshold) {
-		err = snd_pcm_start(substream);
-		if (err < 0)
+	    runtime->status->state == SNDRV_PCM_STATE_PREPARED) {
+		if (size >= runtime->start_threshold) {
+			err = snd_pcm_start(substream);
+			if (err < 0)
+				goto _end_unlock;
+		} else {
+			/* nothing to do */
+			err = 0;
 			goto _end_unlock;
+		}
 	}
 
 	runtime->twake = runtime->control->avail_min ? : 1;