mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
Add details to format1 'Invalid LV in extent map' error message.
This commit is contained in:
parent
b541308454
commit
cad9fac9c6
@ -1,5 +1,6 @@
|
|||||||
Version 2.02.02 -
|
Version 2.02.02 -
|
||||||
====================================
|
====================================
|
||||||
|
Add details to format1 'Invalid LV in extent map' error message.
|
||||||
Fix lvscan snapshot full display.
|
Fix lvscan snapshot full display.
|
||||||
Bring lvdisplay man page example into line.
|
Bring lvdisplay man page example into line.
|
||||||
Add mirror dmeventd library.
|
Add mirror dmeventd library.
|
||||||
|
@ -140,7 +140,12 @@ static int _fill_maps(struct dm_hash_table *maps, struct volume_group *vg,
|
|||||||
lvm = lvms[lv_num];
|
lvm = lvms[lv_num];
|
||||||
|
|
||||||
if (!lvm) {
|
if (!lvm) {
|
||||||
log_err("invalid lv in extent map");
|
log_error("Invalid LV in extent map "
|
||||||
|
"(PV %s, PE %" PRIu32
|
||||||
|
", LV %" PRIu32
|
||||||
|
", LE %" PRIu32 ")",
|
||||||
|
dev_name(pv->dev), i,
|
||||||
|
lv_num, e[i].le_num);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user