qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Peter Lieven <pl@kamp.de>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: kwolf@redhat.com, qemu-devel@nongnu.org, stefanha@redhat.com
Subject: Re: [Qemu-devel] [PATCH 1.8 3/6] qemu-img: add option to specify alternate iobuffer size
Date: Mon, 25 Nov 2013 16:01:57 +0100	[thread overview]
Message-ID: <52936665.3050302@kamp.de> (raw)
In-Reply-To: <529364B5.6000202@redhat.com>

On 25.11.2013 15:54, Paolo Bonzini wrote:
> Il 25/11/2013 14:57, Peter Lieven ha scritto:
>> since the convert process is basically a sync operation it might
>> be benificial in some case to change the hardcoded I/O buffer
>> size to an alternate (greater) value.
> Do you really need the extra knob?  You can just add to BlockLimits the
> optimal transfer length, and use it unconditionally.
That would be possible.
>
> (It would be interesting to add a double-buffer to qemu-img convert,
> using asynchronous I/O...).
That would be the best benefit of all. But I thought this would be too
complicated.

Peter
>
> Paolo
>
>> Signed-off-by: Peter Lieven <pl@kamp.de>
>> ---
>>   qemu-img-cmds.hx |    4 ++--
>>   qemu-img.c       |   25 ++++++++++++++++++++-----
>>   qemu-img.texi    |    4 +++-
>>   3 files changed, 25 insertions(+), 8 deletions(-)
>>
>> diff --git a/qemu-img-cmds.hx b/qemu-img-cmds.hx
>> index da1d965..e0b8ab4 100644
>> --- a/qemu-img-cmds.hx
>> +++ b/qemu-img-cmds.hx
>> @@ -34,9 +34,9 @@ STEXI
>>   ETEXI
>>   
>>   DEF("convert", img_convert,
>> -    "convert [-c] [-p] [-q] [-n] [-f fmt] [-t cache] [-O output_fmt] [-o options] [-s snapshot_name] [-S sparse_size] filename [filename2 [...]] output_filename")
>> +    "convert [-c] [-p] [-q] [-n] [-f fmt] [-t cache] [-O output_fmt] [-o options] [-s snapshot_name] [-S sparse_size] [-m iobuf_size] filename [filename2 [...]] output_filename")
>>   STEXI
>> -@item convert [-c] [-p] [-q] [-n] [-f @var{fmt}] [-t @var{cache}] [-O @var{output_fmt}] [-o @var{options}] [-s @var{snapshot_name}] [-S @var{sparse_size}] @var{filename} [@var{filename2} [...]] @var{output_filename}
>> +@item convert [-c] [-p] [-q] [-n] [-f @var{fmt}] [-t @var{cache}] [-O @var{output_fmt}] [-o @var{options}] [-s @var{snapshot_name}] [-S @var{sparse_size}] [-m @var{iobuf_size}] @var{filename} [@var{filename2} [...]] @var{output_filename}
>>   ETEXI
>>   
>>   DEF("info", img_info,
>> diff --git a/qemu-img.c b/qemu-img.c
>> index e2d1a0a..0ce5d14 100644
>> --- a/qemu-img.c
>> +++ b/qemu-img.c
>> @@ -105,6 +105,7 @@ static void help(void)
>>              "       conversion. If the number of bytes is 0, the source will not be scanned for\n"
>>              "       unallocated or zero sectors, and the destination image will always be\n"
>>              "       fully allocated\n"
>> +           "  '-m' specify I/O buffer size in bytes (default 2M)\n"
>>              "  '--output' takes the format in which the output must be done (human or json)\n"
>>              "  '-n' skips the target volume creation (useful if the volume is created\n"
>>              "       prior to running qemu-img)\n"
>> @@ -1135,6 +1136,7 @@ static int img_convert(int argc, char **argv)
>>               sector_num_next_status = 0;
>>       uint64_t bs_sectors;
>>       uint8_t * buf = NULL;
>> +    size_t bufsectors = IO_BUF_SIZE / BDRV_SECTOR_SIZE;
>>       const uint8_t *buf1;
>>       BlockDriverInfo bdi;
>>       QEMUOptionParameter *param = NULL, *create_options = NULL;
>> @@ -1152,7 +1154,7 @@ static int img_convert(int argc, char **argv)
>>       compress = 0;
>>       skip_create = 0;
>>       for(;;) {
>> -        c = getopt(argc, argv, "f:O:B:s:hce6o:pS:t:qn");
>> +        c = getopt(argc, argv, "f:O:B:s:hce6o:pS:m:t:qn");
>>           if (c == -1) {
>>               break;
>>           }
>> @@ -1200,6 +1202,19 @@ static int img_convert(int argc, char **argv)
>>               min_sparse = sval / BDRV_SECTOR_SIZE;
>>               break;
>>           }
>> +        case 'm':
>> +        {
>> +            int64_t sval;
>> +            char *end;
>> +            sval = strtosz_suffix(optarg, &end, STRTOSZ_DEFSUFFIX_B);
>> +            if (sval < BDRV_SECTOR_SIZE || *end) {
>> +                error_report("Invalid I/O buffer size specified");
>> +                return 1;
>> +            }
>> +
>> +            bufsectors = sval / BDRV_SECTOR_SIZE;
>> +            break;
>> +        }
>>           case 'p':
>>               progress = 1;
>>               break;
>> @@ -1371,7 +1386,7 @@ static int img_convert(int argc, char **argv)
>>       bs_i = 0;
>>       bs_offset = 0;
>>       bdrv_get_geometry(bs[0], &bs_sectors);
>> -    buf = qemu_blockalign(out_bs, IO_BUF_SIZE);
>> +    buf = qemu_blockalign(out_bs, bufsectors * BDRV_SECTOR_SIZE);
>>   
>>       if (skip_create) {
>>           int64_t output_length = bdrv_getlength(out_bs);
>> @@ -1394,7 +1409,7 @@ static int img_convert(int argc, char **argv)
>>               goto out;
>>           }
>>           cluster_size = bdi.cluster_size;
>> -        if (cluster_size <= 0 || cluster_size > IO_BUF_SIZE) {
>> +        if (cluster_size <= 0 || cluster_size > bufsectors * BDRV_SECTOR_SIZE) {
>>               error_report("invalid cluster size");
>>               ret = -1;
>>               goto out;
>> @@ -1531,8 +1546,8 @@ static int img_convert(int argc, char **argv)
>>                   sector_num_next_status = sector_num + n1;
>>               }
>>   
>> -            if (nb_sectors >= (IO_BUF_SIZE / 512)) {
>> -                n = (IO_BUF_SIZE / 512);
>> +            if (nb_sectors >= bufsectors) {
>> +                n = bufsectors;
>>               } else {
>>                   n = nb_sectors;
>>               }
>> diff --git a/qemu-img.texi b/qemu-img.texi
>> index da36975..87f9d0f 100644
>> --- a/qemu-img.texi
>> +++ b/qemu-img.texi
>> @@ -179,7 +179,7 @@ Error on reading data
>>   
>>   @end table
>>   
>> -@item convert [-c] [-p] [-n] [-f @var{fmt}] [-t @var{cache}] [-O @var{output_fmt}] [-o @var{options}] [-s @var{snapshot_name}] [-S @var{sparse_size}] @var{filename} [@var{filename2} [...]] @var{output_filename}
>> +@item convert [-c] [-p] [-n] [-f @var{fmt}] [-t @var{cache}] [-O @var{output_fmt}] [-o @var{options}] [-s @var{snapshot_name}] [-S @var{sparse_size}] [-m @var{iobuf_size}] @var{filename} [@var{filename2} [...]] @var{output_filename}
>>   
>>   Convert the disk image @var{filename} or a snapshot @var{snapshot_name} to disk image @var{output_filename}
>>   using format @var{output_fmt}. It can be optionally compressed (@code{-c}
>> @@ -199,6 +199,8 @@ conversion. If @var{sparse_size} is 0, the source will not be scanned for
>>   unallocated or zero sectors, and the destination image will always be
>>   fully allocated.
>>   
>> +@var{iobuf_size} indicates the size of the I/O buffer (defaults to 2M).
>> +
>>   You can use the @var{backing_file} option to force the output image to be
>>   created as a copy on write image of the specified base image; the
>>   @var{backing_file} should have the same content as the input's base image,
>>


-- 

Mit freundlichen Grüßen

Peter Lieven

...........................................................

   KAMP Netzwerkdienste GmbH
   Vestische Str. 89-91 | 46117 Oberhausen
   Tel: +49 (0) 208.89 402-50 | Fax: +49 (0) 208.89 402-40
   pl@kamp.de | http://www.kamp.de

   Geschäftsführer: Heiner Lante | Michael Lante
   Amtsgericht Duisburg | HRB Nr. 12154
   USt-Id-Nr.: DE 120607556

...........................................................

  reply	other threads:[~2013-11-25 15:01 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-11-25 13:57 [Qemu-devel] [PATCH 1.8 0/6] qemu-img convert optimizations Peter Lieven
2013-11-25 13:57 ` [Qemu-devel] [PATCH 1.8 1/6] qemu-img: add support for skipping zeroes in input during convert Peter Lieven
2013-11-25 13:57 ` [Qemu-devel] [PATCH 1.8 2/6] qemu-img: fix usage instruction for qemu-img convert Peter Lieven
2013-11-25 17:21   ` Eric Blake
2013-11-26  7:01     ` Peter Lieven
2013-11-25 13:57 ` [Qemu-devel] [PATCH 1.8 3/6] qemu-img: add option to specify alternate iobuffer size Peter Lieven
2013-11-25 14:54   ` Paolo Bonzini
2013-11-25 15:01     ` Peter Lieven [this message]
2013-11-25 15:07     ` Peter Lieven
2013-11-25 15:14       ` Paolo Bonzini
2013-11-25 15:24         ` Peter Lieven
2013-11-25 15:48           ` Paolo Bonzini
2013-11-25 15:56             ` Peter Lieven
2013-11-25 13:57 ` [Qemu-devel] [PATCH 1.8 4/6] block/iscsi: set bdi->cluster_size Peter Lieven
2013-11-25 14:51   ` Paolo Bonzini
2013-11-25 15:02   ` Paolo Bonzini
2013-11-25 13:57 ` [Qemu-devel] [PATCH 1.8 5/6] qemu-img: add option to align writes to cluster_sectors during convert Peter Lieven
2013-11-25 15:11   ` Paolo Bonzini
2013-11-25 15:32     ` Peter Lieven
2013-11-25 15:50       ` Paolo Bonzini
2013-11-25 15:55         ` Peter Lieven
2013-11-25 16:02           ` Paolo Bonzini
2013-11-25 16:11     ` Peter Lieven
2013-11-25 16:34       ` Paolo Bonzini
2013-11-25 13:57 ` [Qemu-devel] [PATCH 1.8 6/6] qemu-img: add option to show progress in sectors Peter Lieven

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=52936665.3050302@kamp.de \
    --to=pl@kamp.de \
    --cc=kwolf@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@redhat.com \
    /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).