All of lore.kernel.org
 help / color / mirror / Atom feed
From: John Snow <jsnow@redhat.com>
To: qemu-block@nongnu.org
Cc: vsementsov@virtuozzo.com, famz@redhat.com, qemu-devel@nongnu.org,
	mreitz@redhat.com, John Snow <jsnow@redhat.com>
Subject: [Qemu-devel] [PATCH v7 00/10] Dirty bitmap changes for migration/persistence work
Date: Mon, 18 Jul 2016 16:57:01 -0400	[thread overview]
Message-ID: <1468875431-16646-1-git-send-email-jsnow@redhat.com> (raw)

v7:

   02: Fix rebase mishap.
   04: Slight loop adjustment.
   09: Fix constant on 32bit machines.

v6: Rebase.

    02: Added documentation changes as suggested by Max.

v5: Rebase: first 5 patches from last revision are already merged.

    Addressed Max's comments:

    01: - "block.c" -> "block/dirty-bitmap.c" in commit message.
        - "an BdrvDirtyBitmapIter" -> "an BdrvDirtyBitmapIter" in code comment.
        - hbitmap_next => next_dirty as variable name.
        - bdrv_dirty_iter_free()/bdrv_dirty_iter_new() pairs =>
          bdrv_set_dirty_iter.

    02: Move the assert fix into 01.

    04: Truncate the meta bitmap (done by hbitmap_truncate).

    06: Add Max's r-b.

    07: I left the memcpy vs cpu_to_le32/64w as is to pick up Max's r-b. That
        could be improved on top if wanted.

    10: Add Max's r-b.

________________________________________________________________________________

For convenience, this branch is available at:
https://github.com/jnsnow/qemu.git branch meta-bitmap
https://github.com/jnsnow/qemu/tree/meta-bitmap

This version is tagged meta-bitmap-v7:
https://github.com/jnsnow/qemu/releases/tag/meta-bitmap-v7

Fam Zheng (8):
  block: Hide HBitmap in block dirty bitmap interface
  HBitmap: Introduce "meta" bitmap to track bit changes
  tests: Add test code for meta bitmap
  block: Support meta dirty bitmap
  block: Add two dirty bitmap getters
  block: Assert that bdrv_release_dirty_bitmap succeeded
  tests: Add test code for hbitmap serialization
  block: More operations for meta dirty bitmap

Vladimir Sementsov-Ogievskiy (2):
  hbitmap: serialization
  block: BdrvDirtyBitmap serialization interface

 block/backup.c               |  14 ++-
 block/dirty-bitmap.c         | 160 ++++++++++++++++++++++++++-
 block/mirror.c               |  24 ++--
 include/block/dirty-bitmap.h |  35 +++++-
 include/qemu/hbitmap.h       | 100 +++++++++++++++++
 include/qemu/typedefs.h      |   1 +
 tests/test-hbitmap.c         | 255 +++++++++++++++++++++++++++++++++++++++++++
 util/hbitmap.c               | 206 +++++++++++++++++++++++++++++++---
 8 files changed, 755 insertions(+), 40 deletions(-)

-- 
2.7.4

             reply	other threads:[~2016-07-18 20:57 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-18 20:57 John Snow [this message]
2016-07-18 20:57 ` [Qemu-devel] [PATCH v7 01/10] block: Hide HBitmap in block dirty bitmap interface John Snow
2016-07-18 20:57 ` [Qemu-devel] [PATCH v7 02/10] HBitmap: Introduce "meta" bitmap to track bit changes John Snow
2016-07-18 20:57 ` [Qemu-devel] [PATCH v7 03/10] tests: Add test code for meta bitmap John Snow
2016-07-18 20:57 ` [Qemu-devel] [PATCH v7 04/10] block: Support meta dirty bitmap John Snow
2016-07-22 21:57   ` Max Reitz
2016-07-22 21:58     ` John Snow
2016-07-18 20:57 ` [Qemu-devel] [PATCH v7 05/10] block: Add two dirty bitmap getters John Snow
2016-07-18 20:57 ` [Qemu-devel] [PATCH v7 06/10] block: Assert that bdrv_release_dirty_bitmap succeeded John Snow
2016-07-18 20:57 ` [Qemu-devel] [PATCH v7 07/10] hbitmap: serialization John Snow
2016-07-18 20:57 ` [Qemu-devel] [PATCH v7 08/10] block: BdrvDirtyBitmap serialization interface John Snow
2016-07-18 20:57 ` [Qemu-devel] [PATCH v7 09/10] tests: Add test code for hbitmap serialization John Snow
2016-07-22 21:57   ` Max Reitz
2016-07-18 20:57 ` [Qemu-devel] [PATCH v7 10/10] block: More operations for meta dirty bitmap John Snow

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=1468875431-16646-1-git-send-email-jsnow@redhat.com \
    --to=jsnow@redhat.com \
    --cc=famz@redhat.com \
    --cc=mreitz@redhat.com \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=vsementsov@virtuozzo.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 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.