diff options
author | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2012-04-25 16:51:02 +0100 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2012-04-27 11:44:50 -0300 |
commit | 882ec7ce531091bc0f3ffc6ac71943cf383f86a6 (patch) | |
tree | b0c24df35c4e9578facbb5a99a59c217a23283da /qapi-schema.json | |
parent | 9e6636c72d8d6f0605e23ed820c8487686882b12 (diff) | |
download | qemu-882ec7ce531091bc0f3ffc6ac71943cf383f86a6.tar.gz qemu-882ec7ce531091bc0f3ffc6ac71943cf383f86a6.tar.bz2 qemu-882ec7ce531091bc0f3ffc6ac71943cf383f86a6.zip |
block: change block-job-set-speed argument from 'value' to 'speed'
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Acked-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'qapi-schema.json')
-rw-r--r-- | qapi-schema.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index 49f1e16bd7..d56fcb639b 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -1592,7 +1592,7 @@ # # @device: the device name # -# @value: the maximum speed, in bytes per second +# @speed: the maximum speed, in bytes per second # # Returns: Nothing on success # If the job type does not support throttling, NotSupported @@ -1602,7 +1602,7 @@ # Since: 1.1 ## { 'command': 'block-job-set-speed', - 'data': { 'device': 'str', 'value': 'int' } } + 'data': { 'device': 'str', 'speed': 'int' } } ## # @block-job-cancel: |