When calling uxclnt we need to increase the timeout, otherwise we will not be able to get a reply if the daemon runs into an uxlsnr timeout. Signed-off-by: Hannes Reinecke <hare@xxxxxxxx> --- multipathd/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/multipathd/main.c b/multipathd/main.c index a58dae5..77eb498 100644 --- a/multipathd/main.c +++ b/multipathd/main.c @@ -2293,7 +2293,7 @@ main (int argc, char *argv[]) case 'k': if (load_config(DEFAULT_CONFIGFILE, udev_new())) exit(1); - uxclnt(optarg, conf->uxsock_timeout); + uxclnt(optarg, uxsock_timeout + 100); exit(0); case 'B': conf->bindings_read_only = 1; @@ -2323,7 +2323,7 @@ main (int argc, char *argv[]) optind++; } c += snprintf(c, s + CMDSIZE - c, "\n"); - uxclnt(s, conf->uxsock_timeout); + uxclnt(s, uxsock_timeout + 100); exit(0); } -- 2.6.6 -- dm-devel mailing list dm-devel@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/dm-devel