From: Michael Grzeschik <m.grzesc...@pengutronix.de>

It is not safe to truncate requests to the maximum possible size the
controller can handle with one td and to keep working. That patch fixes
that with proper error handling instead.

Reported-by: Felipe Balbi <ba...@ti.com>
Signed-off-by: Michael Grzeschik <m.grzesc...@pengutronix.de>
Signed-off-by: Alexander Shishkin <alexander.shish...@linux.intel.com>
---
 drivers/usb/chipidea/udc.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/usb/chipidea/udc.c b/drivers/usb/chipidea/udc.c
index a918edc..bb82fbc 100644
--- a/drivers/usb/chipidea/udc.c
+++ b/drivers/usb/chipidea/udc.c
@@ -1190,9 +1190,9 @@ static int ep_queue(struct usb_ep *ep, struct usb_request 
*req,
        }
 
        if (req->length > 4 * CI13XXX_PAGE_SIZE) {
-               req->length = 4 * CI13XXX_PAGE_SIZE;
                retval = -EMSGSIZE;
-               dev_warn(mEp->ci->dev, "request length truncated\n");
+               dev_err(mEp->ci->dev, "request bigger than one td\n");
+               goto done;
        }
 
        trace_ci_ep_queue_req(mEp, retval);
-- 
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to