]> sourceware.org Git - lvm2.git/commitdiff
polldaemon: fix missing mirror in-sync info with lvmpolld
authorOndrej Kozina <okozina@redhat.com>
Mon, 19 Oct 2015 14:56:45 +0000 (16:56 +0200)
committerOndrej Kozina <okozina@redhat.com>
Tue, 20 Oct 2015 10:18:55 +0000 (12:18 +0200)
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'.

WHATS_NEW
tools/polldaemon.c

index f973f11769bec8ef510f367f130c2dd39cb6437f..763896eb30991be7df3052e007c8d688a1a09024 100644 (file)
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -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.
index cee1983f2e585ecf922e174979e9f91ab33a88e1..ccfaa7d71257328345eb3bf2ac1c000d2a27a098 100644 (file)
@@ -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) {
This page took 0.04501 seconds and 5 git commands to generate.