public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] usbip: tools: update return status when failed
@ 2024-10-22  6:48 Zongmin Zhou
  2024-10-22  7:58 ` Hongren Zheng
  2024-10-23 18:59 ` Shuah Khan
  0 siblings, 2 replies; 6+ messages in thread
From: Zongmin Zhou @ 2024-10-22  6:48 UTC (permalink / raw)
  To: valentina.manea.m, shuah, i; +Cc: linux-usb, linux-kernel, Zongmin Zhou

From: Zongmin Zhou <zhouzongmin@kylinos.cn>

Have to set "ret" before return when found a invalid port.

Signed-off-by: Zongmin Zhou <zhouzongmin@kylinos.cn>
---
 tools/usb/usbip/src/usbip_detach.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/usb/usbip/src/usbip_detach.c b/tools/usb/usbip/src/usbip_detach.c
index b29101986b5a..6b78d4a81e95 100644
--- a/tools/usb/usbip/src/usbip_detach.c
+++ b/tools/usb/usbip/src/usbip_detach.c
@@ -68,6 +68,7 @@ static int detach_port(char *port)
 	}
 
 	if (!found) {
+		ret = -1;
 		err("Invalid port %s > maxports %d",
 			port, vhci_driver->nports);
 		goto call_driver_close;
-- 
2.34.1


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

end of thread, other threads:[~2024-12-20 17:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-22  6:48 [PATCH] usbip: tools: update return status when failed Zongmin Zhou
2024-10-22  7:58 ` Hongren Zheng
2024-12-20 17:26   ` Shuah Khan
2024-10-23 18:59 ` Shuah Khan
2024-10-24  2:27   ` [PATCH v2] usbip: tools: Fix detach_port() invalid port error path Zongmin Zhou
2024-10-24 14:17     ` Shuah Khan

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