diff options
author | Kevin Wolf <kwolf@redhat.com> | 2017-01-18 17:16:41 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2017-02-24 16:09:23 +0100 |
commit | 680c7f96062e8c9fcc560eaf06fce164e2a564bc (patch) | |
tree | d180f4d65892ba211c5b7c30b7a0cd08014fbf42 /include | |
parent | 01a5650179a914a7603c77ccf0de9617064541ee (diff) | |
download | qemu-680c7f96062e8c9fcc560eaf06fce164e2a564bc.zip qemu-680c7f96062e8c9fcc560eaf06fce164e2a564bc.tar.gz qemu-680c7f96062e8c9fcc560eaf06fce164e2a564bc.tar.bz2 |
block: Add bdrv_new_open_driver()
This function allows to create more or less normal BlockDriverStates
even for BlockDrivers that aren't globally registered (e.g. helper
filters for block jobs).
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/block/block.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/block/block.h b/include/block/block.h index a4cd06f..bde5ebd 100644 --- a/include/block/block.h +++ b/include/block/block.h @@ -215,6 +215,8 @@ int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options, const char *bdref_key, Error **errp); BlockDriverState *bdrv_open(const char *filename, const char *reference, QDict *options, int flags, Error **errp); +BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name, + int flags, Error **errp); BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, BlockDriverState *bs, QDict *options, int flags); |