218e99
From 3ba5256b9642a3313b9ffaf8abc0f6302e3e39e6 Mon Sep 17 00:00:00 2001
218e99
From: Max Reitz <mreitz@redhat.com>
218e99
Date: Mon, 4 Nov 2013 22:32:10 +0100
218e99
Subject: [PATCH 17/87] bdrv: Use "Error" for creating images
218e99
218e99
RH-Author: Max Reitz <mreitz@redhat.com>
218e99
Message-id: <1383604354-12743-20-git-send-email-mreitz@redhat.com>
218e99
Patchwork-id: 55319
218e99
O-Subject: [RHEL-7.0 qemu-kvm PATCH 19/43] bdrv: Use "Error" for creating images
218e99
Bugzilla: 1026524
218e99
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
218e99
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
218e99
RH-Acked-by: Fam Zheng <famz@redhat.com>
218e99
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
218e99
218e99
BZ: 1026524
218e99
218e99
Add an Error ** parameter to BlockDriver.bdrv_create to allow more
218e99
specific error messages.
218e99
218e99
Signed-off-by: Max Reitz <mreitz@redhat.com>
218e99
(cherry picked from commit d5124c00d80b4d948509f2c7f6b54228d9981f75)
218e99
218e99
Signed-off-by: Max Reitz <mreitz@redhat.com>
218e99
218e99
Conflicts:
218e99
	block/raw.c
218e99
	block/raw_bsd.c
218e99
218e99
Conflicts because raw_bsd.c does not exist downstream; instead, there is
218e99
raw.c.
218e99
---
218e99
 block.c                   | 2 +-
218e99
 block/cow.c               | 3 ++-
218e99
 block/gluster.c           | 2 +-
218e99
 block/iscsi.c             | 3 ++-
218e99
 block/qcow.c              | 3 ++-
218e99
 block/qcow2.c             | 3 ++-
218e99
 block/qed.c               | 3 ++-
218e99
 block/raw-posix.c         | 6 ++++--
218e99
 block/raw-win32.c         | 3 ++-
218e99
 block/raw.c               | 3 ++-
218e99
 block/rbd.c               | 3 ++-
218e99
 block/sheepdog.c          | 3 ++-
218e99
 block/ssh.c               | 3 ++-
218e99
 block/vdi.c               | 3 ++-
218e99
 block/vmdk.c              | 3 ++-
218e99
 block/vpc.c               | 3 ++-
218e99
 include/block/block_int.h | 3 ++-
218e99
 17 files changed, 34 insertions(+), 18 deletions(-)
218e99
218e99
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
218e99
---
218e99
 block.c                   |    2 +-
218e99
 block/cow.c               |    3 ++-
218e99
 block/gluster.c           |    2 +-
218e99
 block/iscsi.c             |    3 ++-
218e99
 block/qcow.c              |    3 ++-
218e99
 block/qcow2.c             |    3 ++-
218e99
 block/qed.c               |    3 ++-
218e99
 block/raw-posix.c         |    6 ++++--
218e99
 block/raw-win32.c         |    3 ++-
218e99
 block/raw.c               |    3 ++-
218e99
 block/rbd.c               |    3 ++-
218e99
 block/sheepdog.c          |    3 ++-
218e99
 block/ssh.c               |    3 ++-
218e99
 block/vdi.c               |    3 ++-
218e99
 block/vmdk.c              |    3 ++-
218e99
 block/vpc.c               |    3 ++-
218e99
 include/block/block_int.h |    3 ++-
218e99
 17 files changed, 34 insertions(+), 18 deletions(-)
218e99
218e99
diff --git a/block.c b/block.c
218e99
index 921fa33..0cb5ac9 100644
218e99
--- a/block.c
218e99
+++ b/block.c
218e99
@@ -373,7 +373,7 @@ static void coroutine_fn bdrv_create_co_entry(void *opaque)
218e99
     CreateCo *cco = opaque;
218e99
     assert(cco->drv);
218e99
 
218e99
-    cco->ret = cco->drv->bdrv_create(cco->filename, cco->options);
218e99
+    cco->ret = cco->drv->bdrv_create(cco->filename, cco->options, NULL);
218e99
 }
218e99
 
218e99
 int bdrv_create(BlockDriver *drv, const char* filename,
218e99
diff --git a/block/cow.c b/block/cow.c
218e99
index ce8deb8..c1d2dc8 100644
218e99
--- a/block/cow.c
218e99
+++ b/block/cow.c
218e99
@@ -295,7 +295,8 @@ static void cow_close(BlockDriverState *bs)
218e99
 {
218e99
 }
218e99
 
218e99
-static int cow_create(const char *filename, QEMUOptionParameter *options)
218e99
+static int cow_create(const char *filename, QEMUOptionParameter *options,
218e99
+                      Error **errp)
218e99
 {
218e99
     struct cow_header_v2 cow_header;
218e99
     struct stat st;
218e99
diff --git a/block/gluster.c b/block/gluster.c
218e99
index fa46b6f..bf39264 100644
218e99
--- a/block/gluster.c
218e99
+++ b/block/gluster.c
218e99
@@ -366,7 +366,7 @@ out:
218e99
 }
218e99
 
218e99
 static int qemu_gluster_create(const char *filename,
218e99
-        QEMUOptionParameter *options)
218e99
+        QEMUOptionParameter *options, Error **errp)
218e99
 {
218e99
     struct glfs *glfs;
218e99
     struct glfs_fd *fd;
218e99
diff --git a/block/iscsi.c b/block/iscsi.c
218e99
index 8d49e35..ac35caa 100644
218e99
--- a/block/iscsi.c
218e99
+++ b/block/iscsi.c
218e99
@@ -1249,7 +1249,8 @@ static int iscsi_has_zero_init(BlockDriverState *bs)
218e99
     return 0;
218e99
 }
218e99
 
218e99
-static int iscsi_create(const char *filename, QEMUOptionParameter *options)
218e99
+static int iscsi_create(const char *filename, QEMUOptionParameter *options,
218e99
+                        Error **errp)
218e99
 {
218e99
     int ret = 0;
218e99
     int64_t total_size = 0;
218e99
diff --git a/block/qcow.c b/block/qcow.c
218e99
index b8887f0..1a6926f 100644
218e99
--- a/block/qcow.c
218e99
+++ b/block/qcow.c
218e99
@@ -659,7 +659,8 @@ static void qcow_close(BlockDriverState *bs)
218e99
     error_free(s->migration_blocker);
218e99
 }
218e99
 
218e99
-static int qcow_create(const char *filename, QEMUOptionParameter *options)
218e99
+static int qcow_create(const char *filename, QEMUOptionParameter *options,
218e99
+                       Error **errp)
218e99
 {
218e99
     int header_size, backing_filename_len, l1_size, shift, i;
218e99
     QCowHeader header;
218e99
diff --git a/block/qcow2.c b/block/qcow2.c
218e99
index 2e7e9f5..b6e50af 100644
218e99
--- a/block/qcow2.c
218e99
+++ b/block/qcow2.c
218e99
@@ -1467,7 +1467,8 @@ out:
218e99
     return ret;
218e99
 }
218e99
 
218e99
-static int qcow2_create(const char *filename, QEMUOptionParameter *options)
218e99
+static int qcow2_create(const char *filename, QEMUOptionParameter *options,
218e99
+                        Error **errp)
218e99
 {
218e99
     const char *backing_file = NULL;
218e99
     const char *backing_fmt = NULL;
218e99
diff --git a/block/qed.c b/block/qed.c
218e99
index d49e0cd..c56b5e2 100644
218e99
--- a/block/qed.c
218e99
+++ b/block/qed.c
218e99
@@ -604,7 +604,8 @@ out:
218e99
     return ret;
218e99
 }
218e99
 
218e99
-static int bdrv_qed_create(const char *filename, QEMUOptionParameter *options)
218e99
+static int bdrv_qed_create(const char *filename, QEMUOptionParameter *options,
218e99
+                           Error **errp)
218e99
 {
218e99
     uint64_t image_size = 0;
218e99
     uint32_t cluster_size = QED_DEFAULT_CLUSTER_SIZE;
218e99
diff --git a/block/raw-posix.c b/block/raw-posix.c
218e99
index 5f4e824..249bffb 100644
218e99
--- a/block/raw-posix.c
218e99
+++ b/block/raw-posix.c
218e99
@@ -1041,7 +1041,8 @@ static int64_t raw_get_allocated_file_size(BlockDriverState *bs)
218e99
     return (int64_t)st.st_blocks * 512;
218e99
 }
218e99
 
218e99
-static int raw_create(const char *filename, QEMUOptionParameter *options)
218e99
+static int raw_create(const char *filename, QEMUOptionParameter *options,
218e99
+                      Error **errp)
218e99
 {
218e99
     int fd;
218e99
     int result = 0;
218e99
@@ -1505,7 +1506,8 @@ static coroutine_fn BlockDriverAIOCB *hdev_aio_discard(BlockDriverState *bs,
218e99
                        cb, opaque, QEMU_AIO_DISCARD|QEMU_AIO_BLKDEV);
218e99
 }
218e99
 
218e99
-static int hdev_create(const char *filename, QEMUOptionParameter *options)
218e99
+static int hdev_create(const char *filename, QEMUOptionParameter *options,
218e99
+                       Error **errp)
218e99
 {
218e99
     int fd;
218e99
     int ret = 0;
218e99
diff --git a/block/raw-win32.c b/block/raw-win32.c
218e99
index 1cfec65..9ebb083 100644
218e99
--- a/block/raw-win32.c
218e99
+++ b/block/raw-win32.c
218e99
@@ -421,7 +421,8 @@ static int64_t raw_get_allocated_file_size(BlockDriverState *bs)
218e99
     return st.st_size;
218e99
 }
218e99
 
218e99
-static int raw_create(const char *filename, QEMUOptionParameter *options)
218e99
+static int raw_create(const char *filename, QEMUOptionParameter *options,
218e99
+                      Error **errp)
218e99
 {
218e99
     int fd;
218e99
     int64_t total_size = 0;
218e99
diff --git a/block/raw.c b/block/raw.c
218e99
index 801591d..f92c04e 100644
218e99
--- a/block/raw.c
218e99
+++ b/block/raw.c
218e99
@@ -105,7 +105,8 @@ static BlockDriverAIOCB *raw_aio_ioctl(BlockDriverState *bs,
218e99
    return bdrv_aio_ioctl(bs->file, req, buf, cb, opaque);
218e99
 }
218e99
 
218e99
-static int raw_create(const char *filename, QEMUOptionParameter *options)
218e99
+static int raw_create(const char *filename, QEMUOptionParameter *options,
218e99
+                      Error **errp)
218e99
 {
218e99
     return bdrv_create_file(filename, options);
218e99
 }
218e99
diff --git a/block/rbd.c b/block/rbd.c
218e99
index 8d4ae9f..169d3cf 100644
218e99
--- a/block/rbd.c
218e99
+++ b/block/rbd.c
218e99
@@ -286,7 +286,8 @@ static int qemu_rbd_set_conf(rados_t cluster, const char *conf)
218e99
     return ret;
218e99
 }
218e99
 
218e99
-static int qemu_rbd_create(const char *filename, QEMUOptionParameter *options)
218e99
+static int qemu_rbd_create(const char *filename, QEMUOptionParameter *options,
218e99
+                           Error **errp)
218e99
 {
218e99
     int64_t bytes = 0;
218e99
     int64_t objsize;
218e99
diff --git a/block/sheepdog.c b/block/sheepdog.c
218e99
index a8ce933..952d703 100644
218e99
--- a/block/sheepdog.c
218e99
+++ b/block/sheepdog.c
218e99
@@ -1455,7 +1455,8 @@ out:
218e99
     return ret;
218e99
 }
218e99
 
218e99
-static int sd_create(const char *filename, QEMUOptionParameter *options)
218e99
+static int sd_create(const char *filename, QEMUOptionParameter *options,
218e99
+                     Error **errp)
218e99
 {
218e99
     int ret = 0;
218e99
     uint32_t vid = 0, base_vid = 0;
218e99
diff --git a/block/ssh.c b/block/ssh.c
218e99
index f950fcc..fa3c78d 100644
218e99
--- a/block/ssh.c
218e99
+++ b/block/ssh.c
218e99
@@ -651,7 +651,8 @@ static QEMUOptionParameter ssh_create_options[] = {
218e99
     { NULL }
218e99
 };
218e99
 
218e99
-static int ssh_create(const char *filename, QEMUOptionParameter *options)
218e99
+static int ssh_create(const char *filename, QEMUOptionParameter *options,
218e99
+                      Error **errp)
218e99
 {
218e99
     int r, ret;
218e99
     Error *local_err = NULL;
218e99
diff --git a/block/vdi.c b/block/vdi.c
218e99
index 661c3f0..84860fe 100644
218e99
--- a/block/vdi.c
218e99
+++ b/block/vdi.c
218e99
@@ -645,7 +645,8 @@ static int vdi_co_write(BlockDriverState *bs,
218e99
     return ret;
218e99
 }
218e99
 
218e99
-static int vdi_create(const char *filename, QEMUOptionParameter *options)
218e99
+static int vdi_create(const char *filename, QEMUOptionParameter *options,
218e99
+                      Error **errp)
218e99
 {
218e99
     int fd;
218e99
     int result = 0;
218e99
diff --git a/block/vmdk.c b/block/vmdk.c
218e99
index d9e2545..fa64f05 100644
218e99
--- a/block/vmdk.c
218e99
+++ b/block/vmdk.c
218e99
@@ -1552,7 +1552,8 @@ static int filename_decompose(const char *filename, char *path, char *prefix,
218e99
     return VMDK_OK;
218e99
 }
218e99
 
218e99
-static int vmdk_create(const char *filename, QEMUOptionParameter *options)
218e99
+static int vmdk_create(const char *filename, QEMUOptionParameter *options,
218e99
+                       Error **errp)
218e99
 {
218e99
     int fd, idx = 0;
218e99
     char desc[BUF_SIZE];
218e99
diff --git a/block/vpc.c b/block/vpc.c
218e99
index cf5e751..5d65756 100644
218e99
--- a/block/vpc.c
218e99
+++ b/block/vpc.c
218e99
@@ -684,7 +684,8 @@ static int create_fixed_disk(int fd, uint8_t *buf, int64_t total_size)
218e99
     return ret;
218e99
 }
218e99
 
218e99
-static int vpc_create(const char *filename, QEMUOptionParameter *options)
218e99
+static int vpc_create(const char *filename, QEMUOptionParameter *options,
218e99
+                      Error **errp)
218e99
 {
218e99
     uint8_t buf[1024];
218e99
     struct vhd_footer *footer = (struct vhd_footer *) buf;
218e99
diff --git a/include/block/block_int.h b/include/block/block_int.h
218e99
index 3450b46..696bbb9 100644
218e99
--- a/include/block/block_int.h
218e99
+++ b/include/block/block_int.h
218e99
@@ -96,7 +96,8 @@ struct BlockDriver {
218e99
                       const uint8_t *buf, int nb_sectors);
218e99
     void (*bdrv_close)(BlockDriverState *bs);
218e99
     void (*bdrv_rebind)(BlockDriverState *bs);
218e99
-    int (*bdrv_create)(const char *filename, QEMUOptionParameter *options);
218e99
+    int (*bdrv_create)(const char *filename, QEMUOptionParameter *options,
218e99
+                       Error **errp);
218e99
     int (*bdrv_set_key)(BlockDriverState *bs, const char *key);
218e99
     int (*bdrv_make_empty)(BlockDriverState *bs);
218e99
     /* aio */
218e99
-- 
218e99
1.7.1
218e99