summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorLiang Li <liliangleo@didichuxing.com>2018-02-07 11:35:49 -0500
committerJohn Snow <jsnow@redhat.com>2018-02-07 11:35:49 -0500
commit3260cdfffbf00f33923f5f9f6bef45932d7ac28b (patch)
tree139ee6552aea48667799037ea99bdd2cc199f337 /util
parent0833df03f4206a6cf416fbb3d380fa95c8e61fba (diff)
downloadqemu-3260cdfffbf00f33923f5f9f6bef45932d7ac28b.tar.gz
hbitmap: fix missing restore count when finish deserialization
The .count of HBitmap is forgot to set in function hbitmap_deserialize_finish, let's set it to the right value. Cc: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Cc: Fam Zheng <famz@redhat.com> Cc: Max Reitz <mreitz@redhat.com> Cc: John Snow <jsnow@redhat.com> Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Signed-off-by: Weiping Zhang <zhangweiping@didichuxing.com> Signed-off-by: Liang Li <liliangleo@didichuxing.com> Reviewed-by: John Snow <jsnow@redhat.com> Message-id: 20180118131308.GA2181@liangdeMacBook-Pro.local Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'util')
-rw-r--r--util/hbitmap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/hbitmap.c b/util/hbitmap.c
index 289778a55c..58a2c93842 100644
--- a/util/hbitmap.c
+++ b/util/hbitmap.c
@@ -630,6 +630,7 @@ void hbitmap_deserialize_finish(HBitmap *bitmap)
}
bitmap->levels[0][0] |= 1UL << (BITS_PER_LONG - 1);
+ bitmap->count = hb_count_between(bitmap, 0, bitmap->size - 1);
}
void hbitmap_free(HBitmap *hb)