mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
Thin error messages clenaup and some indent
This commit is contained in:
parent
dd3bb2bac3
commit
c590a9cdbc
@ -3217,7 +3217,7 @@ int lv_remove_with_dependencies(struct cmd_context *cmd, struct logical_volume *
|
||||
if ((force == PROMPT) &&
|
||||
yes_no_prompt("Do you really want to remove all thin volumes when removing"
|
||||
" pool logical volume %s? [y/n]: ", lv->name) == 'n') {
|
||||
log_error("Logical volume %s not removed", lv->name);
|
||||
log_error("Logical volume %s not removed.", lv->name);
|
||||
return 0;
|
||||
}
|
||||
dm_list_iterate_safe(snh, snht, &lv->segs_using_this_lv) {
|
||||
|
@ -1241,15 +1241,13 @@ static int _thin_pool_status_transaction_id(struct dm_tree_node *dnode, uint64_t
|
||||
dm_get_next_target(dmt, NULL, &start, &length, &type, ¶ms);
|
||||
|
||||
if (type && (strcmp(type, "thin-pool") != 0)) {
|
||||
log_error(INTERNAL_ERROR
|
||||
"Expected thin-pool target for %d:%d and got %s.",
|
||||
log_error("Expected thin-pool target for %d:%d and got %s.",
|
||||
dnode->info.major, dnode->info.minor, type);
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (!params || (sscanf(params, "%" PRIu64, transaction_id) != 1)) {
|
||||
log_error(INTERNAL_ERROR
|
||||
"Failed to parse transaction_id from %s.", params);
|
||||
log_error("Failed to parse transaction_id from %s.", params);
|
||||
goto out;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user