diff options
author | Kevin Wolf <kwolf@redhat.com> | 2015-11-11 17:02:02 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2015-11-11 17:02:02 +0100 |
commit | 4d07c720f44beafd10907cecfd5b8a57622243c1 (patch) | |
tree | 40125a1c80d9c82145b55123f58d07d8a4b6d31f /include | |
parent | a9ecfa004f2dd83df612daac4a87dfc3a0feba28 (diff) | |
parent | 92e68987745b0f89f04d29fe1d0c821010d58ea6 (diff) | |
download | qemu-4d07c720f44beafd10907cecfd5b8a57622243c1.zip qemu-4d07c720f44beafd10907cecfd5b8a57622243c1.tar.gz qemu-4d07c720f44beafd10907cecfd5b8a57622243c1.tar.bz2 |
Merge remote-tracking branch 'mreitz/tags/pull-block-for-kevin-2015-11-11' into queue-block
Block patches from 2015-10-26 until 2015-11-11.
# gpg: Signature made Wed Nov 11 17:00:50 2015 CET using RSA key ID E838ACAD
# gpg: Good signature from "Max Reitz <mreitz@redhat.com>"
* mreitz/tags/pull-block-for-kevin-2015-11-11:
iotests: Check for quorum support in test 139
qcow2: Fix qcow2_get_cluster_offset() for zero clusters
iotests: Add tests for the x-blockdev-del command
block: Add 'x-blockdev-del' QMP command
block: Add blk_get_refcnt()
mirror: block all operations on the target image during the job
qemu-iotests: fix -valgrind option for check
qemu-iotests: fix cleanup of background processes
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/sysemu/block-backend.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sysemu/block-backend.h b/include/sysemu/block-backend.h index 40e315b..f4a68e2 100644 --- a/include/sysemu/block-backend.h +++ b/include/sysemu/block-backend.h @@ -65,6 +65,7 @@ BlockBackend *blk_new_with_bs(const char *name, Error **errp); BlockBackend *blk_new_open(const char *name, const char *filename, const char *reference, QDict *options, int flags, Error **errp); +int blk_get_refcnt(BlockBackend *blk); void blk_ref(BlockBackend *blk); void blk_unref(BlockBackend *blk); const char *blk_name(BlockBackend *blk); |