qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Jeff Cody <jcody@redhat.com>
To: qemu-block@nongnu.org
Cc: peter.maydell@linaro.org, jcody@redhat.com, qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 07/14] mirror: efficiently zero out target
Date: Tue, 19 Jul 2016 20:20:55 -0400	[thread overview]
Message-ID: <1468974062-7726-8-git-send-email-jcody@redhat.com> (raw)
In-Reply-To: <1468974062-7726-1-git-send-email-jcody@redhat.com>

From: "Denis V. Lunev" <den@openvz.org>

With a bdrv_co_write_zeroes method on a target BDS and when this method
is working as indicated by the bdrv_can_write_zeroes_with_unmap(), zeroes
will not be placed into the wire. Thus the target could be very efficiently
zeroed out. This should be done with the largest chunk possible.

Signed-off-by: Denis V. Lunev <den@openvz.org>
Reviewed-by: Vladimir Sementsov-Ogievskiy<vsementsov@virtuozzo.com>
Reviewed-by: Fam Zheng <famz@redhat.com>
Message-id: 1468503209-19498-8-git-send-email-den@openvz.org
CC: Stefan Hajnoczi <stefanha@redhat.com>
CC: Kevin Wolf <kwolf@redhat.com>
CC: Max Reitz <mreitz@redhat.com>
CC: Jeff Cody <jcody@redhat.com>
CC: Eric Blake <eblake@redhat.com>
Signed-off-by: Jeff Cody <jcody@redhat.com>
---
 block/mirror.c | 28 ++++++++++++++++++++++++++--
 1 file changed, 26 insertions(+), 2 deletions(-)

diff --git a/block/mirror.c b/block/mirror.c
index b7b1ded..0262b03 100644
--- a/block/mirror.c
+++ b/block/mirror.c
@@ -538,8 +538,32 @@ static int coroutine_fn mirror_dirty_init(MirrorBlockJob *s)
     end = s->bdev_length / BDRV_SECTOR_SIZE;
 
     if (base == NULL && !bdrv_has_zero_init(target_bs)) {
-        bdrv_set_dirty_bitmap(s->dirty_bitmap, 0, end);
-        return 0;
+        if (!bdrv_can_write_zeroes_with_unmap(target_bs)) {
+            bdrv_set_dirty_bitmap(s->dirty_bitmap, 0, end);
+            return 0;
+        }
+
+        for (sector_num = 0; sector_num < end; ) {
+            int nb_sectors = MIN(end - sector_num,
+                QEMU_ALIGN_DOWN(INT_MAX, s->granularity) >> BDRV_SECTOR_BITS);
+
+            mirror_throttle(s);
+
+            if (block_job_is_cancelled(&s->common)) {
+                return 0;
+            }
+
+            if (s->in_flight >= MAX_IN_FLIGHT) {
+                trace_mirror_yield(s, s->in_flight, s->buf_free_count, -1);
+                mirror_wait_for_io(s);
+                continue;
+            }
+
+            mirror_do_zero_or_discard(s, sector_num, nb_sectors, false);
+            sector_num += nb_sectors;
+        }
+
+        mirror_drain(s);
     }
 
     /* First part, loop on the sectors and initialize the dirty bitmap.  */
-- 
1.9.3

  parent reply	other threads:[~2016-07-20  0:21 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-20  0:20 [Qemu-devel] [PULL 00/14] Block patches Jeff Cody
2016-07-20  0:20 ` [Qemu-devel] [PULL 01/14] dirty-bitmap: operate with int64_t amount Jeff Cody
2016-07-20  0:20 ` [Qemu-devel] [PULL 02/14] mirror: make sectors_in_flight int64_t Jeff Cody
2016-07-20  0:20 ` [Qemu-devel] [PULL 03/14] mirror: create mirror_throttle helper Jeff Cody
2016-07-20  0:20 ` [Qemu-devel] [PULL 04/14] mirror: create mirror_dirty_init helper for mirror_run Jeff Cody
2016-07-20  0:20 ` [Qemu-devel] [PULL 05/14] block: remove extra condition in bdrv_can_write_zeroes_with_unmap Jeff Cody
2016-07-20  0:20 ` [Qemu-devel] [PULL 06/14] mirror: optimize dirty bitmap filling in mirror_run a bit Jeff Cody
2016-07-20  0:20 ` Jeff Cody [this message]
2016-07-20  0:20 ` [Qemu-devel] [PULL 08/14] mirror: improve performance of mirroring of empty disk Jeff Cody
2016-07-20  0:20 ` [Qemu-devel] [PULL 09/14] mirror: fix request throttling in drive-mirror Jeff Cody
2016-07-20  0:20 ` [Qemu-devel] [PULL 10/14] block/gluster: rename [server, volname, image] -> [host, volume, path] Jeff Cody
2016-07-20  0:20 ` [Qemu-devel] [PULL 11/14] block/gluster: code cleanup Jeff Cody
2016-07-20  0:21 ` [Qemu-devel] [PULL 12/14] block/gluster: deprecate rdma support Jeff Cody
2016-07-20  0:21 ` [Qemu-devel] [PULL 13/14] block/gluster: using new qapi schema Jeff Cody
2016-07-20 21:24   ` Eric Blake
2016-07-20 21:40     ` Jeff Cody
2016-07-20  0:21 ` [Qemu-devel] [PULL 14/14] block/gluster: add support for multiple gluster servers Jeff Cody
2016-07-20 17:51 ` [Qemu-devel] [PULL 00/14] Block patches Peter Maydell

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=1468974062-7726-8-git-send-email-jcody@redhat.com \
    --to=jcody@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-block@nongnu.org \
    --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).