[PULL 00/12] migration queue

Dr. David Alan Gilbert (git) posted 12 patches 3 years, 6 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20201102195657.219501-1-dgilbert@redhat.com
Maintainers: Stefan Hajnoczi <stefanha@redhat.com>, "Dr. David Alan Gilbert" <dgilbert@redhat.com>, "Philippe Mathieu-Daudé" <philmd@redhat.com>, Cleber Rosa <crosa@redhat.com>, Wainer dos Santos Moschetta <wainersm@redhat.com>, Juan Quintela <quintela@redhat.com>
There is a newer version of this series
meson.build                                        |  16 +
migration/postcopy-ram.c                           |   2 -
migration/savevm.c                                 |  17 +-
tests/acceptance/boot_linux.py                     |  13 +-
tests/acceptance/virtiofs_submounts.py             | 321 +++++++++++++++++++++
.../virtiofs_submounts.py.data/cleanup.sh          |  46 +++
.../virtiofs_submounts.py.data/guest-cleanup.sh    |  30 ++
.../acceptance/virtiofs_submounts.py.data/guest.sh | 138 +++++++++
.../acceptance/virtiofs_submounts.py.data/host.sh  | 127 ++++++++
tools/virtiofsd/fuse_common.h                      |   7 +
tools/virtiofsd/fuse_lowlevel.c                    |   5 +
tools/virtiofsd/fuse_lowlevel.h                    |   5 +
tools/virtiofsd/fuse_virtio.c                      |   7 +-
tools/virtiofsd/helper.c                           |   3 +-
tools/virtiofsd/passthrough_ll.c                   | 117 +++++++-
tools/virtiofsd/passthrough_seccomp.c              |   2 +
16 files changed, 832 insertions(+), 24 deletions(-)
create mode 100644 tests/acceptance/virtiofs_submounts.py
create mode 100644 tests/acceptance/virtiofs_submounts.py.data/cleanup.sh
create mode 100644 tests/acceptance/virtiofs_submounts.py.data/guest-cleanup.sh
create mode 100644 tests/acceptance/virtiofs_submounts.py.data/guest.sh
create mode 100644 tests/acceptance/virtiofs_submounts.py.data/host.sh
[PULL 00/12] migration queue
Posted by Dr. David Alan Gilbert (git) 3 years, 6 months ago
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>

The following changes since commit b139d11ae198aba0e009daddf7a3370ce84b2d09:

  Merge remote-tracking branch 'remotes/aperard/tags/pull-xen-20201102' into staging (2020-11-02 16:05:47 +0000)

are available in the Git repository at:

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

for you to fetch changes up to af1bb3fe7f146fafdaadb479975ca2b53b49df40:

  tests/acceptance: Add virtiofs_submounts.py (2020-11-02 19:23:48 +0000)

----------------------------------------------------------------
Migration and virtiofs fixes 2020-11-02

Fixes for postcopy migration test hang
A seccomp crash for virtiofsd on some !x86
Help message and minor CID fix

And another crack at Max's set.

Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>

----------------------------------------------------------------
Dr. David Alan Gilbert (1):
      virtiofsd: Seccomp: Add 'send' for syslog

Jiachen Zhang (1):
      virtiofsd: Fix the help message of posix lock

Max Reitz (7):
      virtiofsd: Check FUSE_SUBMOUNTS
      virtiofsd: Add attr_flags to fuse_entry_param
      meson.build: Check for statx()
      virtiofsd: Add mount ID to the lo_inode key
      virtiofsd: Announce sub-mount points
      tests/acceptance/boot_linux: Accept SSH pubkey
      tests/acceptance: Add virtiofs_submounts.py

Peter Xu (2):
      migration: Unify reset of last_rb on destination node when recover
      migration: Postpone the kick of the fault thread after recover

Philippe Mathieu-Daudé (1):
      tools/virtiofsd: Check vu_init() return value (CID 1435958)

 meson.build                                        |  16 +
 migration/postcopy-ram.c                           |   2 -
 migration/savevm.c                                 |  17 +-
 tests/acceptance/boot_linux.py                     |  13 +-
 tests/acceptance/virtiofs_submounts.py             | 321 +++++++++++++++++++++
 .../virtiofs_submounts.py.data/cleanup.sh          |  46 +++
 .../virtiofs_submounts.py.data/guest-cleanup.sh    |  30 ++
 .../acceptance/virtiofs_submounts.py.data/guest.sh | 138 +++++++++
 .../acceptance/virtiofs_submounts.py.data/host.sh  | 127 ++++++++
 tools/virtiofsd/fuse_common.h                      |   7 +
 tools/virtiofsd/fuse_lowlevel.c                    |   5 +
 tools/virtiofsd/fuse_lowlevel.h                    |   5 +
 tools/virtiofsd/fuse_virtio.c                      |   7 +-
 tools/virtiofsd/helper.c                           |   3 +-
 tools/virtiofsd/passthrough_ll.c                   | 117 +++++++-
 tools/virtiofsd/passthrough_seccomp.c              |   2 +
 16 files changed, 832 insertions(+), 24 deletions(-)
 create mode 100644 tests/acceptance/virtiofs_submounts.py
 create mode 100644 tests/acceptance/virtiofs_submounts.py.data/cleanup.sh
 create mode 100644 tests/acceptance/virtiofs_submounts.py.data/guest-cleanup.sh
 create mode 100644 tests/acceptance/virtiofs_submounts.py.data/guest.sh
 create mode 100644 tests/acceptance/virtiofs_submounts.py.data/host.sh


Re: [PULL 00/12] migration queue
Posted by Peter Maydell 3 years, 6 months ago
On Mon, 2 Nov 2020 at 20:00, Dr. David Alan Gilbert (git)
<dgilbert@redhat.com> wrote:
>
> From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
>
> The following changes since commit b139d11ae198aba0e009daddf7a3370ce84b2d09:
>
>   Merge remote-tracking branch 'remotes/aperard/tags/pull-xen-20201102' into staging (2020-11-02 16:05:47 +0000)
>
> are available in the Git repository at:
>
>   git://github.com/dagrh/qemu.git tags/pull-migration-20201102a
>
> for you to fetch changes up to af1bb3fe7f146fafdaadb479975ca2b53b49df40:
>
>   tests/acceptance: Add virtiofs_submounts.py (2020-11-02 19:23:48 +0000)
>
> ----------------------------------------------------------------
> Migration and virtiofs fixes 2020-11-02
>
> Fixes for postcopy migration test hang
> A seccomp crash for virtiofsd on some !x86
> Help message and minor CID fix
>
> And another crack at Max's set.
>
> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
>

Applied, thanks.

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

-- PMM