linux-usb.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH -next] usbip: vudc: fix missing unlock on error in usbip_sockfd_store()
@ 2021-04-08  8:50 Ye Bin
  2021-04-08  8:57 ` YueHaibing
  0 siblings, 1 reply; 5+ messages in thread
From: Ye Bin @ 2021-04-08  8:50 UTC (permalink / raw)
  To: yebin10, Valentina Manea, Shuah Khan, Greg Kroah-Hartman
  Cc: linux-usb, kernel-janitors, Hulk Robot

Add the missing unlock before return from function usbip_sockfd_store()
in the error handling case.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Ye Bin <yebin10@huawei.com>
---
 drivers/usb/usbip/vudc_sysfs.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/usb/usbip/vudc_sysfs.c b/drivers/usb/usbip/vudc_sysfs.c
index f7633ee655a1..d1cf6b51bf85 100644
--- a/drivers/usb/usbip/vudc_sysfs.c
+++ b/drivers/usb/usbip/vudc_sysfs.c
@@ -156,12 +156,14 @@ static ssize_t usbip_sockfd_store(struct device *dev,
 		tcp_rx = kthread_create(&v_rx_loop, &udc->ud, "vudc_rx");
 		if (IS_ERR(tcp_rx)) {
 			sockfd_put(socket);
+			mutex_unlock(&udc->ud.sysfs_lock);
 			return -EINVAL;
 		}
 		tcp_tx = kthread_create(&v_tx_loop, &udc->ud, "vudc_tx");
 		if (IS_ERR(tcp_tx)) {
 			kthread_stop(tcp_rx);
 			sockfd_put(socket);
+			mutex_unlock(&udc->ud.sysfs_lock);
 			return -EINVAL;
 		}
 


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

end of thread, other threads:[~2021-04-08  9:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-08  8:50 [PATCH -next] usbip: vudc: fix missing unlock on error in usbip_sockfd_store() Ye Bin
2021-04-08  8:57 ` YueHaibing
2021-04-08  9:19   ` Greg Kroah-Hartman
2021-04-08  9:39     ` YueHaibing
2021-04-08  9:47       ` Greg Kroah-Hartman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).