[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 04/12] block: Check create_opts before image creatio
From: |
Max Reitz |
Subject: |
[Qemu-devel] [PATCH 04/12] block: Check create_opts before image creation |
Date: |
Tue, 25 Nov 2014 15:07:57 +0100 |
If a driver supports image creation, it needs to set the .create_opts
field. We can use that to make sure .create_opts for both drivers
involved is not NULL in bdrv_img_create(), which is important so that
the create_opts pointer in that function is not NULL after the
qemu_opts_append() calls and when going into qemu_opts_create().
Cc: address@hidden
Signed-off-by: Max Reitz <address@hidden>
---
block.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/block.c b/block.c
index b31fb67..1e4a72f 100644
--- a/block.c
+++ b/block.c
@@ -5560,6 +5560,18 @@ void bdrv_img_create(const char *filename, const char
*fmt,
return;
}
+ if (!drv->create_opts) {
+ error_setg(errp, "Format driver '%s' does not support image creation",
+ drv->format_name);
+ return;
+ }
+
+ if (!proto_drv->create_opts) {
+ error_setg(errp, "Protocol driver '%s' does not support image
creation",
+ proto_drv->format_name);
+ return;
+ }
+
create_opts = qemu_opts_append(create_opts, drv->create_opts);
create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
--
1.9.3
- [Qemu-devel] [PATCH 03/12] block/nfs: Add create_opts, (continued)
- [Qemu-devel] [PATCH 03/12] block/nfs: Add create_opts, Max Reitz, 2014/11/25
- [Qemu-devel] [PATCH 01/12] block: qcow2 driver may not be found, Max Reitz, 2014/11/25
- Re: [Qemu-devel] [PATCH 01/12] block: qcow2 driver may not be found, Markus Armbruster, 2014/11/26
- Re: [Qemu-devel] [PATCH 01/12] block: qcow2 driver may not be found, Max Reitz, 2014/11/26
- Re: [Qemu-devel] [PATCH 01/12] block: qcow2 driver may not be found, Eric Blake, 2014/11/26
- Re: [Qemu-devel] [PATCH 01/12] block: qcow2 driver may not be found, Max Reitz, 2014/11/26
- Re: [Qemu-devel] [PATCH 01/12] block: qcow2 driver may not be found, Kevin Wolf, 2014/11/26
- Re: [Qemu-devel] [PATCH 01/12] block: qcow2 driver may not be found, Markus Armbruster, 2014/11/27
[Qemu-devel] [PATCH 04/12] block: Check create_opts before image creation,
Max Reitz <=
[Qemu-devel] [PATCH 05/12] qemu-img: Check create_opts before image creation, Max Reitz, 2014/11/25
[Qemu-devel] [PATCH 06/12] qemu-img: Check create_opts before image amendment, Max Reitz, 2014/11/25
[Qemu-devel] [PATCH 08/12] iotests: Add test for unsupported image creation, Max Reitz, 2014/11/25
[Qemu-devel] [PATCH 07/12] iotests: Only kill NBD server if it runs, Max Reitz, 2014/11/25
[Qemu-devel] [PATCH 09/12] qcow2: Prevent numerical overflow, Max Reitz, 2014/11/25
[Qemu-devel] [PATCH 10/12] qcow2: Flushing the caches in qcow2_close may fail, Max Reitz, 2014/11/25
[Qemu-devel] [PATCH 12/12] block/raw-posix: Fix ret in raw_open_common(), Max Reitz, 2014/11/25
[Qemu-devel] [PATCH 11/12] qcow2: Respect bdrv_truncate() error, Max Reitz, 2014/11/25