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 v3 3/6] block: add bdrv_open_conversion_target()
Date: Wed, 13 Jul 2011 08:57:41 -0400	[thread overview]
Message-ID: <1310561864-18964-3-git-send-email-devin122@gmail.com> (raw)
In-Reply-To: <1310561864-18964-1-git-send-email-devin122@gmail.com>

Conflicts:

	block.h

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

diff --git a/block.c b/block.c
index 5c0ba2d..7d3bc67 100644
--- a/block.c
+++ b/block.c
@@ -3019,6 +3019,37 @@ out:
     return ret;
 }
 
+int bdrv_open_conversion_target(BlockDriverState **bs, BlockDriverState *file,
+                                QEMUOptionParameter *options,
+                                const char *target_fmt)
+{
+    BlockDriver *drv;
+    BlockDriverState *bss;
+
+    drv = bdrv_find_format(target_fmt);
+    if (!drv) {
+        return -ENOENT;
+    }
+
+    if (!drv->bdrv_open_conversion_target) {
+        return -ENOTSUP;
+    }
+
+    *bs = bdrv_new("");
+    bss = *bs;
+    bss->file = file;
+    bss->total_sectors = 0;
+    bss->encrypted = 0;
+    bss->valid_key = 0;
+    bss->open_flags = 0;
+    /* buffer_alignment defaulted to 512, drivers can change this value */
+    bss->buffer_alignment = 512;
+    bss->opaque = qemu_mallocz(drv->instance_size);
+    bss->drv = drv;
+    return drv->bdrv_open_conversion_target(bss, options);
+
+}
+
 int bdrv_get_conversion_options(BlockDriverState *bs,
                                 QEMUOptionParameter **options)
 {
diff --git a/block.h b/block.h
index ca0af6d..145608e 100644
--- a/block.h
+++ b/block.h
@@ -252,6 +252,9 @@ int bdrv_in_use(BlockDriverState *bs);
 
 int bdrv_get_conversion_options(BlockDriverState *bs,
                                 QEMUOptionParameter **options);
+int bdrv_open_conversion_target(BlockDriverState **bs, BlockDriverState *file,
+                                QEMUOptionParameter *options,
+                                const char *target_fmt);
 typedef enum {
     BLKDBG_L1_UPDATE,
 
-- 
1.7.6.rc1

  parent reply	other threads:[~2011-07-13 12:59 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-13 12:57 [Qemu-devel] [PATCH v3 1/6] block: add basic conversion api Devin Nakamura
2011-07-13 12:57 ` [Qemu-devel] [PATCH v3 2/6] block: add bdrv_get_conversion_options() Devin Nakamura
2011-07-13 12:57 ` Devin Nakamura [this message]
2011-07-13 12:57 ` [Qemu-devel] [PATCH v3 4/6] block: add bdrv_get_mapping() Devin Nakamura
2011-07-13 12:57 ` [Qemu-devel] [PATCH v3 5/6] block: add bdrv_map() Devin Nakamura
2011-07-13 12:57 ` [Qemu-devel] [PATCH v3 6/6] block: add bdrv_copy_header() Devin Nakamura
2011-07-14 14:19 ` [Qemu-devel] [PATCH v3 1/6] block: add basic conversion api 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=1310561864-18964-3-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.