Commit 10011a12 authored by Ioan-Adrian Ratiu's avatar Ioan-Adrian Ratiu Committed by Sasha Levin

ALSA: usb-audio: test EP_FLAG_RUNNING at urb completion

[ Upstream commit 13a6c832 ]

Testing EP_FLAG_RUNNING in snd_complete_urb() before running the completion
logic allows us to save a few cpu cycles by returning early, skipping the
pending urb in case the stream was stopped; the stop logic handles the urb
and sets the completion callbacks to NULL.
Signed-off-by: default avatarIoan-Adrian Ratiu <adi@adirat.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
Signed-off-by: default avatarSasha Levin <alexander.levin@verizon.com>
parent 88115d3b
...@@ -361,6 +361,9 @@ static void snd_complete_urb(struct urb *urb) ...@@ -361,6 +361,9 @@ static void snd_complete_urb(struct urb *urb)
if (unlikely(atomic_read(&ep->chip->shutdown))) if (unlikely(atomic_read(&ep->chip->shutdown)))
goto exit_clear; goto exit_clear;
if (unlikely(!test_bit(EP_FLAG_RUNNING, &ep->flags)))
goto exit_clear;
if (usb_pipeout(ep->pipe)) { if (usb_pipeout(ep->pipe)) {
retire_outbound_urb(ep, ctx); retire_outbound_urb(ep, ctx);
/* can be stopped during retire callback */ /* can be stopped during retire callback */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment