1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

thin: lvconvert update messages

This commit is contained in:
Zdenek Kabelac 2012-12-02 16:23:44 +01:00
parent 6987a353de
commit 0be8a9126f

View File

@ -1813,7 +1813,7 @@ static int _lvconvert_thinpool(struct cmd_context *cmd,
/* We are changing target type, so deactivate first */
if (!deactivate_lv(cmd, pool_lv)) {
log_error("Can't deactivate logical volume %s/%s.",
log_error("Aborting. Failed to deactivate logical volume %s/%s.",
pool_lv->vg->name, pool_lv->name);
return 0;
}
@ -1824,8 +1824,10 @@ static int _lvconvert_thinpool(struct cmd_context *cmd,
return 0;
}
if (dm_snprintf(name, len, "%s_tmeta", pool_lv->name) < 0)
return_0;
if (dm_snprintf(name, len, "%s_tmeta", pool_lv->name) < 0) {
log_error("Failed to create layer name.");
return 0;
}
if (lp->pool_metadata_lv_name) {
if (arg_count(cmd, stripesize_ARG) || arg_count(cmd, stripes_long_ARG)) {