[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v12 30/31] block: BDS options may lack the "driver"
From: |
Max Reitz |
Subject: |
[Qemu-devel] [PATCH v12 30/31] block: BDS options may lack the "driver" option |
Date: |
Mon, 17 Dec 2018 23:43:47 +0100 |
When BDSs are created by qemu itself (e.g. as filters in block jobs),
they may not have a "driver" option in their options QDict. When
generating a json:{} filename, however, it must always be present.
Signed-off-by: Max Reitz <address@hidden>
Reviewed-by: Alberto Garcia <address@hidden>
---
block.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/block.c b/block.c
index 44bebfc80c..b75276183b 100644
--- a/block.c
+++ b/block.c
@@ -5400,6 +5400,12 @@ static bool append_strong_runtime_options(QDict *d,
BlockDriverState *bs)
}
}
+ if (!qdict_haskey(d, "driver")) {
+ /* Drivers created with bdrv_new_open_driver() may not have a
+ * @driver option. Add it here. */
+ qdict_put_str(d, "driver", bs->drv->format_name);
+ }
+
return found_any;
}
--
2.19.2
- [Qemu-devel] [PATCH v12 19/31] block: Use bdrv_dirname() for relative filenames, (continued)
- [Qemu-devel] [PATCH v12 19/31] block: Use bdrv_dirname() for relative filenames, Max Reitz, 2018/12/17
- [Qemu-devel] [PATCH v12 20/31] iotests: Add quorum case to test 110, Max Reitz, 2018/12/17
- [Qemu-devel] [PATCH v12 22/31] block: Add BlockDriver.bdrv_gather_child_options, Max Reitz, 2018/12/17
- [Qemu-devel] [PATCH v12 21/31] block: Add strong_runtime_opts to BlockDriver, Max Reitz, 2018/12/17
- [Qemu-devel] [PATCH v12 23/31] block: Generically refresh runtime options, Max Reitz, 2018/12/17
- [Qemu-devel] [PATCH v12 25/31] block: Do not copy exact_filename from format file, Max Reitz, 2018/12/17
- [Qemu-devel] [PATCH v12 26/31] block/nvme: Fix bdrv_refresh_filename(), Max Reitz, 2018/12/17
- [Qemu-devel] [PATCH v12 24/31] block: Purify .bdrv_refresh_filename(), Max Reitz, 2018/12/17
- [Qemu-devel] [PATCH v12 27/31] block/curl: Harmonize option defaults, Max Reitz, 2018/12/17
- [Qemu-devel] [PATCH v12 28/31] block/curl: Implement bdrv_refresh_filename(), Max Reitz, 2018/12/17
- [Qemu-devel] [PATCH v12 30/31] block: BDS options may lack the "driver" option,
Max Reitz <=
- [Qemu-devel] [PATCH v12 29/31] block/null: Generate filename even with latency-ns, Max Reitz, 2018/12/17
- [Qemu-devel] [PATCH v12 31/31] iotests: Test json:{} filenames of internal BDSs, Max Reitz, 2018/12/17