All of lore.kernel.org
 help / color / mirror / Atom feed
From: Devin Nakamura <devin122@gmail.com>
To: qemu-devel@nongnu.org
Cc: kwolf@redhat.com, Devin Nakamura <devin122@gmail.com>
Subject: [Qemu-devel] [PATCH v2 3/5] block: add bdrv_get_mapping()
Date: Mon, 11 Jul 2011 15:55:50 -0400	[thread overview]
Message-ID: <1310414150-4344-1-git-send-email-devin122@gmail.com> (raw)
In-Reply-To: <1309840884-32409-3-git-send-email-devin122@gmail.com>


Signed-off-by: Devin Nakamura <devin122@gmail.com>
---
 block.c |   14 ++++++++++++++
 block.h |    2 ++
 2 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/block.c b/block.c
index 97d5a6b..3874ed5 100644
--- a/block.c
+++ b/block.c
@@ -3037,3 +3037,17 @@ int bdrv_open_conversion_target(BlockDriverState **bs,
     (*bs)->opaque = qemu_malloc(drv->instance_size);
     return drv->bdrv_open_conversion_target(*bs, filename, options);
 }
+
+int bdrv_get_mapping(BlockDriverState *bs, uint64_t *guest_offset,
+                     uint64_t *host_offset, uint64_t *contiguous_bytes)
+{
+    BlockDriver *drv = bs->drv;
+    if (!drv) {
+        return -ENOMEDIUM;
+    }
+    if (!drv->bdrv_get_mapping) {
+        return -ENOTSUP;
+    }
+    return drv->bdrv_get_mapping(bs, guest_offset, host_offset,
+        contiguous_bytes);
+}
diff --git a/block.h b/block.h
index da87afb..8207389 100644
--- a/block.h
+++ b/block.h
@@ -252,6 +252,8 @@ int bdrv_in_use(BlockDriverState *bs);
 
 int bdrv_open_conversion_target(BlockDriverState **bs, char *filename,
                                 char *target_fmt, QEMUOptionParameter *options);
+int bdrv_get_mapping(BlockDriverState *bs, uint64_t *guest_offset,
+                     uint64_t *host_offset, uint64_t *contiguous_bytes);
 typedef enum {
     BLKDBG_L1_UPDATE,
 
-- 
1.7.6.rc1

  reply	other threads:[~2011-07-11 19:56 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-05  4:41 [Qemu-devel] [PATCH 1/5] block_int: add basic conversion api Devin Nakamura
2011-07-05  4:41 ` [Qemu-devel] [PATCH 2/5] block: add bdrv_open_conversion_target Devin Nakamura
2011-07-05 16:17   ` Kevin Wolf
2011-07-05 18:18   ` Stefan Hajnoczi
2011-07-05  4:41 ` [Qemu-devel] [PATCH 3/5] block: add bdrv_get_mapping() Devin Nakamura
2011-07-11 19:55   ` Devin Nakamura [this message]
2011-07-13 10:35     ` [Qemu-devel] [PATCH v2 " Kevin Wolf
2011-07-05  4:41 ` [Qemu-devel] [PATCH 4/5] block: add bdrv_map() Devin Nakamura
2011-07-11 19:52   ` [Qemu-devel] [PATCH v2 " Devin Nakamura
2011-07-05  4:41 ` [Qemu-devel] [PATCH 5/5] block: add bdrv_copy_header() Devin Nakamura
2011-07-11 19:45   ` [Qemu-devel] [PATCH v2 " Devin Nakamura
2011-07-05 18:17 ` [Qemu-devel] [PATCH 1/5] block_int: add basic conversion api Stefan Hajnoczi

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=1310414150-4344-1-git-send-email-devin122@gmail.com \
    --to=devin122@gmail.com \
    --cc=kwolf@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /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.