[Qemu-devel] [PULL 00/18] Migration PULL request (3rd try)

Juan Quintela posted 18 patches 6 years, 7 months ago
Failed in applying to current master (apply log)
Test checkpatch passed
Test docker passed
Test s390x passed
hmp.c                        |  14 +++
include/glib-compat.h        |   2 +
include/migration/register.h |   1 +
include/qemu/bitmap.h        |  17 ++++
migration/channel.c          |  18 +++-
migration/exec.c             |   2 +-
migration/fd.c               |   2 +-
migration/migration.c        | 176 +++++++++++++++++++++++++++++++----
migration/migration.h        |   9 ++
migration/postcopy-ram.c     | 100 ++++++++++++++++++--
migration/postcopy-ram.h     |   2 +-
migration/ram.c              | 216 ++++++++++++++++++++++++++++++++++++++++++-
migration/ram.h              |   5 +
migration/savevm.c           |  56 ++++++++---
migration/socket.c           |  10 +-
qapi/migration.json          |  39 +++++++-
util/bitmap.c                |  47 ++++++++++
util/bitops.c                |   6 +-
18 files changed, 664 insertions(+), 58 deletions(-)
[Qemu-devel] [PULL 00/18] Migration PULL request (3rd try)
Posted by Juan Quintela 6 years, 7 months ago
Hi

From yesterday pull:
- s/__WORD_SIZE/HOST_LONG_BITS/
- rebase on top of today

[2nd try]

To make merges easier, this includes:
- Peter Xu reviewed patches from Postocpy recovery (3)
- Alexey reviewed pages from block postcopy (4)
- Vladimir reviewed patches (3)
- reviewed patches from Multifd (me)

Please apply, Juan.


The following changes since commit a664607440511fdf8cff9d1c2afefbdbca1d1295:

  Merge remote-tracking branch 'remotes/famz/tags/build-and-test-automation-pull-request' into staging (2017-09-22 12:14:28 +0100)

are available in the git repository at:

  git://github.com/juanquintela/qemu.git tags/migration/20170922-1

for you to fetch changes up to 54ae0886b12c4934e84381af777d4df6147cc2ec:

  migration: split ufd_version_check onto receive/request features part (2017-09-22 14:11:29 +0200)

----------------------------------------------------------------
migration/next for 20170922

----------------------------------------------------------------
Alexey Perevalov (3):
      migration: pass MigrationIncomingState* into migration check functions
      migration: fix hardcoded function name in error report
      migration: split ufd_version_check onto receive/request features part

Juan Quintela (9):
      migration: Create migration_ioc_process_incoming()
      migration: Teach it about G_SOURCE_REMOVE
      migration: Add comments to channel functions
      migration: Create migration_has_all_channels
      migration: Add multifd capability
      migration: Create x-multifd-channels parameter
      migration: Create x-multifd-page-count parameter
      migration: Create multifd migration threads
      migration: Split migration_fd_process_incoming

Peter Xu (3):
      bitmap: remove BITOP_WORD()
      bitmap: introduce bitmap_count_one()
      bitmap: provide to_le/from_le helpers

Vladimir Sementsov-Ogievskiy (3):
      migration: add has_postcopy savevm handler
      migration: fix ram_save_pending
      migration: split common postcopy out of ram postcopy

 hmp.c                        |  14 +++
 include/glib-compat.h        |   2 +
 include/migration/register.h |   1 +
 include/qemu/bitmap.h        |  17 ++++
 migration/channel.c          |  18 +++-
 migration/exec.c             |   2 +-
 migration/fd.c               |   2 +-
 migration/migration.c        | 176 +++++++++++++++++++++++++++++++----
 migration/migration.h        |   9 ++
 migration/postcopy-ram.c     | 100 ++++++++++++++++++--
 migration/postcopy-ram.h     |   2 +-
 migration/ram.c              | 216 ++++++++++++++++++++++++++++++++++++++++++-
 migration/ram.h              |   5 +
 migration/savevm.c           |  56 ++++++++---
 migration/socket.c           |  10 +-
 qapi/migration.json          |  39 +++++++-
 util/bitmap.c                |  47 ++++++++++
 util/bitops.c                |   6 +-
 18 files changed, 664 insertions(+), 58 deletions(-)

Re: [Qemu-devel] [PULL 00/18] Migration PULL request (3rd try)
Posted by Peter Maydell 6 years, 7 months ago
On 22 September 2017 at 13:24, Juan Quintela <quintela@redhat.com> wrote:
> Hi
>
> From yesterday pull:
> - s/__WORD_SIZE/HOST_LONG_BITS/
> - rebase on top of today
>
> [2nd try]
>
> To make merges easier, this includes:
> - Peter Xu reviewed patches from Postocpy recovery (3)
> - Alexey reviewed pages from block postcopy (4)
> - Vladimir reviewed patches (3)
> - reviewed patches from Multifd (me)
>
> Please apply, Juan.
>
>
> The following changes since commit a664607440511fdf8cff9d1c2afefbdbca1d1295:
>
>   Merge remote-tracking branch 'remotes/famz/tags/build-and-test-automation-pull-request' into staging (2017-09-22 12:14:28 +0100)
>
> are available in the git repository at:
>
>   git://github.com/juanquintela/qemu.git tags/migration/20170922-1
>
> for you to fetch changes up to 54ae0886b12c4934e84381af777d4df6147cc2ec:
>
>   migration: split ufd_version_check onto receive/request features part (2017-09-22 14:11:29 +0200)
>
> ----------------------------------------------------------------
> migration/next for 20170922

Applied, thanks.

-- PMM