From: "Dr. David Alan Gilbert (git)" <dgilbert@redhat.com>
To: qemu-devel@nongnu.org, david@redhat.com, zhukeqian1@huawei.com,
jiangkunkun@huawei.com, armbru@redhat.com,
peter.maydell@linaro.org, huangy81@chinatelecom.cn
Cc: peterx@redhat.com
Subject: [PULL 00/17] migration queue
Date: Tue, 11 May 2021 16:08:25 +0100 [thread overview]
Message-ID: <20210511150842.207155-1-dgilbert@redhat.com> (raw)
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
The following changes since commit e4f3ede95ce813d5705c65e1c0e1c80c70739ebb:
Merge remote-tracking branch 'remotes/kraxel/tags/usb-20210505-pull-request' into staging (2021-05-10 19:55:06 +0100)
are available in the Git repository at:
git://github.com/dagrh/qemu.git tags/pull-migration-20210511a
for you to fetch changes up to 872df23afc70985af5a458e0c4bd2b984559015c:
tests/migration: introduce multifd into guestperf (2021-05-11 11:26:19 +0100)
----------------------------------------------------------------
Migration pull 2021-05-11
The largest change in this set is David's changes for ram block size
changing; then there's a pile of other cleanups and fixes.
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
----------------------------------------------------------------
David Hildenbrand (11):
migrate/ram: remove "ram_bulk_stage" and "fpo_enabled"
util: vfio-helpers: Factor out and fix processing of existing ram blocks
numa: Teach ram block notifiers about resizeable ram blocks
numa: Make all callbacks of ram block notifiers optional
migration/ram: Handle RAM block resizes during precopy
exec: Relax range check in ram_block_discard_range()
migration/ram: Discard RAM when growing RAM blocks after ram_postcopy_incoming_init()
migration/ram: Simplify host page handling in ram_load_postcopy()
migration/ram: Handle RAM block resizes during postcopy
migration/multifd: Print used_length of memory block
migration/ram: Use offset_in_ramblock() in range checks
Dr. David Alan Gilbert (1):
tests/migration-test: Fix "true" vs true
Hyman (1):
tests/migration: introduce multifd into guestperf
Kunkun Jiang (2):
migration/ram: Reduce unnecessary rate limiting
migration/ram: Optimize ram_save_host_page()
Markus Armbruster (1):
migration: Drop redundant query-migrate result @blocked
Peter Maydell (1):
tests/qtest/migration-test: Use g_autofree to avoid leaks on error paths
hw/core/numa.c | 41 +++++-
hw/i386/xen/xen-mapcache.c | 7 +-
hw/virtio/virtio-balloon.c | 4 +-
hw/virtio/virtio-mem.c | 3 -
include/exec/cpu-common.h | 1 +
include/exec/memory.h | 10 +-
include/exec/ramblock.h | 10 ++
include/exec/ramlist.h | 13 +-
include/migration/misc.h | 1 -
migration/migration.c | 38 ++---
migration/migration.h | 1 +
migration/multifd.c | 2 +-
migration/postcopy-ram.c | 15 +-
migration/ram.c | 246 ++++++++++++++++++--------------
monitor/hmp-cmds.c | 2 +-
qapi/migration.json | 6 -
softmmu/physmem.c | 26 +++-
target/i386/hax/hax-mem.c | 5 +-
target/i386/sev.c | 18 +--
tests/migration/guestperf/comparison.py | 14 ++
tests/migration/guestperf/engine.py | 16 +++
tests/migration/guestperf/scenario.py | 12 +-
tests/migration/guestperf/shell.py | 10 +-
tests/qtest/migration-test.c | 75 ++++------
util/vfio-helpers.c | 41 ++----
25 files changed, 367 insertions(+), 250 deletions(-)
next reply other threads:[~2021-05-11 15:12 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-11 15:08 Dr. David Alan Gilbert (git) [this message]
2021-05-11 15:08 ` [PULL 01/17] migrate/ram: remove "ram_bulk_stage" and "fpo_enabled" Dr. David Alan Gilbert (git)
2021-05-11 15:08 ` [PULL 02/17] migration/ram: Reduce unnecessary rate limiting Dr. David Alan Gilbert (git)
2021-05-11 15:08 ` [PULL 03/17] migration/ram: Optimize ram_save_host_page() Dr. David Alan Gilbert (git)
2021-05-11 15:08 ` [PULL 04/17] migration: Drop redundant query-migrate result @blocked Dr. David Alan Gilbert (git)
2021-05-11 15:08 ` [PULL 05/17] util: vfio-helpers: Factor out and fix processing of existing ram blocks Dr. David Alan Gilbert (git)
2021-05-11 15:08 ` [PULL 06/17] numa: Teach ram block notifiers about resizeable " Dr. David Alan Gilbert (git)
2021-05-11 15:08 ` [PULL 07/17] numa: Make all callbacks of ram block notifiers optional Dr. David Alan Gilbert (git)
2021-05-11 15:08 ` [PULL 08/17] migration/ram: Handle RAM block resizes during precopy Dr. David Alan Gilbert (git)
2021-05-11 15:08 ` [PULL 09/17] exec: Relax range check in ram_block_discard_range() Dr. David Alan Gilbert (git)
2021-05-11 15:08 ` [PULL 10/17] migration/ram: Discard RAM when growing RAM blocks after ram_postcopy_incoming_init() Dr. David Alan Gilbert (git)
2021-05-11 15:08 ` [PULL 11/17] migration/ram: Simplify host page handling in ram_load_postcopy() Dr. David Alan Gilbert (git)
2021-05-11 15:08 ` [PULL 12/17] migration/ram: Handle RAM block resizes during postcopy Dr. David Alan Gilbert (git)
2021-05-11 15:08 ` [PULL 13/17] migration/multifd: Print used_length of memory block Dr. David Alan Gilbert (git)
2021-05-11 15:08 ` [PULL 14/17] migration/ram: Use offset_in_ramblock() in range checks Dr. David Alan Gilbert (git)
2021-05-11 15:08 ` [PULL 15/17] tests/migration-test: Fix "true" vs true Dr. David Alan Gilbert (git)
2021-05-11 15:08 ` [PULL 16/17] tests/qtest/migration-test: Use g_autofree to avoid leaks on error paths Dr. David Alan Gilbert (git)
2021-05-11 15:08 ` [PULL 17/17] tests/migration: introduce multifd into guestperf Dr. David Alan Gilbert (git)
2021-05-13 12:27 ` [PULL 00/17] migration queue 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
-- strict thread matches above, loose matches on Subject: below --
2021-05-13 17:37 Dr. David Alan Gilbert (git)
2021-05-14 13:25 ` Peter Maydell
2022-05-16 15:37 Dr. David Alan Gilbert (git)
2022-05-16 21:21 ` Richard Henderson
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=20210511150842.207155-1-dgilbert@redhat.com \
--to=dgilbert@redhat.com \
--cc=armbru@redhat.com \
--cc=david@redhat.com \
--cc=huangy81@chinatelecom.cn \
--cc=jiangkunkun@huawei.com \
--cc=peter.maydell@linaro.org \
--cc=peterx@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=zhukeqian1@huawei.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).