mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-13 17:18:32 +03:00
pvmove: improve lvs
When pvmoving LV - the target for LV is a mirror so the validation that checked the type is matching was incorrect. While we need a more generic enhancment of LVS output for pvmoved LVs, for now at least stop showing internal errors and 'X' symbols in attrs.
This commit is contained in:
parent
5503699c37
commit
39fc98d731
@ -1,5 +1,6 @@
|
||||
Version 2.02.180 -
|
||||
=================================
|
||||
Avoid showing internal error in lvs output or pvmoved LVs.
|
||||
Fix check if resized PV can also fit metadata area.
|
||||
Reopen devices RDWR before writing to avoid udev issues.
|
||||
Fix mem leak in clvmd.
|
||||
|
@ -178,7 +178,8 @@ static int _get_segment_status_from_target_params(const char *target_name,
|
||||
}
|
||||
|
||||
/* Validate target_name segtype from DM table with lvm2 metadata segtype */
|
||||
if (strcmp(segtype->name, target_name) &&
|
||||
if (!lv_is_locked(seg->lv) &&
|
||||
strcmp(segtype->name, target_name) &&
|
||||
/* If kernel's type isn't an exact match is it compatible? */
|
||||
(!segtype->ops->target_status_compatible ||
|
||||
!segtype->ops->target_status_compatible(target_name))) {
|
||||
|
Loading…
Reference in New Issue
Block a user