OSDN Git Service

dirty-bitmap: Change bdrv_dirty_bitmap_size() to report bytes
authorEric Blake <eblake@redhat.com>
Mon, 25 Sep 2017 14:55:12 +0000 (09:55 -0500)
committerKevin Wolf <kwolf@redhat.com>
Fri, 6 Oct 2017 14:28:58 +0000 (16:28 +0200)
commitebfcd2e75f719c5d74ba72bbca84fa9854b6698f
tree792c2a954aa93b0adb8863e5b5fba645f25d52b7
parent1b6cc579ded4f9d7923d9d59147512edd623f4c0
dirty-bitmap: Change bdrv_dirty_bitmap_size() to report bytes

We're already reporting bytes for bdrv_dirty_bitmap_granularity();
mixing bytes and sectors in our return values is a recipe for
confusion.  A later cleanup will convert dirty bitmap internals
to be entirely byte-based, but in the meantime, we should report
the bitmap size in bytes.

The only external caller in qcow2-bitmap.c is temporarily more verbose
(because it is still using sector-based math), but will later be
switched to track progress by bytes instead of sectors.

Signed-off-by: Eric Blake <eblake@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
block/dirty-bitmap.c
block/qcow2-bitmap.c