diff options
author | Max Reitz | 2019-05-07 22:35:06 +0200 |
---|---|---|
committer | Max Reitz | 2019-06-14 14:16:57 +0200 |
commit | 1adb0b5e0f7c5c4f707b1ffa98e2b15ef51ebbc5 (patch) | |
tree | 5fba9e1cb1d55a7dd38e17d805a49b77b8549e23 /qapi | |
parent | blkdebug: Add "none" event (diff) | |
download | qemu-1adb0b5e0f7c5c4f707b1ffa98e2b15ef51ebbc5.tar.gz qemu-1adb0b5e0f7c5c4f707b1ffa98e2b15ef51ebbc5.tar.xz qemu-1adb0b5e0f7c5c4f707b1ffa98e2b15ef51ebbc5.zip |
blkdebug: Inject errors on .bdrv_co_block_status()
Signed-off-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-id: 20190507203508.18026-6-mreitz@redhat.com
Signed-off-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'qapi')
-rw-r--r-- | qapi/block-core.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/qapi/block-core.json b/qapi/block-core.json index 60f903afa3..61124431d8 100644 --- a/qapi/block-core.json +++ b/qapi/block-core.json @@ -3281,10 +3281,13 @@ # # @flush: .bdrv_co_flush_to_disk() # +# @block-status: .bdrv_co_block_status() +# # Since: 4.1 ## { 'enum': 'BlkdebugIOType', 'prefix': 'BLKDEBUG_IO_TYPE', - 'data': [ 'read', 'write', 'write-zeroes', 'discard', 'flush' ] } + 'data': [ 'read', 'write', 'write-zeroes', 'discard', 'flush', + 'block-status' ] } ## # @BlkdebugInjectErrorOptions: |