1dad67a5af
Update Source to upstream version 0.8.5 plus post tag commits * Patches 0001-0102 are from https://github.com/openSUSE/multipath-tools/tree/queue and are already queued for upstream. Rename files * Previous patches 0059-0068 are now patches 0103-0111
88 lines
2.4 KiB
Diff
88 lines
2.4 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Martin Wilck <mwilck@suse.com>
|
|
Date: Sat, 26 Sep 2020 00:43:12 +0200
|
|
Subject: [PATCH] multipathd: common code for "-k" and command args
|
|
|
|
'multipathd -k"cmd"' and 'multipath cmd' are the same thing.
|
|
Treat it with common code.
|
|
|
|
Reviewed-by: Benjamin Marzinski <bmarzins@redhat.com>
|
|
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
|
|
---
|
|
multipathd/main.c | 37 +++++++++++++++++++------------------
|
|
1 file changed, 19 insertions(+), 18 deletions(-)
|
|
|
|
diff --git a/multipathd/main.c b/multipathd/main.c
|
|
index 867f0f84..b6a5f5b7 100644
|
|
--- a/multipathd/main.c
|
|
+++ b/multipathd/main.c
|
|
@@ -3301,6 +3301,8 @@ main (int argc, char *argv[])
|
|
int err;
|
|
int foreground = 0;
|
|
struct config *conf;
|
|
+ char *opt_k_arg = NULL;
|
|
+ bool opt_k = false;
|
|
|
|
ANNOTATE_BENIGN_RACE_SIZED(&multipath_conf, sizeof(multipath_conf),
|
|
"Manipulated through RCU");
|
|
@@ -3348,16 +3350,9 @@ main (int argc, char *argv[])
|
|
logsink = LOGSINK_STDERR_WITHOUT_TIME;
|
|
break;
|
|
case 'k':
|
|
- logsink = 0;
|
|
- conf = load_config(DEFAULT_CONFIGFILE);
|
|
- if (!conf)
|
|
- exit(1);
|
|
- if (verbosity)
|
|
- libmp_verbosity = verbosity;
|
|
- uxsock_timeout = conf->uxsock_timeout;
|
|
- err = uxclnt(optarg, uxsock_timeout + 100);
|
|
- free_config(conf);
|
|
- return err;
|
|
+ opt_k = true;
|
|
+ opt_k_arg = optarg;
|
|
+ break;
|
|
case 'B':
|
|
bindings_read_only = 1;
|
|
break;
|
|
@@ -3373,7 +3368,7 @@ main (int argc, char *argv[])
|
|
exit(1);
|
|
}
|
|
}
|
|
- if (optind < argc) {
|
|
+ if (opt_k || optind < argc) {
|
|
char cmd[CMDSIZE];
|
|
char * s = cmd;
|
|
char * c = s;
|
|
@@ -3388,14 +3383,20 @@ main (int argc, char *argv[])
|
|
libmp_verbosity = verbosity;
|
|
uxsock_timeout = conf->uxsock_timeout;
|
|
memset(cmd, 0x0, CMDSIZE);
|
|
- while (optind < argc) {
|
|
- if (strchr(argv[optind], ' '))
|
|
- c += snprintf(c, s + CMDSIZE - c, "\"%s\" ", argv[optind]);
|
|
- else
|
|
- c += snprintf(c, s + CMDSIZE - c, "%s ", argv[optind]);
|
|
- optind++;
|
|
+ if (opt_k)
|
|
+ s = opt_k_arg;
|
|
+ else {
|
|
+ while (optind < argc) {
|
|
+ if (strchr(argv[optind], ' '))
|
|
+ c += snprintf(c, s + CMDSIZE - c,
|
|
+ "\"%s\" ", argv[optind]);
|
|
+ else
|
|
+ c += snprintf(c, s + CMDSIZE - c,
|
|
+ "%s ", argv[optind]);
|
|
+ optind++;
|
|
+ }
|
|
+ c += snprintf(c, s + CMDSIZE - c, "\n");
|
|
}
|
|
- c += snprintf(c, s + CMDSIZE - c, "\n");
|
|
err = uxclnt(s, uxsock_timeout + 100);
|
|
free_config(conf);
|
|
return err;
|
|
--
|
|
2.17.2
|
|
|