qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v3 00/15] Dirty bitmap changes for migration/persistence work
@ 2016-02-27  9:20 Fam Zheng
  2016-02-27  9:20 ` [Qemu-devel] [PATCH v3 01/15] backup: Use Bitmap to replace "s->bitmap" Fam Zheng
                   ` (14 more replies)
  0 siblings, 15 replies; 24+ messages in thread
From: Fam Zheng @ 2016-02-27  9:20 UTC (permalink / raw)
  To: qemu-devel; +Cc: Vladimir Sementsov-Ogievskiy, qemu-block

v2: Rebase and address comments from John, Eric and Vladimir:

    [02/15] block: Include hbitmap.h in block.h
            Split from the next patch. [Eric]

    [04/15] block: Move block dirty bitmap code to separate files
            Fix long line to keep checkpatch.pl happy. [Vladimir]
            Fix comment (HBitmapIter -> BdrvDirtyBitmapIter). [Vladimir]

    [06/15] block: Hide HBitmap in block dirty bitmap interface
            Add John's rev-by.

    [09/15] block: Support meta dirty bitmap
            granularity -> chunk_size

    [10/15] block: Add two dirty bitmap getters
            Add "const" qualifier in function parameters. [Vladimir]

    [11/15] block: Assert that bdrv_release_dirty_bitmap succeeded
            Rebase and reword commit message.

    [12/15] hbitmap: serialization
            Fix typos and add comment. [John]

    [13/15] block: BdrvDirtyBitmap serialization interface
            Add John's rev-by.

    [14/15] tests: Add test code for hbitmap serialization
            Add John's ack-by.

Two major features are added to block dirty bitmap (and underlying HBitmap) in
this series: meta bitmap and serialization, together with all other supportive
patches.

Both operations are common in dirty bitmap migration and persistence: they need
to find whether and which part of the dirty bitmap in question has changed with
meta dirty bitmap, and they need to write it to the target with serialization.


Fam Zheng (13):
  backup: Use Bitmap to replace "s->bitmap"
  block: Include hbitmap.h in block.h
  typedefs: Add BdrvDirtyBitmap
  block: Move block dirty bitmap code to separate files
  block: Remove unused typedef of BlockDriverDirtyHandler
  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.c                      | 360 -----------------------------
 block/Makefile.objs          |   2 +-
 block/backup.c               |  25 +-
 block/dirty-bitmap.c         | 534 +++++++++++++++++++++++++++++++++++++++++++
 block/mirror.c               |  14 +-
 include/block/block.h        |  40 +---
 include/block/dirty-bitmap.h |  76 ++++++
 include/qemu/hbitmap.h       |  96 ++++++++
 include/qemu/typedefs.h      |   2 +
 tests/test-hbitmap.c         | 255 +++++++++++++++++++++
 util/hbitmap.c               | 203 ++++++++++++++--
 11 files changed, 1176 insertions(+), 431 deletions(-)
 create mode 100644 block/dirty-bitmap.c
 create mode 100644 include/block/dirty-bitmap.h

-- 
2.4.3

^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2016-03-08  2:38 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-27  9:20 [Qemu-devel] [PATCH v3 00/15] Dirty bitmap changes for migration/persistence work Fam Zheng
2016-02-27  9:20 ` [Qemu-devel] [PATCH v3 01/15] backup: Use Bitmap to replace "s->bitmap" Fam Zheng
2016-02-27  9:20 ` [Qemu-devel] [PATCH v3 02/15] block: Include hbitmap.h in block.h Fam Zheng
2016-02-27  9:20 ` [Qemu-devel] [PATCH v3 03/15] typedefs: Add BdrvDirtyBitmap Fam Zheng
2016-02-27  9:20 ` [Qemu-devel] [PATCH v3 04/15] block: Move block dirty bitmap code to separate files Fam Zheng
2016-03-07 18:49   ` [Qemu-devel] [Qemu-block] " Max Reitz
2016-03-08  2:38     ` Fam Zheng
2016-02-27  9:20 ` [Qemu-devel] [PATCH v3 05/15] block: Remove unused typedef of BlockDriverDirtyHandler Fam Zheng
2016-02-27  9:20 ` [Qemu-devel] [PATCH v3 06/15] block: Hide HBitmap in block dirty bitmap interface Fam Zheng
2016-03-07 19:11   ` [Qemu-devel] [Qemu-block] " Max Reitz
2016-03-08  2:14     ` Fam Zheng
2016-02-27  9:20 ` [Qemu-devel] [PATCH v3 07/15] HBitmap: Introduce "meta" bitmap to track bit changes Fam Zheng
2016-02-27  9:20 ` [Qemu-devel] [PATCH v3 08/15] tests: Add test code for meta bitmap Fam Zheng
2016-02-29 22:49   ` [Qemu-devel] [Qemu-block] " John Snow
2016-02-27  9:20 ` [Qemu-devel] [PATCH v3 09/15] block: Support meta dirty bitmap Fam Zheng
2016-02-29 23:00   ` [Qemu-devel] [Qemu-block] " John Snow
2016-03-08  2:31     ` Fam Zheng
2016-02-27  9:20 ` [Qemu-devel] [PATCH v3 10/15] block: Add two dirty bitmap getters Fam Zheng
2016-02-27  9:20 ` [Qemu-devel] [PATCH v3 11/15] block: Assert that bdrv_release_dirty_bitmap succeeded Fam Zheng
2016-02-29 23:05   ` [Qemu-devel] [Qemu-block] " John Snow
2016-02-27  9:20 ` [Qemu-devel] [PATCH v3 12/15] hbitmap: serialization Fam Zheng
2016-02-27  9:20 ` [Qemu-devel] [PATCH v3 13/15] block: BdrvDirtyBitmap serialization interface Fam Zheng
2016-02-27  9:20 ` [Qemu-devel] [PATCH v3 14/15] tests: Add test code for hbitmap serialization Fam Zheng
2016-02-27  9:20 ` [Qemu-devel] [PATCH v3 15/15] block: More operations for meta dirty bitmap Fam Zheng

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).