summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Rajnoha <prajnoha@redhat.com>2016-03-01 15:24:07 +0100
committerPeter Rajnoha <prajnoha@redhat.com>2016-03-03 13:49:15 +0100
commitf228750386ae4b5b00375e1a14139b53f86f9cca (patch)
treeb9174ea2a119ad2a230dbfa560ba5225c0f1e518
parent8b9953e8c59ef4c3ced277cc40b8bb5006a24161 (diff)
downloadlvm2-f228750386ae4b5b00375e1a14139b53f86f9cca.tar.gz
report: report historical LV names with '-' prefix
All names for historical LVs are prefixed with '-' character to make clear difference between live and historical LVs. The '-' can't be set by users for live LV names during lvcreate hence we never get into a conflict with the names that user defines for live LVs.
-rw-r--r--lib/report/report.c23
1 files changed, 16 insertions, 7 deletions
diff --git a/lib/report/report.c b/lib/report/report.c
index 8ef8eafc4..dfc76bc64 100644
--- a/lib/report/report.c
+++ b/lib/report/report.c
@@ -1685,27 +1685,36 @@ static int _lvname_disp(struct dm_report *rh, struct dm_pool *mem,
{
struct cmd_context *cmd = (struct cmd_context *) private;
const struct logical_volume *lv = (const struct logical_volume *) data;
+ int is_historical = lv_is_historical(lv);
+ const char *tmp_lvname;
char *repstr, *lvname;
size_t len;
- if (lv_is_historical(lv))
- return _string_disp(rh, mem, field, &lv->this_glv->historical->name, private);
-
- if (lv_is_visible(lv) || !cmd->report_mark_hidden_devices)
+ if (!is_historical && (lv_is_visible(lv) || !cmd->report_mark_hidden_devices))
return _field_string(rh, field, lv->name);
- len = strlen(lv->name) + 3;
+ if (is_historical) {
+ tmp_lvname = lv->this_glv->historical->name;
+ len = strlen(tmp_lvname) + strlen(HISTORICAL_LV_PREFIX) + 1;
+ } else {
+ tmp_lvname = lv->name;
+ len = strlen(tmp_lvname) + 3;
+ }
+
if (!(repstr = dm_pool_zalloc(mem, len))) {
log_error("dm_pool_alloc failed");
return 0;
}
- if (dm_snprintf(repstr, len, "[%s]", lv->name) < 0) {
+ if (dm_snprintf(repstr, len, "%s%s%s",
+ is_historical ? HISTORICAL_LV_PREFIX : "[",
+ tmp_lvname,
+ is_historical ? "" : "]") < 0) {
log_error("lvname snprintf failed");
return 0;
}
- if (!(lvname = dm_pool_strdup(mem, lv->name))) {
+ if (!(lvname = dm_pool_strdup(mem, tmp_lvname))) {
log_error("dm_pool_strdup failed");
return 0;
}