This is a note to let you know that I've just added the patch titled usb: gadget: f_sourcesink: Fix isoc transfer for USB_SPEED_SUPER_PLUS to the 5.16-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: usb-gadget-f_sourcesink-fix-isoc-transfer-for-usb_speed_super_plus.patch and it can be found in the queue-5.16 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 904edf8aeb459697129be5fde847e2a502f41fd9 Mon Sep 17 00:00:00 2001 From: Pavankumar Kondeti <quic_pkondeti@xxxxxxxxxxx> Date: Sat, 22 Jan 2022 08:33:22 +0530 Subject: usb: gadget: f_sourcesink: Fix isoc transfer for USB_SPEED_SUPER_PLUS From: Pavankumar Kondeti <quic_pkondeti@xxxxxxxxxxx> commit 904edf8aeb459697129be5fde847e2a502f41fd9 upstream. Currently when gadget enumerates in super speed plus, the isoc endpoint request buffer size is not calculated correctly. Fix this by checking the gadget speed against USB_SPEED_SUPER_PLUS and update the request buffer size. Fixes: 90c4d05780d4 ("usb: fix various gadgets null ptr deref on 10gbps cabling.") Cc: stable <stable@xxxxxxxxxxxxxxx> Signed-off-by: Pavankumar Kondeti <quic_pkondeti@xxxxxxxxxxx> Link: https://lore.kernel.org/r/1642820602-20619-1-git-send-email-quic_pkondeti@xxxxxxxxxxx Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/usb/gadget/function/f_sourcesink.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/usb/gadget/function/f_sourcesink.c +++ b/drivers/usb/gadget/function/f_sourcesink.c @@ -584,6 +584,7 @@ static int source_sink_start_ep(struct f if (is_iso) { switch (speed) { + case USB_SPEED_SUPER_PLUS: case USB_SPEED_SUPER: size = ss->isoc_maxpacket * (ss->isoc_mult + 1) * Patches currently in stable-queue which might be from quic_pkondeti@xxxxxxxxxxx are queue-5.16/usb-gadget-f_sourcesink-fix-isoc-transfer-for-usb_speed_super_plus.patch