diff options
author | John Snow <jsnow@redhat.com> | 2015-04-17 19:49:51 -0400 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2015-04-28 15:36:10 +0200 |
commit | 5fba6c0e50b66691568b34d5a2f4be0b39f5e20a (patch) | |
tree | 617cf008e3973cd8f8c078fbac7510a495ef3b39 /include/block | |
parent | 0db6e54a8a2c6e16780356422da671b71f862341 (diff) | |
download | qemu-5fba6c0e50b66691568b34d5a2f4be0b39f5e20a.tar.gz qemu-5fba6c0e50b66691568b34d5a2f4be0b39f5e20a.tar.bz2 qemu-5fba6c0e50b66691568b34d5a2f4be0b39f5e20a.zip |
qmp: Ensure consistent granularity type
We treat this field with a variety of different types everywhere
in the code. Now it's just uint32_t.
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-id: 1429314609-29776-4-git-send-email-jsnow@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'include/block')
-rw-r--r-- | include/block/block.h | 2 | ||||
-rw-r--r-- | include/block/block_int.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/block/block.h b/include/block/block.h index feae17c73a..77cdf9131c 100644 --- a/include/block/block.h +++ b/include/block/block.h @@ -451,7 +451,7 @@ bool bdrv_qiov_is_aligned(BlockDriverState *bs, QEMUIOVector *qiov); struct HBitmapIter; typedef struct BdrvDirtyBitmap BdrvDirtyBitmap; BdrvDirtyBitmap *bdrv_create_dirty_bitmap(BlockDriverState *bs, - int granularity, + uint32_t granularity, const char *name, Error **errp); BdrvDirtyBitmap *bdrv_find_dirty_bitmap(BlockDriverState *bs, diff --git a/include/block/block_int.h b/include/block/block_int.h index dccb092df7..fb9e1002ba 100644 --- a/include/block/block_int.h +++ b/include/block/block_int.h @@ -590,7 +590,7 @@ void commit_active_start(BlockDriverState *bs, BlockDriverState *base, */ void mirror_start(BlockDriverState *bs, BlockDriverState *target, const char *replaces, - int64_t speed, int64_t granularity, int64_t buf_size, + int64_t speed, uint32_t granularity, int64_t buf_size, MirrorSyncMode mode, BlockdevOnError on_source_error, BlockdevOnError on_target_error, BlockCompletionFunc *cb, |