[PULL 00/24] bitmaps patches for -rc2, 2020-07-27

Eric Blake posted 24 patches 3 years, 9 months ago
Test docker-quick@centos7 failed
Test docker-mingw@fedora failed
Test checkpatch failed
Test FreeBSD failed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20200727205543.206624-1-eblake@redhat.com
Maintainers: Juan Quintela <quintela@redhat.com>, "Dr. David Alan Gilbert" <dgilbert@redhat.com>, Max Reitz <mreitz@redhat.com>, Kevin Wolf <kwolf@redhat.com>, Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>, Stefan Hajnoczi <stefanha@redhat.com>, John Snow <jsnow@redhat.com>, Eric Blake <eblake@redhat.com>, Fam Zheng <fam@euphon.net>
docs/interop/qcow2.txt         |   2 +-
migration/migration.h          |   3 +-
block/qcow2.c                  |   2 +-
migration/block-dirty-bitmap.c | 472 ++++++++++++++++++++++++++---------------
migration/migration.c          |  15 +-
migration/savevm.c             |  37 +++-
tests/qemu-iotests/199         | 254 +++++++++++++++++-----
tests/qemu-iotests/199.out     |   4 +-
tests/qemu-iotests/group       |  12 +-
9 files changed, 556 insertions(+), 245 deletions(-)
[PULL 00/24] bitmaps patches for -rc2, 2020-07-27
Posted by Eric Blake 3 years, 9 months ago
The following changes since commit 9303ecb658a0194560d1eecde165a1511223c2d8:

  Merge remote-tracking branch 'remotes/cohuck/tags/s390x-20200727' into staging (2020-07-27 17:25:06 +0100)

are available in the Git repository at:

  https://repo.or.cz/qemu/ericb.git tags/pull-bitmaps-2020-07-27

for you to fetch changes up to 37931e006f05cb768b78dcc47453b13f76ea43c5:

  migration: Fix typos in bitmap migration comments (2020-07-27 15:42:21 -0500)

----------------------------------------------------------------
bitmaps patches for 2020-07-27

- Improve handling of various post-copy bitmap migration scenarios. A lost
bitmap should merely mean that the next backup must be full rather than
incremental, rather than abruptly breaking the entire guest migration.
- Associated iotest improvements

----------------------------------------------------------------
Andrey Shinkevich (1):
      qcow2: Fix capitalization of header extension constant.

Eric Blake (2):
      iotests: Adjust which migration tests are quick
      migration: Fix typos in bitmap migration comments

Vladimir Sementsov-Ogievskiy (21):
      qemu-iotests/199: fix style
      qemu-iotests/199: drop extra constraints
      qemu-iotests/199: better catch postcopy time
      qemu-iotests/199: improve performance: set bitmap by discard
      qemu-iotests/199: change discard patterns
      qemu-iotests/199: increase postcopy period
      migration/block-dirty-bitmap: fix dirty_bitmap_mig_before_vm_start
      migration/block-dirty-bitmap: rename state structure types
      migration/block-dirty-bitmap: rename dirty_bitmap_mig_cleanup
      migration/block-dirty-bitmap: move mutex init to dirty_bitmap_mig_init
      migration/block-dirty-bitmap: refactor state global variables
      migration/block-dirty-bitmap: rename finish_lock to just lock
      migration/block-dirty-bitmap: simplify dirty_bitmap_load_complete
      migration/block-dirty-bitmap: keep bitmap state for all bitmaps
      migration/block-dirty-bitmap: relax error handling in incoming part
      migration/block-dirty-bitmap: cancel migration on shutdown
      migration/savevm: don't worry if bitmap migration postcopy failed
      qemu-iotests/199: prepare for new test-cases addition
      qemu-iotests/199: check persistent bitmaps
      qemu-iotests/199: add early shutdown case to bitmaps postcopy
      qemu-iotests/199: add source-killed case to bitmaps postcopy

 docs/interop/qcow2.txt         |   2 +-
 migration/migration.h          |   3 +-
 block/qcow2.c                  |   2 +-
 migration/block-dirty-bitmap.c | 472 ++++++++++++++++++++++++++---------------
 migration/migration.c          |  15 +-
 migration/savevm.c             |  37 +++-
 tests/qemu-iotests/199         | 254 +++++++++++++++++-----
 tests/qemu-iotests/199.out     |   4 +-
 tests/qemu-iotests/group       |  12 +-
 9 files changed, 556 insertions(+), 245 deletions(-)

-- 
2.27.0


Re: [PULL 00/24] bitmaps patches for -rc2, 2020-07-27
Posted by Peter Maydell 3 years, 9 months ago
On Mon, 27 Jul 2020 at 21:58, Eric Blake <eblake@redhat.com> wrote:
>
> The following changes since commit 9303ecb658a0194560d1eecde165a1511223c2d8:
>
>   Merge remote-tracking branch 'remotes/cohuck/tags/s390x-20200727' into staging (2020-07-27 17:25:06 +0100)
>
> are available in the Git repository at:
>
>   https://repo.or.cz/qemu/ericb.git tags/pull-bitmaps-2020-07-27
>
> for you to fetch changes up to 37931e006f05cb768b78dcc47453b13f76ea43c5:
>
>   migration: Fix typos in bitmap migration comments (2020-07-27 15:42:21 -0500)
>
> ----------------------------------------------------------------
> bitmaps patches for 2020-07-27
>
> - Improve handling of various post-copy bitmap migration scenarios. A lost
> bitmap should merely mean that the next backup must be full rather than
> incremental, rather than abruptly breaking the entire guest migration.
> - Associated iotest improvements


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/5.1
for any user-visible changes.

-- PMM