From: Devin Nakamura <devin122@gmail.com>
To: qemu-devel@nongnu.org
Cc: kwolf@redhat.com, Devin Nakamura <devin122@gmail.com>
Subject: [Qemu-devel] [PATCH V4 5/7] block: add bdrv_get_mapping()
Date: Tue, 23 Aug 2011 00:27:41 -0400 [thread overview]
Message-ID: <1314073663-32691-6-git-send-email-devin122@gmail.com> (raw)
In-Reply-To: <1314073663-32691-1-git-send-email-devin122@gmail.com>
Signed-off-by: Devin Nakamura <devin122@gmail.com>
---
block.c | 15 +++++++++++++++
block.h | 2 ++
2 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/block.c b/block.c
index 5ca396b..ed62c4a 100644
--- a/block.c
+++ b/block.c
@@ -3320,3 +3320,18 @@ int bdrv_get_conversion_options(BlockDriverState *bs,
}
return bs->drv->bdrv_get_conversion_options(bs, 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 77e3135..c983d50 100644
--- a/block.h
+++ b/block.h
@@ -264,6 +264,8 @@ int bdrv_open_conversion_target(BlockDriverState **bs, BlockDriverState *file,
QEMUOptionParameter *usr_options,
const char *target_fmt,
bool force);
+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
next prev parent reply other threads:[~2011-08-23 4:28 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-23 4:27 [Qemu-devel] [PATCH V4 0/7] Block Conversion Devin Nakamura
2011-08-23 4:27 ` [Qemu-devel] [PATCH V4 1/7] block: add block conversion api Devin Nakamura
2011-08-29 10:35 ` Kevin Wolf
2011-08-23 4:27 ` [Qemu-devel] [PATCH V4 2/7] block: make bdrv_open_common more ready to be called by bdrv_open_conversion_target Devin Nakamura
2011-08-29 10:45 ` Kevin Wolf
2011-08-23 4:27 ` [Qemu-devel] [PATCH V4 3/7] block: add bdrv_get_conversion_options() Devin Nakamura
2011-08-23 4:27 ` [Qemu-devel] [PATCH V4 4/7] block: add bdrv_open_conversion_target() Devin Nakamura
2011-08-23 4:27 ` Devin Nakamura [this message]
2011-08-23 4:27 ` [Qemu-devel] [PATCH V4 6/7] block: add bdrv_map() Devin Nakamura
2011-08-23 4:27 ` [Qemu-devel] [PATCH V4 7/7] block: add bdrv_copy_header() Devin Nakamura
2011-08-28 0:15 ` [Qemu-devel] [PATCH V4 0/7] Block Conversion Devin Nakamura
2011-08-29 10:56 ` 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=1314073663-32691-6-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 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).