lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 22 Nov 2012 14:22:23 +0200
From:	Felipe Balbi <balbi@...com>
To:	walter harms <wharms@....de>
CC:	Cyril Roelandt <tipecaml@...il.com>,
	<linux-kernel@...r.kernel.org>, <linux-usb@...r.kernel.org>,
	<gregkh@...uxfoundation.org>, <balbi@...com>,
	<laurent.pinchart@...asonboard.com>,
	<kernel-janitors@...r.kernel.org>
Subject: Re: [PATCH] UVC: use GFP_ATOMIC under spin lock.

On Thu, Nov 22, 2012 at 09:09:57AM +0100, walter harms wrote:
> 
> 
> Am 19.11.2012 22:34, schrieb Cyril Roelandt:
> > Found using the following semantic patch:
> > <spml>
> > @@
> > @@
> > spin_lock_irqsave(...);
> > ... when != spin_unlock_irqrestore(...);
> > * GFP_KERNEL
> > </spml>
> > 
> > Signed-off-by: Cyril Roelandt <tipecaml@...il.com>
> > ---
> >  drivers/usb/gadget/uvc_video.c |    2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/drivers/usb/gadget/uvc_video.c b/drivers/usb/gadget/uvc_video.c
> > index b0e53a8..79b4132 100644
> > --- a/drivers/usb/gadget/uvc_video.c
> > +++ b/drivers/usb/gadget/uvc_video.c
> > @@ -309,7 +309,7 @@ uvc_video_pump(struct uvc_video *video)
> >  		video->encode(req, video, buf);
> >  
> >  		/* Queue the USB request */
> > -		if ((ret = usb_ep_queue(video->ep, req, GFP_KERNEL)) < 0) {
> > +		if ((ret = usb_ep_queue(video->ep, req, GFP_ATOMIC)) < 0) {
> >  			printk(KERN_INFO "Failed to queue request (%d)\n", ret);
> >  			usb_ep_set_halt(video->ep);
> >  			spin_unlock_irqrestore(&video->queue.irqlock, flags);
> 
> 
> IMHO, this should be two lines, aka:
> 
> ret = usb_ep_queue(video->ep, req, GFP_KERNEL);
> if (ret<0)

correct, please resend with the fix.

-- 
balbi

Download attachment "signature.asc" of type "application/pgp-signature" (837 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ