summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Teigland <teigland@redhat.com>2013-08-29 16:42:49 -0500
committerDavid Teigland <teigland@redhat.com>2014-06-19 13:44:19 -0500
commite0e25097edbf6a761b9ed3f9a2d1ece970623d11 (patch)
treefd08955ea93d7d8de60515b2e330b21f8d15aa4c
parentb77b48903d7a06f4d178cc4e0fad681fcbf3bcc6 (diff)
downloadlvm2-e0e25097edbf6a761b9ed3f9a2d1ece970623d11.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 372994d34..0d421eded 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 dm_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;