]> www.infradead.org Git - users/jedix/linux-maple.git/commit
ALSA: usb-audio: Notify xrun for low-latency mode
authorTakashi Iwai <tiwai@suse.de>
Thu, 28 Nov 2024 08:04:16 +0000 (09:04 +0100)
committerTakashi Iwai <tiwai@suse.de>
Fri, 29 Nov 2024 13:59:41 +0000 (14:59 +0100)
commit4f9d674377d090e38d93360bd4df21b67534d622
treee6b8db65bb385d5f87ec35b717e337633b89085b
parent947c4012f8f03a8bb946beb6e5294d5e32817d67
ALSA: usb-audio: Notify xrun for low-latency mode

The low-latency mode of USB-audio driver uses a similar approach like
the implicit feedback mode but it has an explicit queuing at the
trigger start time.  The difference is, however, that no packet will
be handled any longer after all queued packets are handled but no
enough data is fed.  In the case of implicit feedback mode, the
capture-side packet handling triggers the re-queuing, and this checks
the XRUN.  OTOH, in the low-latency mode, it just stops without XRUN
notification unless any new action is taken from user-space via ack
callback.  For example, when you stop the stream in aplay, no XRUN is
reported.

This patch adds the XRUN check at the packet complete callback in the
case all pending URBs are exhausted.  Strictly speaking, this state
doesn't match really with XRUN; in theory the application may queue
immediately after this happens.  But such behavior is only for
1-period configuration, which the USB-audio driver doesn't support.
So we may conclude that this situation leads certainly to XRUN.

A caveat is that the XRUN should be triggered only for the PCM RUNNING
state, and not during DRAINING.  This additional state check is put in
notify_xrun(), too.

Fixes: d5f871f89e21 ("ALSA: usb-audio: Improved lowlatency playback support")
Reported-by: Leonard Crestez <cdleonard@gmail.com>
Link: https://lore.kernel.org/25d5b0d8-4efd-4630-9d33-7a9e3fa9dc2b@gmail.com
Link: https://patch.msgid.link/20241128080446.1181-1-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/usb/endpoint.c