qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Stefan Hajnoczi <stefanha@gmail.com>
To: Devin Nakamura <devin122@gmail.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 1/5] block_int: add basic conversion api
Date: Tue, 5 Jul 2011 19:17:47 +0100	[thread overview]
Message-ID: <20110705181747.GA22242@stefanha-thinkpad.localdomain> (raw)
In-Reply-To: <1309840884-32409-1-git-send-email-devin122@gmail.com>

On Tue, Jul 05, 2011 at 12:41:20AM -0400, Devin Nakamura wrote:

Please use 'block' instead of 'block_int' as the tag for this patch.  I
usually do git log <filename> to find out which tag is used for a
particular file.  'block_int' has never been used in qemu.git but
'block' is used on block layer changes.

> 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 */

How about:

/* In-place image conversion */

> +    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);

Please document these functions so people working on block drivers know what
semantics they must implement.  Unfortunately other interfaces are not
documented but I don't see a reason to avoid documentation in the future.

Important bits would be:
 * How is .bdrv_open_conversion_target() different from a regular .bdrv_open()?
 * Which BlockDriver functions are fair game to be called while opened as a conversion target?
 * Any constraints or assumptions when a block device is in conversion target mode?
 * How do the pointer arguments of .bdrv_get_mapping() behave?  Which arguments are inputs, outputs, input/output?
 * Does .bdrv_copy_header() actually copy any header or does it "install" or "write out" a new header?
 * After .bdrv_copy_header() is the block device upgraded to first-class operation or do you need to close and then reopen the image file?

Stefan

      parent reply	other threads:[~2011-07-05 18:17 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   ` [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 ` Stefan Hajnoczi [this message]

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=20110705181747.GA22242@stefanha-thinkpad.localdomain \
    --to=stefanha@gmail.com \
    --cc=devin122@gmail.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).