mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
USB: gadgetfs: protect ep_release with lock
This patch adds mutex protection to ep_release. Signed-off-by: Milan Svoboda <msvoboda@ra.rockwell.com> Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
8a7471aba1
commit
ba307f5828
1 changed files with 5 additions and 0 deletions
|
@ -477,6 +477,10 @@ static int
|
|||
ep_release (struct inode *inode, struct file *fd)
|
||||
{
|
||||
struct ep_data *data = fd->private_data;
|
||||
int value;
|
||||
|
||||
if ((value = down_interruptible(&data->lock)) < 0)
|
||||
return value;
|
||||
|
||||
/* clean up if this can be reopened */
|
||||
if (data->state != STATE_EP_UNBOUND) {
|
||||
|
@ -485,6 +489,7 @@ ep_release (struct inode *inode, struct file *fd)
|
|||
data->hs_desc.bDescriptorType = 0;
|
||||
usb_ep_disable(data->ep);
|
||||
}
|
||||
up (&data->lock);
|
||||
put_ep (data);
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue