Skip to content

Commit

Permalink
block/sheepdog: Propagate errors through do_sd_create()
Browse files Browse the repository at this point in the history
Cc: MORITA Kazutaka <morita.kazutaka@lab.ntt.co.jp>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
  • Loading branch information
Markus Armbruster authored and stefanhaRH committed May 28, 2014
1 parent 318df29 commit 7d2d3e7
Showing 1 changed file with 21 additions and 14 deletions.
35 changes: 21 additions & 14 deletions block/sheepdog.c
Expand Up @@ -1481,19 +1481,17 @@ static int sd_open(BlockDriverState *bs, QDict *options, int flags,
return ret;
}

static int do_sd_create(BDRVSheepdogState *s, uint32_t *vdi_id, int snapshot)
static int do_sd_create(BDRVSheepdogState *s, uint32_t *vdi_id, int snapshot,
Error **errp)
{
Error *local_err = NULL;
SheepdogVdiReq hdr;
SheepdogVdiRsp *rsp = (SheepdogVdiRsp *)&hdr;
int fd, ret;
unsigned int wlen, rlen = 0;
char buf[SD_MAX_VDI_LEN];

fd = connect_to_sdog(s, &local_err);
fd = connect_to_sdog(s, errp);
if (fd < 0) {
qerror_report_err(local_err);
error_free(local_err);
return fd;
}

Expand Down Expand Up @@ -1522,11 +1520,12 @@ static int do_sd_create(BDRVSheepdogState *s, uint32_t *vdi_id, int snapshot)
closesocket(fd);

if (ret) {
error_setg_errno(errp, -ret, "create failed");
return ret;
}

if (rsp->result != SD_RES_SUCCESS) {
error_report("%s, %s", sd_strerror(rsp->result), s->inode.name);
error_setg(errp, "%s, %s", sd_strerror(rsp->result), s->inode.name);
return -EIO;
}

Expand Down Expand Up @@ -1731,15 +1730,19 @@ static int sd_create(const char *filename, QEMUOptionParameter *options,
bdrv_unref(bs);
}

ret = do_sd_create(s, &vid, 0);
if (!prealloc || ret) {
ret = do_sd_create(s, &vid, 0, &local_err);
if (ret) {
qerror_report_err(local_err);
error_free(local_err);
goto out;
}

ret = sd_prealloc(filename, &local_err);
if (ret < 0) {
qerror_report_err(local_err);
error_free(local_err);
if (prealloc) {
ret = sd_prealloc(filename, &local_err);
if (ret < 0) {
qerror_report_err(local_err);
error_free(local_err);
}
}
out:
g_free(s);
Expand Down Expand Up @@ -1928,8 +1931,10 @@ static int sd_create_branch(BDRVSheepdogState *s)
* false bail out.
*/
deleted = sd_delete(s);
ret = do_sd_create(s, &vid, !deleted);
ret = do_sd_create(s, &vid, !deleted, &local_err);
if (ret) {
qerror_report_err(local_err);
error_free(local_err);
goto out;
}

Expand Down Expand Up @@ -2197,8 +2202,10 @@ static int sd_snapshot_create(BlockDriverState *bs, QEMUSnapshotInfo *sn_info)
goto cleanup;
}

ret = do_sd_create(s, &new_vid, 1);
ret = do_sd_create(s, &new_vid, 1, &local_err);
if (ret < 0) {
qerror_report_err(local_err);
error_free(local_err);
error_report("failed to create inode for snapshot. %s",
strerror(errno));
goto cleanup;
Expand Down

0 comments on commit 7d2d3e7

Please sign in to comment.