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 /qapi | |
parent | 0db6e54a8a2c6e16780356422da671b71f862341 (diff) | |
download | 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 'qapi')
-rw-r--r-- | qapi/block-core.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qapi/block-core.json b/qapi/block-core.json index 915cdc0ed1..7dc64410ef 100644 --- a/qapi/block-core.json +++ b/qapi/block-core.json @@ -339,7 +339,7 @@ # Since: 1.3 ## { 'type': 'BlockDirtyInfo', - 'data': {'*name': 'str', 'count': 'int', 'granularity': 'int'} } + 'data': {'*name': 'str', 'count': 'int', 'granularity': 'uint32'} } ## # @BlockInfo: |