1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-07-17 00:58:59 +03:00

cleanup: indent

This commit is contained in:
Zdenek Kabelac
2019-01-24 14:12:42 +01:00
parent 5cf8888976
commit d19e372795
3 changed files with 2 additions and 4 deletions

View File

@ -7350,7 +7350,7 @@ int wipe_lv(struct logical_volume *lv, struct wipe_params wp)
if (wp.do_wipe_signatures) {
log_verbose("Wiping known signatures on logical volume \"%s/%s\"",
lv->vg->name, lv->name);
lv->vg->name, lv->name);
if (!wipe_known_signatures(lv->vg->cmd, dev, name, 0,
TYPE_DM_SNAPSHOT_COW,
wp.yes, wp.force, NULL))

View File

@ -790,7 +790,7 @@ int vg_remove_pool_metadata_spare(struct volume_group *vg)
log_print_unless_silent("Renaming existing pool metadata spare "
"logical volume \"%s\" to \"%s/%s\".",
display_lvname(lv), vg->name, new_name);
display_lvname(lv), vg->name, new_name);
if (!lv_rename_update(vg->cmd, lv, new_name, 0))
return_0;

View File

@ -266,7 +266,6 @@ int pool_below_threshold(const struct lv_segment *pool_seg)
if (!lv_thin_pool_percent(pool_seg->lv, 1, &percent))
return_0;
if (percent >= min_threshold) {
log_warn("WARNING: Remaining free space in metadata of thin pool %s "
"is too low (%s%% >= %s%%). "
@ -277,7 +276,6 @@ int pool_below_threshold(const struct lv_segment *pool_seg)
return 0;
}
if (percent > threshold) {
log_debug("Threshold configured for free metadata space in "
"thin pool %s has been reached (%s%% > %s%%).",