All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 1/5] block_int: add basic conversion api
@ 2011-07-05  4:41 Devin Nakamura
  2011-07-05  4:41 ` [Qemu-devel] [PATCH 2/5] block: add bdrv_open_conversion_target Devin Nakamura
                   ` (4 more replies)
  0 siblings, 5 replies; 12+ messages in thread
From: Devin Nakamura @ 2011-07-05  4:41 UTC (permalink / raw)
  To: qemu-devel

add functions to block driver interface to support inplace image conversion

Signed-off-by: Devin Nakamura <devin122@gmail.com>
---
 block_int.h |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/block_int.h b/block_int.h
index 1e265d2..ef311c7 100644
--- a/block_int.h
+++ b/block_int.h
@@ -136,6 +136,16 @@ struct BlockDriver {
      * zeros, 0 otherwise.
      */
     int (*bdrv_has_zero_init)(BlockDriverState *bs);
+    
+    /*  Image conversion stuff */
+    int (*bdrv_open_conversion_target)(BlockDriverState *bs, char *filename,
+        QEMUOptionParameter *options);
+    int (*bdrv_get_mapping)(BlockDriverState *bs, uint64_t *guest_offset,
+        uint64_t *host_offset, uint64_t *contiguous_bytes);
+    int (*bdrv_map)(BlockDriverState *bs, uint64_t *guest_offset, 
+        uint64_t *host_offset, uint64_t *contiguous_bytes);
+    int (*bdrv_copy_header) (BlockDriverState *bs);
+    
 
     QLIST_ENTRY(BlockDriver) list;
 };
-- 
1.7.6.rc1

^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2011-07-13 10:33 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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   ` [Qemu-devel] [PATCH v2 " Devin Nakamura
2011-07-13 10:35     ` 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

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.