qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2] bitmap: Update count after a merge
@ 2018-10-02 23:33 John Snow
  2018-10-03 14:32 ` Vladimir Sementsov-Ogievskiy
  2018-10-03 20:48 ` John Snow
  0 siblings, 2 replies; 7+ messages in thread
From: John Snow @ 2018-10-02 23:33 UTC (permalink / raw)
  To: qemu-stable
  Cc: qemu-block, Fam Zheng, qemu-devel, eblake, vsementsov, John Snow

From: Eric Blake <eblake@redhat.com>

We need an accurate count of the number of bits set in a bitmap
after a merge. In particular, since the merge operation short-circuits
a merge from an empty source, if you have bitmaps A, B, and C where
B started empty, then merge C into B, and B into A, an inaccurate
count meant that A did not get the contents of C.

In the worst case, we may falsely regard the bitmap as empty when
it has had new writes merged into it.

Fixes: be58721db
CC: qemu-stable@nongnu.org
Signed-off-by: Eric Blake <eblake@redhat.com>
Signed-off-by: John Snow <jsnow@redhat.com>
---

v2: based off of Eric's cover letter, now rebased properly
    on top of the jsnow/bitmaps staging branch to use the
    correct bitmap target (result).


 util/hbitmap.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/util/hbitmap.c b/util/hbitmap.c
index d5aca5159f..8d402c59d9 100644
--- a/util/hbitmap.c
+++ b/util/hbitmap.c
@@ -759,6 +759,9 @@ bool hbitmap_merge(const HBitmap *a, const HBitmap *b, HBitmap *result)
         }
     }
 
+    /* Recompute the dirty count */
+    result->count = hb_count_between(result, 0, result->size - 1);
+
     return true;
 }
 
-- 
2.14.4

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-10-04 12:06 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-02 23:33 [Qemu-devel] [PATCH v2] bitmap: Update count after a merge John Snow
2018-10-03 14:32 ` Vladimir Sementsov-Ogievskiy
2018-10-03 14:49   ` Eric Blake
2018-10-03 19:57     ` John Snow
2018-10-03 20:01       ` Eric Blake
2018-10-04 12:06         ` Vladimir Sementsov-Ogievskiy
2018-10-03 20:48 ` John Snow

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).