diff options
author | Max Reitz <mreitz@redhat.com> | 2015-07-27 17:51:32 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2015-12-18 14:34:43 +0100 |
commit | 8b13976d3fabee2f2900a9fb51c85b27ba4516b9 (patch) | |
tree | 594512dd25c37bcb5880b6b4acff0c4f6dc05e37 /include/block/block_int.h | |
parent | bd5072d75622c3a702741064df87ea8911bae1a4 (diff) | |
download | qemu-8b13976d3fabee2f2900a9fb51c85b27ba4516b9.tar.gz qemu-8b13976d3fabee2f2900a9fb51c85b27ba4516b9.tar.bz2 qemu-8b13976d3fabee2f2900a9fb51c85b27ba4516b9.zip |
block: Add opaque value to the amend CB
Add an opaque value which is to be passed to the bdrv_amend_options()
status callback.
Signed-off-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Alberto Garcia <berto@igalia.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'include/block/block_int.h')
-rw-r--r-- | include/block/block_int.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/block/block_int.h b/include/block/block_int.h index edfe376ecc..9a1c466c84 100644 --- a/include/block/block_int.h +++ b/include/block/block_int.h @@ -243,7 +243,8 @@ struct BlockDriver { BdrvCheckMode fix); int (*bdrv_amend_options)(BlockDriverState *bs, QemuOpts *opts, - BlockDriverAmendStatusCB *status_cb); + BlockDriverAmendStatusCB *status_cb, + void *cb_opaque); void (*bdrv_debug_event)(BlockDriverState *bs, BlkdebugEvent event); |