Commit 8e8e923a authored by Dan Vacura's avatar Dan Vacura Committed by Greg Kroah-Hartman

usb: gadget: uvc: fix dropped frame after missed isoc

With the re-use of the previous completion status in 0d1c407b1a749
("usb: dwc3: gadget: Return proper request status") it could be possible
that the next frame would also get dropped if the current frame has a
missed isoc error. Ensure that an interrupt is requested for the start
of a new frame.

Fixes: fc78941d ("usb: gadget: uvc: decrease the interrupt load to a quarter")
Cc: <stable@vger.kernel.org>
Signed-off-by: default avatarDan Vacura <w36195@motorola.com>
Link: https://lore.kernel.org/r/20221018215044.765044-2-w36195@motorola.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4db0fbb6
...@@ -431,7 +431,8 @@ static void uvcg_video_pump(struct work_struct *work) ...@@ -431,7 +431,8 @@ static void uvcg_video_pump(struct work_struct *work)
/* Endpoint now owns the request */ /* Endpoint now owns the request */
req = NULL; req = NULL;
video->req_int_count++; if (buf->state != UVC_BUF_STATE_DONE)
video->req_int_count++;
} }
if (!req) if (!req)
......
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