]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
udc: net2280: Fix net2280_disable
authorGuido Kiener <guido.kiener@rohde-schwarz.com>
Mon, 4 Feb 2019 18:04:20 +0000 (19:04 +0100)
committerFelipe Balbi <felipe.balbi@linux.intel.com>
Wed, 6 Feb 2019 06:40:09 +0000 (08:40 +0200)
A reset e.g. calling ep_reset_338x() can happen while endpoints
are enabled. The ep_reset_338x() sets ep->desc = NULL to mark
endpoint being invalid. A subsequent call of net2280_disable will
fail and return -EINVAL to parent function usb_ep_disable(),
which will fail, too, and do not set the member ep->enabled = false.

See:
https://elixir.bootlin.com/linux/v5.0-rc5/source/drivers/usb/gadget/udc/core.c#L139

This fix ignores dp->desc and allows net2280_disable() to succeed.
Subsequent calls to usb_ep_enable()/usb_ep_disable() succeeds.

Acked-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Guido Kiener <guido.kiener@rohde-schwarz.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
drivers/usb/gadget/udc/net2280.c

index e7dae5379e0416a0d46270636904e3cfe892887d..7154f00dea400c13c082d81cd1731d2550c7ac0c 100644 (file)
@@ -516,8 +516,8 @@ static int net2280_disable(struct usb_ep *_ep)
        unsigned long           flags;
 
        ep = container_of(_ep, struct net2280_ep, ep);
-       if (!_ep || !ep->desc || _ep->name == ep0name) {
-               pr_err("%s: Invalid ep=%p or ep->desc\n", __func__, _ep);
+       if (!_ep || _ep->name == ep0name) {
+               pr_err("%s: Invalid ep=%p\n", __func__, _ep);
                return -EINVAL;
        }
        spin_lock_irqsave(&ep->dev->lock, flags);