qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Cc: kwolf@redhat.com, stefanha@linux.vnet.ibm.com
Subject: [Qemu-devel] [PATCH v2 1/7] vmdk: fix return values of vmdk_parent_open
Date: Thu, 20 Oct 2011 13:16:19 +0200	[thread overview]
Message-ID: <1319109385-7927-2-git-send-email-pbonzini@redhat.com> (raw)
In-Reply-To: <1319109385-7927-1-git-send-email-pbonzini@redhat.com>

While vmdk_open_desc_file (touched by the patch) correctly changed -1
to -EINVAL, vmdk_open did not.  Fix it directly in vmdk_parent_open.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 block/vmdk.c |   15 +++++++++------
 1 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/block/vmdk.c b/block/vmdk.c
index 5d16ec4..ea00938 100644
--- a/block/vmdk.c
+++ b/block/vmdk.c
@@ -283,10 +283,12 @@ static int vmdk_parent_open(BlockDriverState *bs)
     char *p_name;
     char desc[DESC_SIZE + 1];
     BDRVVmdkState *s = bs->opaque;
+    int ret;
 
     desc[DESC_SIZE] = '\0';
-    if (bdrv_pread(bs->file, s->desc_offset, desc, DESC_SIZE) != DESC_SIZE) {
-        return -1;
+    ret = bdrv_pread(bs->file, s->desc_offset, desc, DESC_SIZE);
+    if (ret < 0) {
+        return ret;
     }
 
     p_name = strstr(desc, "parentFileNameHint");
@@ -296,10 +298,10 @@ static int vmdk_parent_open(BlockDriverState *bs)
         p_name += sizeof("parentFileNameHint") + 1;
         end_name = strchr(p_name, '\"');
         if (end_name == NULL) {
-            return -1;
+            return -EINVAL;
         }
         if ((end_name - p_name) > sizeof(bs->backing_file) - 1) {
-            return -1;
+            return -EINVAL;
         }
 
         pstrcpy(bs->backing_file, end_name - p_name + 1, p_name);
@@ -629,9 +631,10 @@ static int vmdk_open_desc_file(BlockDriverState *bs, int flags,
     }
 
     /* try to open parent images, if exist */
-    if (vmdk_parent_open(bs)) {
+    ret = vmdk_parent_open(bs);
+    if (ret) {
         vmdk_free_extents(bs);
-        return -EINVAL;
+        return ret;
     }
     s->parent_cid = vmdk_read_cid(bs, 1);
     return 0;
-- 
1.7.6

  reply	other threads:[~2011-10-20 11:16 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-10-20 11:16 [Qemu-devel] [PATCH v2 0/7] finish coroutinization of drivers Paolo Bonzini
2011-10-20 11:16 ` Paolo Bonzini [this message]
2011-10-20 11:16 ` [Qemu-devel] [PATCH v2 2/7] vmdk: clean up open Paolo Bonzini
2011-10-20 11:16 ` [Qemu-devel] [PATCH v2 3/7] block: add a CoMutex to synchronous read drivers Paolo Bonzini
2011-10-20 11:16 ` [Qemu-devel] [PATCH v2 4/7] block: take lock around bdrv_read implementations Paolo Bonzini
2011-11-06 14:27   ` Avi Kivity
2011-11-06 17:25     ` Paolo Bonzini
2011-11-06 17:29       ` Avi Kivity
2011-11-07 22:26       ` Avi Kivity
2011-11-07 23:12         ` Avi Kivity
2011-11-07  9:12     ` Kevin Wolf
2011-10-20 11:16 ` [Qemu-devel] [PATCH v2 5/7] block: take lock around bdrv_write implementations Paolo Bonzini
2011-10-20 11:16 ` [Qemu-devel] [PATCH v2 6/7] block: change flush to co_flush Paolo Bonzini
2011-10-20 11:16 ` [Qemu-devel] [PATCH v2 7/7] block: change discard to co_discard Paolo Bonzini
2011-10-21  9:42 ` [Qemu-devel] [PATCH v2 0/7] finish coroutinization of drivers Kevin Wolf

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1319109385-7927-2-git-send-email-pbonzini@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@linux.vnet.ibm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).