summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Teigland <teigland@redhat.com>2013-08-29 16:42:49 -0500
committerDavid Teigland <teigland@redhat.com>2014-04-15 11:34:27 -0500
commit71a581f82a1ab6628046a036ffbfedd1af12d3d7 (patch)
tree0fa0252c6be023d71744f5dcea93871fcaeb2299
parent582d9cbaa5b0cc8237dbd2fa03b212762b79a015 (diff)
downloadlvm2-71a581f82a1ab6628046a036ffbfedd1af12d3d7.tar.gz
toollib: improve error message in process_each_lv_in_vg
Include in the error message the lv name args that were not found.
-rw-r--r--tools/toollib.c17
1 files changed, 11 insertions, 6 deletions
diff --git a/tools/toollib.c b/tools/toollib.c
index fe2938748..353caf045 100644
--- a/tools/toollib.c
+++ b/tools/toollib.c
@@ -1691,8 +1691,8 @@ int process_each_lv_in_vg(struct cmd_context *cmd,
unsigned process_lv = 0;
unsigned tags_supplied = 0;
unsigned lvargs_supplied = 0;
- unsigned lvargs_matched = 0;
struct lv_list *lvl;
+ struct str_list *sl;
if (!vg_check_status(vg, EXPORTED_VG))
return_ECMD_FAILED;
@@ -1753,7 +1753,7 @@ int process_each_lv_in_vg(struct cmd_context *cmd,
if (lvargs_supplied &&
str_list_match_item(arg_lvnames, lvl->lv->name)) {
process_lv = 1;
- lvargs_matched++;
+ str_list_del(arg_lvnames, lvl->lv->name);
}
if (!process_lv)
@@ -1762,20 +1762,25 @@ int process_each_lv_in_vg(struct cmd_context *cmd,
if (sigint_caught())
return_ECMD_FAILED;
+ log_very_verbose("Processing LV %s in VG %s", lvl->lv->name, vg->name);
+
ret = process_single_lv(cmd, lvl->lv, handle);
if (ret > ret_max)
ret_max = ret;
}
- if (lvargs_supplied && lvargs_matched != dm_list_size(arg_lvnames)) {
+ if (lvargs_supplied) {
/*
* FIXME: lvm supports removal of LV with all its dependencies
* this leads to miscalculation that depends on the order of args.
*/
- log_error("One or more specified logical volume(s) not found.");
- if (ret_max < ECMD_FAILED)
- ret_max = ECMD_FAILED;
+ dm_list_iterate_items(sl, arg_lvnames) {
+ log_error("Failed to find logical volume \"%s/%s\"",
+ vg->name, sl->str);
+ if (ret_max < ECMD_FAILED)
+ ret_max = ECMD_FAILED;
+ }
}
return ret_max;