[dm-devel] [PATCH 06/33] multipathd: set timeout for CLI commands correctly

Martin Wilck mwilck at suse.com
Tue Feb 28 16:23:02 UTC 2017


From: Hannes Reinecke <hare at suse.de>

The CLI command timeout wasn't set correctly for CLI commands,
causing it to timeout prematurely before the CLI response
could be received.


Signed-off-by: Hannes Reinecke <hare at suse.com>
---
 multipathd/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/multipathd/main.c b/multipathd/main.c
index e317a4c9..86d73f7b 100644
--- a/multipathd/main.c
+++ b/multipathd/main.c
@@ -1070,7 +1070,7 @@ uxsock_trigger (char * str, char ** reply, int * len, bool is_root,
 		return 1;
 	}
 
-	r = parse_cmd(str, reply, len, vecs, uxsock_timeout / 1000);
+	r = parse_cmd(str, reply, len, vecs, uxsock_timeout);
 
 	if (r > 0) {
 		if (r == ETIMEDOUT)
-- 
2.11.0




More information about the dm-devel mailing list