mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
Validate mirror segments size
Currently some operation with striped mirrors lead to corrupted metadata, this patch just add detection of such situation. Example: # lvcreate -i2 -l10 -n lvs vg_test # lvconvert -m1 vg_test/lvs # lvreduce -f -l1 vg_test/lvs Reducing logical volume lvs to 4.00 MiB Segment extent reduction 9not divisible by #stripes 2 Logical volume lvs successfully resized # lvremove vg_test/lvs Segment extent reduction 1not divisible by #stripes 2 LV segment lvs:0-4294967295 is incorrectly listed as being used by LV lvs_mimage_0 Internal error: LV segments corrupted in lvs_mimage_0.
This commit is contained in:
parent
851b1a9606
commit
4fb39ae074
@ -1,5 +1,6 @@
|
||||
Version 2.02.86 -
|
||||
=================================
|
||||
Validate mirror segments size.
|
||||
Fix extent rounding for striped volumes (never reduce more than requested).
|
||||
Fix create_temp_name to replace any '/' found in the hostname with '?'.
|
||||
Always use append to file in lvmdump (selinux policy - no file truncation).
|
||||
|
@ -204,6 +204,16 @@ int check_lv_segments(struct logical_volume *lv, int complete_vg)
|
||||
inc_error_count;
|
||||
}
|
||||
}
|
||||
|
||||
if (complete_vg && seg_is_mirrored(seg) &&
|
||||
seg_type(seg, s) == AREA_LV &&
|
||||
seg_lv(seg, s)->le_count != seg->area_len) {
|
||||
log_error("LV %s: mirrored LV segment %u has "
|
||||
"wrong size %u (should be %u).",
|
||||
lv->name, s, seg_lv(seg, s)->le_count,
|
||||
seg->area_len);
|
||||
inc_error_count;
|
||||
}
|
||||
}
|
||||
|
||||
le += seg->len;
|
||||
|
Loading…
Reference in New Issue
Block a user