diff options
| author | Max Reitz | 2015-08-26 19:47:49 +0200 |
|---|---|---|
| committer | Kevin Wolf | 2015-09-14 16:51:36 +0200 |
| commit | 6ebf9aa2ef7f3e094d91ea27140dc6e73774386a (patch) | |
| tree | f4e0b864d52ad4662abed1f60be2ca1990a44c6e /include/block | |
| parent | block: Always pass NULL as drv for bdrv_open() (diff) | |
| download | qemu-6ebf9aa2ef7f3e094d91ea27140dc6e73774386a.tar.gz qemu-6ebf9aa2ef7f3e094d91ea27140dc6e73774386a.tar.xz qemu-6ebf9aa2ef7f3e094d91ea27140dc6e73774386a.zip | |
block: Drop drv parameter from bdrv_open()
Now that this parameter is effectively unused, we can drop it and just
pass NULL on to bdrv_open_inherit().
Signed-off-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Alberto Garcia <berto@igalia.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'include/block')
| -rw-r--r-- | include/block/block.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/block/block.h b/include/block/block.h index 0acd104051..ab4518c957 100644 --- a/include/block/block.h +++ b/include/block/block.h @@ -218,8 +218,7 @@ void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd); int bdrv_open_backing_file(BlockDriverState *bs, QDict *options, Error **errp); int bdrv_append_temp_snapshot(BlockDriverState *bs, int flags, Error **errp); int bdrv_open(BlockDriverState **pbs, const char *filename, - const char *reference, QDict *options, int flags, - BlockDriver *drv, Error **errp); + const char *reference, QDict *options, int flags, Error **errp); BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, BlockDriverState *bs, int flags); int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp); |
