[Qemu-devel] [PULL 0/7] migration queue

Dr. David Alan Gilbert (git) posted 7 patches 7 years, 3 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20181011192513.63634-1-dgilbert@redhat.com
Test docker-clang@ubuntu passed
Test checkpatch passed
Test docker-quick@centos7 passed
Test docker-mingw@fedora passed
There is a newer version of this series
hmp.c                                |   6 +-
hw/pci/pci.c                         |  13 +-
hw/virtio/vhost-user.c               |  20 ++-
migration/postcopy-ram.c             |  11 +-
qapi/misc.json                       |   4 +-
tests/Makefile.include               |   2 +
tests/migration-test.c               |  51 ++++++-
tests/migration/Makefile             |  25 ++--
tests/migration/aarch64/Makefile     |  18 +++
tests/migration/aarch64/a-b-kernel.S |  75 +++++++++++
tests/migration/aarch64/a-b-kernel.h |  18 +++
tests/migration/migration-test.h     |  13 ++
tests/migration/s390x/Makefile       |  24 ++++
tests/migration/s390x/a-b-bios.c     |  36 +++++
tests/migration/s390x/a-b-bios.h     | 253 +++++++++++++++++++++++++++++++++++
15 files changed, 531 insertions(+), 38 deletions(-)
create mode 100644 tests/migration/aarch64/Makefile
create mode 100644 tests/migration/aarch64/a-b-kernel.S
create mode 100644 tests/migration/aarch64/a-b-kernel.h
create mode 100644 tests/migration/s390x/Makefile
create mode 100644 tests/migration/s390x/a-b-bios.c
create mode 100644 tests/migration/s390x/a-b-bios.h
[Qemu-devel] [PULL 0/7] migration queue
Posted by Dr. David Alan Gilbert (git) 7 years, 3 months ago
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>

The following changes since commit 75e50c80e051423a6f55a34ee4a1eec842444a5b:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-misc-2018-10-10' into staging (2018-10-11 10:43:37 +0100)

are available in the Git repository at:

  git://github.com/dagrh/qemu.git tags/pull-migration-20181011a

for you to fetch changes up to 36bd9e3c8b049cb9124e04ed8bf8f9451d63de03:

  migration-test: Only generate a single target architecture (2018-10-11 19:58:26 +0100)

----------------------------------------------------------------
Migration pull 2018-10-11

With one bonus HMP/PCI fix from Denis.

----------------------------------------------------------------
Denis V. Lunev (1):
      qmp, hmp: make subsystem/system-vendor identities optional

Ilya Maximets (3):
      migration: Stop postcopy fault thread before notifying
      vhost-user: Fix userfaultfd leak
      vhost-user: Don't ask for reply on postcopy mem table set

Juan Quintela (1):
      migration-test: Only generate a single target architecture

Thomas Huth (1):
      tests/migration: Enable the migration test on s390x, too

Wei Huang (1):
      tests: Add migration test for aarch64

 hmp.c                                |   6 +-
 hw/pci/pci.c                         |  13 +-
 hw/virtio/vhost-user.c               |  20 ++-
 migration/postcopy-ram.c             |  11 +-
 qapi/misc.json                       |   4 +-
 tests/Makefile.include               |   2 +
 tests/migration-test.c               |  51 ++++++-
 tests/migration/Makefile             |  25 ++--
 tests/migration/aarch64/Makefile     |  18 +++
 tests/migration/aarch64/a-b-kernel.S |  75 +++++++++++
 tests/migration/aarch64/a-b-kernel.h |  18 +++
 tests/migration/migration-test.h     |  13 ++
 tests/migration/s390x/Makefile       |  24 ++++
 tests/migration/s390x/a-b-bios.c     |  36 +++++
 tests/migration/s390x/a-b-bios.h     | 253 +++++++++++++++++++++++++++++++++++
 15 files changed, 531 insertions(+), 38 deletions(-)
 create mode 100644 tests/migration/aarch64/Makefile
 create mode 100644 tests/migration/aarch64/a-b-kernel.S
 create mode 100644 tests/migration/aarch64/a-b-kernel.h
 create mode 100644 tests/migration/s390x/Makefile
 create mode 100644 tests/migration/s390x/a-b-bios.c
 create mode 100644 tests/migration/s390x/a-b-bios.h

Re: [Qemu-devel] [PULL 0/7] migration queue
Posted by Peter Maydell 7 years, 3 months ago
On 11 October 2018 at 20:25, Dr. David Alan Gilbert (git)
<dgilbert@redhat.com> wrote:
> From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
>
> The following changes since commit 75e50c80e051423a6f55a34ee4a1eec842444a5b:
>
>   Merge remote-tracking branch 'remotes/armbru/tags/pull-misc-2018-10-10' into staging (2018-10-11 10:43:37 +0100)
>
> are available in the Git repository at:
>
>   git://github.com/dagrh/qemu.git tags/pull-migration-20181011a
>
> for you to fetch changes up to 36bd9e3c8b049cb9124e04ed8bf8f9451d63de03:
>
>   migration-test: Only generate a single target architecture (2018-10-11 19:58:26 +0100)
>
> ----------------------------------------------------------------
> Migration pull 2018-10-11
>
> With one bonus HMP/PCI fix from Denis.
>
> ----------------------------------------------------------------
> Denis V. Lunev (1):
>       qmp, hmp: make subsystem/system-vendor identities optional
>
> Ilya Maximets (3):
>       migration: Stop postcopy fault thread before notifying
>       vhost-user: Fix userfaultfd leak
>       vhost-user: Don't ask for reply on postcopy mem table set
>
> Juan Quintela (1):
>       migration-test: Only generate a single target architecture
>
> Thomas Huth (1):
>       tests/migration: Enable the migration test on s390x, too
>
> Wei Huang (1):
>       tests: Add migration test for aarch64

Applied, thanks.

-- PMM