All of lore.kernel.org
 help / color / mirror / Atom feed
From: Richard Henderson <richard.henderson@linaro.org>
To: "Dr. David Alan Gilbert (git)" <dgilbert@redhat.com>,
	qemu-devel@nongnu.org, quintela@redhat.com, peterx@redhat.com,
	leobras@redhat.com, berrange@redhat.com
Subject: Re: [PULL 00/17] migration queue
Date: Mon, 16 May 2022 14:21:23 -0700	[thread overview]
Message-ID: <c811b838-0f28-7553-db80-5ca14b2111d9@linaro.org> (raw)
In-Reply-To: <20220516153812.127155-1-dgilbert@redhat.com>

On 5/16/22 08:37, Dr. David Alan Gilbert (git) wrote:
> From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
> 
> The following changes since commit 10c2a0c5e7d48e590d945c017b5b8af5b4c89a3c:
> 
>    Merge tag 'or1k-pull-request-20220515' of https://github.com/stffrdhrn/qemu into staging (2022-05-15 16:56:27 -0700)
> 
> are available in the Git repository at:
> 
>    https://gitlab.com/dagrh/qemu.git tags/pull-migration-20220516a
> 
> for you to fetch changes up to 5b1d9bab2da4fca3a3caee97c430e5709cb32b7b:
> 
>    multifd: Implement zero copy write in multifd migration (multifd-zero-copy) (2022-05-16 13:56:24 +0100)
> 
> ----------------------------------------------------------------
> Migration pull 2022-05-16
> 
> (This replaces the 28th April through 10th May sets)
> Compared to that last set it just has the Alpine
> uring check that Leo has added; although that's also
> now fixed upstream in Alpine.
> 
> It contains:
>    TLS test fixes from Dan
>    Zerocopy migration feature from Leo
> 
> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>

Applied, thanks.  Please update https://wiki.qemu.org/ChangeLog/7.1 as appropriate.


r~


> 
> ----------------------------------------------------------------
> Daniel P. Berrangé (9):
>        tests: fix encoding of IP addresses in x509 certs
>        tests: add more helper macros for creating TLS x509 certs
>        tests: add migration tests of TLS with PSK credentials
>        tests: add migration tests of TLS with x509 credentials
>        tests: convert XBZRLE migration test to use common helper
>        tests: convert multifd migration tests to use common helper
>        tests: add multifd migration tests of TLS with PSK credentials
>        tests: add multifd migration tests of TLS with x509 credentials
>        tests: ensure migration status isn't reported as failed
> 
> Leonardo Bras (8):
>        meson.build: Fix docker-test-build@alpine when including linux/errqueue.h
>        QIOChannel: Add flags on io_writev and introduce io_flush callback
>        QIOChannelSocket: Implement io_writev zero copy flag & io_flush for CONFIG_LINUX
>        migration: Add zero-copy-send parameter for QMP/HMP for Linux
>        migration: Add migrate_use_tls() helper
>        multifd: multifd_send_sync_main now returns negative on error
>        multifd: Send header packet without flags if zero-copy-send is enabled
>        multifd: Implement zero copy write in multifd migration (multifd-zero-copy)
> 
>   chardev/char-io.c                    |   2 +-
>   hw/remote/mpqemu-link.c              |   2 +-
>   include/io/channel-socket.h          |   2 +
>   include/io/channel.h                 |  38 +-
>   io/channel-buffer.c                  |   1 +
>   io/channel-command.c                 |   1 +
>   io/channel-file.c                    |   1 +
>   io/channel-socket.c                  | 118 ++++-
>   io/channel-tls.c                     |   1 +
>   io/channel-websock.c                 |   1 +
>   io/channel.c                         |  49 +-
>   meson.build                          |  12 +
>   migration/channel.c                  |   3 +-
>   migration/migration.c                |  52 ++-
>   migration/migration.h                |   6 +
>   migration/multifd.c                  |  74 ++-
>   migration/multifd.h                  |   4 +-
>   migration/ram.c                      |  29 +-
>   migration/rdma.c                     |   1 +
>   migration/socket.c                   |  12 +-
>   monitor/hmp-cmds.c                   |   6 +
>   qapi/migration.json                  |  24 +
>   scsi/pr-manager-helper.c             |   2 +-
>   tests/qtest/meson.build              |  12 +-
>   tests/qtest/migration-helpers.c      |  13 +
>   tests/qtest/migration-helpers.h      |   1 +
>   tests/qtest/migration-test.c         | 867 +++++++++++++++++++++++++++++++----
>   tests/unit/crypto-tls-psk-helpers.c  |  18 +-
>   tests/unit/crypto-tls-psk-helpers.h  |   1 +
>   tests/unit/crypto-tls-x509-helpers.c |  16 +-
>   tests/unit/crypto-tls-x509-helpers.h |  53 +++
>   tests/unit/test-crypto-tlssession.c  |  11 +-
>   tests/unit/test-io-channel-socket.c  |   1 +
>   33 files changed, 1295 insertions(+), 139 deletions(-)
> 
> 



  parent reply	other threads:[~2022-05-16 21:51 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-16 15:37 [PULL 00/17] migration queue Dr. David Alan Gilbert (git)
2022-05-16 15:37 ` [PULL 01/17] tests: fix encoding of IP addresses in x509 certs Dr. David Alan Gilbert (git)
2022-05-16 15:37 ` [PULL 02/17] tests: add more helper macros for creating TLS " Dr. David Alan Gilbert (git)
2022-05-16 15:37 ` [PULL 03/17] tests: add migration tests of TLS with PSK credentials Dr. David Alan Gilbert (git)
2022-05-16 15:37 ` [PULL 04/17] tests: add migration tests of TLS with x509 credentials Dr. David Alan Gilbert (git)
2022-05-16 15:38 ` [PULL 05/17] tests: convert XBZRLE migration test to use common helper Dr. David Alan Gilbert (git)
2022-05-16 15:38 ` [PULL 06/17] tests: convert multifd migration tests " Dr. David Alan Gilbert (git)
2022-05-16 15:38 ` [PULL 07/17] tests: add multifd migration tests of TLS with PSK credentials Dr. David Alan Gilbert (git)
2022-05-16 15:38 ` [PULL 08/17] tests: add multifd migration tests of TLS with x509 credentials Dr. David Alan Gilbert (git)
2022-05-16 15:38 ` [PULL 09/17] tests: ensure migration status isn't reported as failed Dr. David Alan Gilbert (git)
2022-05-16 15:38 ` [PULL 10/17] meson.build: Fix docker-test-build@alpine when including linux/errqueue.h Dr. David Alan Gilbert (git)
2022-05-16 15:38 ` [PULL 11/17] QIOChannel: Add flags on io_writev and introduce io_flush callback Dr. David Alan Gilbert (git)
2022-05-16 15:38 ` [PULL 12/17] QIOChannelSocket: Implement io_writev zero copy flag & io_flush for CONFIG_LINUX Dr. David Alan Gilbert (git)
2022-05-16 15:38 ` [PULL 13/17] migration: Add zero-copy-send parameter for QMP/HMP for Linux Dr. David Alan Gilbert (git)
2022-05-16 15:38 ` [PULL 14/17] migration: Add migrate_use_tls() helper Dr. David Alan Gilbert (git)
2022-05-16 15:38 ` [PULL 15/17] multifd: multifd_send_sync_main now returns negative on error Dr. David Alan Gilbert (git)
2022-05-16 15:38 ` [PULL 16/17] multifd: Send header packet without flags if zero-copy-send is enabled Dr. David Alan Gilbert (git)
2022-05-16 15:38 ` [PULL 17/17] multifd: Implement zero copy write in multifd migration (multifd-zero-copy) Dr. David Alan Gilbert (git)
2022-05-16 21:21 ` Richard Henderson [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-05-13 17:37 [PULL 00/17] migration queue Dr. David Alan Gilbert (git)
2021-05-14 13:25 ` Peter Maydell
2021-05-11 15:08 Dr. David Alan Gilbert (git)
2021-05-13 12:27 ` Peter Maydell
2021-05-13 13:17   ` Dr. David Alan Gilbert
2021-05-13 13:32     ` Peter Maydell
2021-05-13 17:41   ` Dr. David Alan Gilbert

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=c811b838-0f28-7553-db80-5ca14b2111d9@linaro.org \
    --to=richard.henderson@linaro.org \
    --cc=berrange@redhat.com \
    --cc=dgilbert@redhat.com \
    --cc=leobras@redhat.com \
    --cc=peterx@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=quintela@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.