public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] usb: dwc3: gadget: Fail request submission if it was already queued
@ 2019-01-11  6:02 Manu Gautam
  2019-01-11  7:43 ` Felipe Balbi
  0 siblings, 1 reply; 5+ messages in thread
From: Manu Gautam @ 2019-01-11  6:02 UTC (permalink / raw)
  To: Felipe Balbi
  Cc: linux-arm-msm, Manu Gautam, Greg Kroah-Hartman,
	open list:DESIGNWARE USB3 DRD IP DRIVER, open list

If a function driver tries to re-submit an already queued request,
it can results in corruption of pending/started request lists.
Catch such conditions and fail the request submission to DCD.

Signed-off-by: Manu Gautam <mgautam@codeaurora.org>
---
 drivers/usb/dwc3/gadget.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
index 679c12e14522..51716c6b286a 100644
--- a/drivers/usb/dwc3/gadget.c
+++ b/drivers/usb/dwc3/gadget.c
@@ -1290,6 +1290,12 @@ static int __dwc3_gadget_ep_queue(struct dwc3_ep *dep, struct dwc3_request *req)
 				&req->request, req->dep->name))
 		return -EINVAL;
 
+	if (req->request.status == -EINPROGRESS) {
+		dev_err(dwc->dev, "%s: %pK request already in queue\n",
+					dep->name, req);
+		return -EBUSY;
+	}
+
 	pm_runtime_get(dwc->dev);
 
 	req->request.actual	= 0;
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-01-16  4:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-01-11  6:02 [PATCH] usb: dwc3: gadget: Fail request submission if it was already queued Manu Gautam
2019-01-11  7:43 ` Felipe Balbi
2019-01-11  8:24   ` Manu Gautam
2019-01-11  9:21     ` Felipe Balbi
2019-01-16  4:34       ` Manu Gautam

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox