qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Anthony Liguori <aliguori@redhat.com>
To: Kevin Wolf <kwolf@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] qemu-img rebase: Add -f option
Date: Tue, 09 Mar 2010 11:22:02 -0600	[thread overview]
Message-ID: <4B9683BA.7050602@redhat.com> (raw)
In-Reply-To: <1267528471-7011-1-git-send-email-kwolf@redhat.com>

On 03/02/2010 05:14 AM, Kevin Wolf wrote:
> Allow the user to specify the format of the image to rebase.
>
> Signed-off-by: Kevin Wolf<kwolf@redhat.com>
>    

Applied.  Thanks.

Regards,

Anthony Liguori
> ---
>   qemu-img.c |   20 ++++++++++++++++----
>   1 files changed, 16 insertions(+), 4 deletions(-)
>
> diff --git a/qemu-img.c b/qemu-img.c
> index 258dc62..7fc980a 100644
> --- a/qemu-img.c
> +++ b/qemu-img.c
> @@ -1081,24 +1081,28 @@ static int img_snapshot(int argc, char **argv)
>   static int img_rebase(int argc, char **argv)
>   {
>       BlockDriverState *bs, *bs_old_backing, *bs_new_backing;
> -    BlockDriver *old_backing_drv, *new_backing_drv;
> +    BlockDriver *drv, *old_backing_drv, *new_backing_drv;
>       char *filename;
> -    const char *out_basefmt, *out_baseimg;
> +    const char *fmt, *out_basefmt, *out_baseimg;
>       int c, flags, ret;
>       int unsafe = 0;
>
>       /* Parse commandline parameters */
> +    fmt = NULL;
>       out_baseimg = NULL;
>       out_basefmt = NULL;
>
>       for(;;) {
> -        c = getopt(argc, argv, "uhF:b:");
> +        c = getopt(argc, argv, "uhf:F:b:");
>           if (c == -1)
>               break;
>           switch(c) {
>           case 'h':
>               help();
>               return 0;
> +        case 'f':
> +            fmt = optarg;
> +            break;
>           case 'F':
>               out_basefmt = optarg;
>               break;
> @@ -1125,8 +1129,16 @@ static int img_rebase(int argc, char **argv)
>       if (!bs)
>           error("Not enough memory");
>
> +    drv = NULL;
> +    if (fmt) {
> +        drv = bdrv_find_format(fmt);
> +        if (drv == NULL) {
> +            error("Invalid format name: '%s'", fmt);
> +        }
> +    }
> +
>       flags = BRDV_O_FLAGS | BDRV_O_RDWR | (unsafe ? BDRV_O_NO_BACKING : 0);
> -    if (bdrv_open2(bs, filename, flags, NULL)<  0) {
> +    if (bdrv_open2(bs, filename, flags, drv)<  0) {
>           error("Could not open '%s'", filename);
>       }
>
>    

      parent reply	other threads:[~2010-03-09 17:22 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-03-02 11:14 [Qemu-devel] [PATCH] qemu-img rebase: Add -f option Kevin Wolf
2010-03-03  8:24 ` [Qemu-devel] " Juan Quintela
2010-03-09 17:22 ` Anthony Liguori [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=4B9683BA.7050602@redhat.com \
    --to=aliguori@redhat.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).