mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
Thin reindent code
Drop indention level Add extra internal error.
This commit is contained in:
parent
87371d48cc
commit
11721819a7
@ -88,27 +88,29 @@ int attach_pool_message(struct lv_segment *seg, dm_thin_message_t type,
|
|||||||
struct lv_thin_message *tmsg;
|
struct lv_thin_message *tmsg;
|
||||||
|
|
||||||
dm_list_iterate_items(tmsg, &seg->thin_messages) {
|
dm_list_iterate_items(tmsg, &seg->thin_messages) {
|
||||||
if (tmsg->type == type) {
|
if (tmsg->type != type)
|
||||||
switch (tmsg->type) {
|
continue;
|
||||||
case DM_THIN_MESSAGE_CREATE_SNAP:
|
|
||||||
case DM_THIN_MESSAGE_CREATE_THIN:
|
switch (tmsg->type) {
|
||||||
case DM_THIN_MESSAGE_TRIM:
|
case DM_THIN_MESSAGE_CREATE_SNAP:
|
||||||
if (tmsg->u.lv == lv) {
|
case DM_THIN_MESSAGE_CREATE_THIN:
|
||||||
log_error("Message referring LV %s already queued for %s.",
|
case DM_THIN_MESSAGE_TRIM:
|
||||||
tmsg->u.lv->name, seg->lv->name);
|
if (tmsg->u.lv == lv) {
|
||||||
return 0;
|
log_error("Message referring LV %s already queued for %s.",
|
||||||
}
|
tmsg->u.lv->name, seg->lv->name);
|
||||||
break;
|
return 0;
|
||||||
case DM_THIN_MESSAGE_DELETE:
|
|
||||||
if (tmsg->u.delete_id == delete_id) {
|
|
||||||
log_error("Delete of device %u already queued for %s.",
|
|
||||||
tmsg->u.delete_id, seg->lv->name);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
|
case DM_THIN_MESSAGE_DELETE:
|
||||||
|
if (tmsg->u.delete_id == delete_id) {
|
||||||
|
log_error("Delete of device %u already queued for %s.",
|
||||||
|
tmsg->u.delete_id, seg->lv->name);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
log_error(INTERNAL_ERROR "Unsupported message type %u.", tmsg->type);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user