mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
polldaemon: fix missing mirror in-sync info with lvmpolld
CONVERTING status flag is a tricky one. It's not set when converting a non-mirror LV type to the mirror type, i.e.: linear -> two leg mirror. Also the conversion itself is instant and doesn't require to be polled. When mirror reaches sync state there's no final update on VG metadata for lvmpolld to be made thereby report_progress in fact doesn't report percentage of mirror being converted but percentage of mirror being in sync. Perhaps we should reword the lvconvert output here. On the other hand CONVERTING is set while we upconvert the mirror from i.e. two leg mirror to four leg mirror. In such case the operation is required to be polled so that lvmpolld can cleanup temporary conversion log when the conversion is over. Ignore CONVERTING lv_type for the moment and match LVs only by uuids during 'mirror conversion'/'waiting for a sync to finish'.
This commit is contained in:
parent
a5c4c4efbd
commit
33465066c5
@ -1,5 +1,6 @@
|
||||
Version 2.02.133 -
|
||||
======================================
|
||||
Fix missing in-sync progress info while lvconvert used with lvmpolld.
|
||||
Add report/compact_output_cols to lvm.conf to define report cols to compact.
|
||||
Do not change logging in lvm2 library when it's already set.
|
||||
Check for enough space in thin-pool in command before creating new thin.
|
||||
|
@ -412,7 +412,12 @@ static int report_progress(struct cmd_context *cmd, struct poll_operation_id *id
|
||||
|
||||
if (lv && id->uuid && strcmp(id->uuid, (char *)&lv->lvid))
|
||||
lv = NULL;
|
||||
if (lv && parms->lv_type && !(lv->status & parms->lv_type))
|
||||
|
||||
/*
|
||||
* CONVERTING is set only during mirror upconversion but we may need to
|
||||
* read LV's progress info even when it's not converting (linear->mirror)
|
||||
*/
|
||||
if (lv && (parms->lv_type ^ CONVERTING) && !(lv->status & parms->lv_type))
|
||||
lv = NULL;
|
||||
|
||||
if (!lv) {
|
||||
|
Loading…
Reference in New Issue
Block a user