You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.8 KiB
60 lines
1.8 KiB
--- |
|
multipathd/cli_handlers.c | 8 ++++---- |
|
multipathd/main.c | 4 ++-- |
|
2 files changed, 6 insertions(+), 6 deletions(-) |
|
|
|
Index: multipath-tools-130222/multipathd/cli_handlers.c |
|
=================================================================== |
|
--- multipath-tools-130222.orig/multipathd/cli_handlers.c |
|
+++ multipath-tools-130222/multipathd/cli_handlers.c |
|
@@ -459,7 +459,7 @@ cli_del_path (void * v, char ** reply, i |
|
pp = find_path_by_dev(vecs->pathvec, param); |
|
if (!pp) { |
|
condlog(0, "%s: path already removed", param); |
|
- return 0; |
|
+ return 1; |
|
} |
|
return ev_remove_path(pp, vecs); |
|
} |
|
@@ -520,19 +520,19 @@ cli_del_map (void * v, char ** reply, in |
|
minor = dm_get_minor(param); |
|
if (minor < 0) { |
|
condlog(2, "%s: not a device mapper table", param); |
|
- return 0; |
|
+ return 1; |
|
} |
|
major = dm_get_major(param); |
|
if (major < 0) { |
|
condlog(2, "%s: not a device mapper table", param); |
|
- return 0; |
|
+ return 1; |
|
} |
|
sprintf(dev_path,"dm-%d", minor); |
|
alias = dm_mapname(major, minor); |
|
if (!alias) { |
|
condlog(2, "%s: mapname not found for %d:%d", |
|
param, major, minor); |
|
- return 0; |
|
+ return 1; |
|
} |
|
rc = ev_remove_map(param, alias, minor, vecs); |
|
FREE(alias); |
|
Index: multipath-tools-130222/multipathd/main.c |
|
=================================================================== |
|
--- multipath-tools-130222.orig/multipathd/main.c |
|
+++ multipath-tools-130222/multipathd/main.c |
|
@@ -437,12 +437,12 @@ ev_remove_map (char * devname, char * al |
|
if (!mpp) { |
|
condlog(2, "%s: devmap not registered, can't remove", |
|
devname); |
|
- return 0; |
|
+ return 1; |
|
} |
|
if (strcmp(mpp->alias, alias)) { |
|
condlog(2, "%s: minor number mismatch (map %d, event %d)", |
|
mpp->alias, mpp->dmi->minor, minor); |
|
- return 0; |
|
+ return 1; |
|
} |
|
return flush_map(mpp, vecs, 0); |
|
}
|
|
|