diff options
author | Kevin Wolf <kwolf@redhat.com> | 2015-04-27 13:50:54 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2015-12-18 14:34:42 +0100 |
commit | 4cdd01d32ee6fe04f8d909bfd3708be6864873a2 (patch) | |
tree | 083d5099be859b78bbebe3af85f78a3f93ebb252 /block/blkverify.c | |
parent | 260fecf13b0d30621dc88da03dc1b502b7358c6b (diff) | |
download | qemu-4cdd01d32ee6fe04f8d909bfd3708be6864873a2.tar.gz qemu-4cdd01d32ee6fe04f8d909bfd3708be6864873a2.tar.bz2 qemu-4cdd01d32ee6fe04f8d909bfd3708be6864873a2.zip |
block: Pass driver-specific options to .bdrv_refresh_filename()
In order to decide whether a blkdebug: filename can be produced or a
json: one is necessary, blkdebug checked whether bs->options had more
options than just "config", "x-image" or "image" (the latter including
nested options). That doesn't work well when generic block layer options
are present.
This patch passes an option QDict to the driver that contains only
driver-specific options, i.e. the options for the general block layer as
well as child nodes are already filtered out. Works much better this
way.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Alberto Garcia <berto@igalia.com>
Diffstat (limited to 'block/blkverify.c')
-rw-r--r-- | block/blkverify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blkverify.c b/block/blkverify.c index c5f8e8dcba..1d754496bc 100644 --- a/block/blkverify.c +++ b/block/blkverify.c @@ -307,7 +307,7 @@ static void blkverify_attach_aio_context(BlockDriverState *bs, bdrv_attach_aio_context(s->test_file->bs, new_context); } -static void blkverify_refresh_filename(BlockDriverState *bs) +static void blkverify_refresh_filename(BlockDriverState *bs, QDict *options) { BDRVBlkverifyState *s = bs->opaque; |