public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* tools: usbip: detach: avoid calling strlen() at each iteration
@ 2015-09-15 20:27 Eric Curtin
  2015-09-15 20:55 ` Aaro Koskinen
  0 siblings, 1 reply; 4+ messages in thread
From: Eric Curtin @ 2015-09-15 20:27 UTC (permalink / raw)
  To: valentina.manea.m, shuah.kh; +Cc: linux-usb, linux-kernel

Instead of calling strlen on every iteration of the for loop, just call it
once and cache the result in a temporary local variable which will be used
in the for loop instead.

Signed-off-by: Eric Curtin <ericcurtin17@gmail.com>

diff --git a/tools/usb/usbip/src/usbip_detach.c b/tools/usb/usbip/src/usbip_detach.c
index 05c6d15..9db9d21 100644
--- a/tools/usb/usbip/src/usbip_detach.c
+++ b/tools/usb/usbip/src/usbip_detach.c
@@ -47,7 +47,9 @@ static int detach_port(char *port)
 	uint8_t portnum;
 	char path[PATH_MAX+1];
 
-	for (unsigned int i = 0; i < strlen(port); i++)
+	unsigned int port_len = strlen(port);
+
+	for (unsigned int i = 0; i < port_len; i++)
 		if (!isdigit(port[i])) {
 			err("invalid port %s", port);
 			return -1;


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

end of thread, other threads:[~2015-09-16 13:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-15 20:27 tools: usbip: detach: avoid calling strlen() at each iteration Eric Curtin
2015-09-15 20:55 ` Aaro Koskinen
2015-09-16  7:25   ` Clemens Ladisch
2015-09-16 13:44   ` David Laight

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