All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kevin Wolf <kwolf@redhat.com>
To: qemu-devel@nongnu.org
Cc: kwolf@redhat.com, stefanha@gmail.com, jcody@redhat.com
Subject: [Qemu-devel] [PATCH 1/2] vmdk: Fix header structure
Date: Thu, 16 Aug 2012 10:54:30 +0200	[thread overview]
Message-ID: <1345107271-10154-2-git-send-email-kwolf@redhat.com> (raw)
In-Reply-To: <1345107271-10154-1-git-send-email-kwolf@redhat.com>

Commit bb45ded9 swapped gd_offset and rgd_offset. This is wrong.

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
---
 block/vmdk.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/block/vmdk.c b/block/vmdk.c
index daee426..9648398 100644
--- a/block/vmdk.c
+++ b/block/vmdk.c
@@ -57,8 +57,8 @@ typedef struct {
     int64_t desc_offset;
     int64_t desc_size;
     int32_t num_gtes_per_gte;
-    int64_t gd_offset;
     int64_t rgd_offset;
+    int64_t gd_offset;
     int64_t grain_offset;
     char filler[1];
     char check_bytes[4];
-- 
1.7.6.5

  reply	other threads:[~2012-08-16  8:54 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-08-16  8:54 [Qemu-devel] [PATCH 0/2] vmdk: Fix streamOptimized images Kevin Wolf
2012-08-16  8:54 ` Kevin Wolf [this message]
2012-08-16  8:54 ` [Qemu-devel] [PATCH 2/2] vmdk: Read footer for " Kevin Wolf
2012-08-16  9:17   ` Stefan Hajnoczi
2012-08-16  9:50     ` [Qemu-devel] [PATCH v2 " Kevin Wolf
2012-08-16 10:13       ` Stefan Hajnoczi
2012-08-17 11:16       ` Jeff Cody

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=1345107271-10154-2-git-send-email-kwolf@redhat.com \
    --to=kwolf@redhat.com \
    --cc=jcody@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.