public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] usb: dwc2: gadget: sparse warning of context imbalance
@ 2014-10-10 13:09 Sudip Mukherjee
  2014-10-14 20:55 ` Paul Zimmerman
  0 siblings, 1 reply; 3+ messages in thread
From: Sudip Mukherjee @ 2014-10-10 13:09 UTC (permalink / raw)
  To: Paul Zimmerman, Greg Kroah-Hartman
  Cc: Sudip Mukherjee, linux-usb, linux-kernel

sparse was giving the following warning:
	warning: context imbalance in 's3c_hsotg_ep_enable' 
	- different lock contexts for basic block

we were returning ENOMEM while still holding the spinlock.
The sparse warning was fixed by releasing the spinlock before return.

Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
---
 drivers/usb/dwc2/gadget.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/usb/dwc2/gadget.c b/drivers/usb/dwc2/gadget.c
index 7b5856f..046e90d 100644
--- a/drivers/usb/dwc2/gadget.c
+++ b/drivers/usb/dwc2/gadget.c
@@ -2561,8 +2561,10 @@ static int s3c_hsotg_ep_enable(struct usb_ep *ep,
 			hs_ep->fifo_size = val;
 			break;
 		}
-		if (i == 8)
+		if (i == 8) {
+			spin_unlock_irqrestore(&hsotg->lock, flags);
 			return -ENOMEM;
+		}
 	}
 
 	/* for non control endpoints, set PID to D0 */
-- 
1.8.1.2


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

* RE: [PATCH] usb: dwc2: gadget: sparse warning of context imbalance
  2014-10-10 13:09 [PATCH] usb: dwc2: gadget: sparse warning of context imbalance Sudip Mukherjee
@ 2014-10-14 20:55 ` Paul Zimmerman
  2014-10-15  9:17   ` Sudip Mukherjee
  0 siblings, 1 reply; 3+ messages in thread
From: Paul Zimmerman @ 2014-10-14 20:55 UTC (permalink / raw)
  To: Sudip Mukherjee
  Cc: linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org,
	balbi@ti.com

> From: Sudip Mukherjee [mailto:sudipm.mukherjee@gmail.com]
> Sent: Friday, October 10, 2014 6:10 AM
> 
> sparse was giving the following warning:
> 	warning: context imbalance in 's3c_hsotg_ep_enable'
> 	- different lock contexts for basic block
> 
> we were returning ENOMEM while still holding the spinlock.
> The sparse warning was fixed by releasing the spinlock before return.
> 
> Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
> ---
>  drivers/usb/dwc2/gadget.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/usb/dwc2/gadget.c b/drivers/usb/dwc2/gadget.c
> index 7b5856f..046e90d 100644
> --- a/drivers/usb/dwc2/gadget.c
> +++ b/drivers/usb/dwc2/gadget.c
> @@ -2561,8 +2561,10 @@ static int s3c_hsotg_ep_enable(struct usb_ep *ep,
>  			hs_ep->fifo_size = val;
>  			break;
>  		}
> -		if (i == 8)
> +		if (i == 8) {
> +			spin_unlock_irqrestore(&hsotg->lock, flags);
>  			return -ENOMEM;
> +		}
>  	}
> 
>  	/* for non control endpoints, set PID to D0 */

For a long function like this, I'd rather keep a single return point at
the end. Something like this:

 		}
-		if (i == 8)
-			return -ENOMEM;
+		if (i == 8) {
+			ret = -ENOMEM;
+			goto out;
+		}
 	}
...
 
+out:
 	spin_unlock_irqrestore(&hsotg->lock, flags);
 	return ret;
 }

Care to respin the patch like that?

-- 
Paul


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

* Re: [PATCH] usb: dwc2: gadget: sparse warning of context imbalance
  2014-10-14 20:55 ` Paul Zimmerman
@ 2014-10-15  9:17   ` Sudip Mukherjee
  0 siblings, 0 replies; 3+ messages in thread
From: Sudip Mukherjee @ 2014-10-15  9:17 UTC (permalink / raw)
  To: Paul Zimmerman
  Cc: linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org,
	balbi@ti.com

On Tue, Oct 14, 2014 at 08:55:55PM +0000, Paul Zimmerman wrote:
> > From: Sudip Mukherjee [mailto:sudipm.mukherjee@gmail.com]
> > Sent: Friday, October 10, 2014 6:10 AM
> > 
> > sparse was giving the following warning:
> > 	warning: context imbalance in 's3c_hsotg_ep_enable'
> > 	- different lock contexts for basic block
> > 
> > we were returning ENOMEM while still holding the spinlock.
> > The sparse warning was fixed by releasing the spinlock before return.
> > 
> > Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
> > ---
> >  drivers/usb/dwc2/gadget.c | 4 +++-
> >  1 file changed, 3 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/usb/dwc2/gadget.c b/drivers/usb/dwc2/gadget.c
> > index 7b5856f..046e90d 100644
> > --- a/drivers/usb/dwc2/gadget.c
> > +++ b/drivers/usb/dwc2/gadget.c
> > @@ -2561,8 +2561,10 @@ static int s3c_hsotg_ep_enable(struct usb_ep *ep,
> >  			hs_ep->fifo_size = val;
> >  			break;
> >  		}
> > -		if (i == 8)
> > +		if (i == 8) {
> > +			spin_unlock_irqrestore(&hsotg->lock, flags);
> >  			return -ENOMEM;
> > +		}
> >  	}
> > 
> >  	/* for non control endpoints, set PID to D0 */
> 
> For a long function like this, I'd rather keep a single return point at
> the end. Something like this:
> 
>  		}
> -		if (i == 8)
> -			return -ENOMEM;
> +		if (i == 8) {
> +			ret = -ENOMEM;
> +			goto out;
> +		}
>  	}
> ...
>  
> +out:
>  	spin_unlock_irqrestore(&hsotg->lock, flags);
>  	return ret;
>  }
> 
> Care to respin the patch like that?
> 
sure , modified patch will be in your inbox in a short time. 

thanks
sudip
> -- 
> Paul
> 

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

end of thread, other threads:[~2014-10-15  9:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-10 13:09 [PATCH] usb: dwc2: gadget: sparse warning of context imbalance Sudip Mukherjee
2014-10-14 20:55 ` Paul Zimmerman
2014-10-15  9:17   ` Sudip Mukherjee

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