From: Peter Xu <peterx@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Xu <peterx@redhat.com>, Fabiano Rosas <farosas@suse.de>,
Paolo Bonzini <pbonzini@redhat.com>
Subject: [PULL 00/18] Next patches
Date: Tue, 23 Jun 2026 08:47:41 -0400 [thread overview]
Message-ID: <20260623124759.125399-1-peterx@redhat.com> (raw)
The following changes since commit b83371668192a705b878e909c5ae9c1233cbd5fb:
Merge tag 'pbouvier/pr/plugins-20260618' of https://gitlab.com/p-b-o/qemu into staging (2026-06-19 15:00:01 -0400)
are available in the Git repository at:
https://gitlab.com/peterx/qemu.git tags/next-pull-request
for you to fetch changes up to 1f3241bcaeee0df47f72edf6abad71fe36f3b0e7:
system/physmem: make ram_block_discard_range() handle guest_memfd (2026-06-22 17:08:49 -0400)
----------------------------------------------------------------
Migration and mem pull request
- Maciej's patch to fix rare crash in VFIO multifd thread pool mgmt
- Peter's cleanup of @cpr-exec-command doc in migration.json
- Akihiko's patch to fix a TSAN warning on ram_list operations
- Bibo's migration-test coverage for loongarch
- Peter's update on a-b-boot image
- Marc-André's virtio-mem fix for CoCo
----------------------------------------------------------------
Akihiko Odaki (1):
system/physmem: Synchronize ram_list accesses
Bibo Mao (1):
tests/qtest/migration: Add migration test on loongarch
Gavin Shan (1):
system/memory: Remove MAX_PHYS_ADDR
Maciej S. Szmigiero (1):
thread-pool: Allow at least 1 thread in
thread_pool_adjust_max_threads_to_work()
Marc-André Lureau (11):
system/memory: split RamDiscardManager into source and manager
system/memory: move RamDiscardManager to separate compilation unit
system/memory: constify section arguments
system/ram-discard-manager: implement replay via is_populated
iteration
virtio-mem: remove replay_populated/replay_discarded implementation
system/ram-discard-manager: drop replay from source interface
system/memory: implement RamDiscardManager multi-source aggregation
system/physmem: destroy ram block attributes before RCU-deferred
reclaim
system/memory: add RamDiscardManager reference counting and cleanup
tests: add unit tests for RamDiscardManager multi-source aggregation
system/physmem: make ram_block_discard_range() handle guest_memfd
Peter Xu (3):
qapi/migration: Remove @cpr-exec-command doc in MigrationParameter
migration: Use OBJECT_DECLARE_SIMPLE_TYPE
migration/tests: Update a-b-boot images for all archs
MAINTAINERS | 5 +
qapi/migration.json | 4 -
include/hw/vfio/vfio-container.h | 2 +-
include/hw/vfio/vfio-cpr.h | 2 +-
include/hw/virtio/virtio-mem.h | 3 -
include/system/memory.h | 282 +---
include/system/ram-discard-manager.h | 358 +++++
include/system/ramblock.h | 5 +-
migration/migration.h | 9 +-
tests/qtest/migration/aarch64/a-b-kernel.h | 2 +
tests/qtest/migration/bootfile.h | 4 +
tests/qtest/migration/i386/a-b-bootblock.h | 2 +
.../qtest/migration/loongarch64/a-b-kernel.h | 20 +
tests/qtest/migration/ppc64/a-b-kernel.h | 2 +
tests/qtest/migration/s390x/a-b-bios.h | 272 ++--
accel/kvm/kvm-all.c | 2 +-
hw/vfio/cpr-legacy.c | 4 +-
hw/vfio/listener.c | 10 +-
hw/virtio/virtio-mem.c | 259 +---
migration/migration.c | 7 +-
migration/ram.c | 16 +-
system/memory.c | 88 +-
system/memory_mapping.c | 4 +-
system/physmem.c | 43 +-
system/ram-block-attributes.c | 255 +---
system/ram-discard-manager.c | 612 ++++++++
target/i386/kvm/tdx.c | 2 +-
tests/qtest/migration/bootfile.c | 4 +
tests/qtest/migration/framework.c | 6 +
tests/unit/test-ram-discard-manager-stubs.c | 48 +
tests/unit/test-ram-discard-manager.c | 1235 +++++++++++++++++
util/thread-pool.c | 2 +-
rust/bindings/system-sys/lib.rs | 2 +-
system/meson.build | 1 +
system/trace-events | 2 +-
tests/qtest/meson.build | 3 +-
tests/qtest/migration/Makefile | 4 +-
tests/qtest/migration/loongarch64/Makefile | 20 +
.../qtest/migration/loongarch64/a-b-kernel.S | 46 +
tests/unit/meson.build | 8 +-
40 files changed, 2656 insertions(+), 999 deletions(-)
create mode 100644 include/system/ram-discard-manager.h
create mode 100644 tests/qtest/migration/loongarch64/a-b-kernel.h
create mode 100644 system/ram-discard-manager.c
create mode 100644 tests/unit/test-ram-discard-manager-stubs.c
create mode 100644 tests/unit/test-ram-discard-manager.c
create mode 100644 tests/qtest/migration/loongarch64/Makefile
create mode 100644 tests/qtest/migration/loongarch64/a-b-kernel.S
--
2.54.0
next reply other threads:[~2026-06-23 12:49 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-23 12:47 Peter Xu [this message]
2026-06-23 12:47 ` [PULL 01/18] thread-pool: Allow at least 1 thread in thread_pool_adjust_max_threads_to_work() Peter Xu
2026-06-23 12:47 ` [PULL 02/18] qapi/migration: Remove @cpr-exec-command doc in MigrationParameter Peter Xu
2026-06-23 12:47 ` [PULL 03/18] system/physmem: Synchronize ram_list accesses Peter Xu
2026-06-23 12:47 ` [PULL 04/18] system/memory: Remove MAX_PHYS_ADDR Peter Xu
2026-06-23 12:47 ` [PULL 05/18] migration: Use OBJECT_DECLARE_SIMPLE_TYPE Peter Xu
2026-06-23 12:47 ` [PULL 06/18] tests/qtest/migration: Add migration test on loongarch Peter Xu
2026-06-23 12:47 ` [PULL 07/18] migration/tests: Update a-b-boot images for all archs Peter Xu
2026-06-23 12:47 ` [PULL 08/18] system/memory: split RamDiscardManager into source and manager Peter Xu
2026-06-23 12:47 ` [PULL 09/18] system/memory: move RamDiscardManager to separate compilation unit Peter Xu
2026-06-23 12:47 ` [PULL 10/18] system/memory: constify section arguments Peter Xu
2026-06-23 12:47 ` [PULL 11/18] system/ram-discard-manager: implement replay via is_populated iteration Peter Xu
2026-06-23 12:47 ` [PULL 12/18] virtio-mem: remove replay_populated/replay_discarded implementation Peter Xu
2026-06-23 12:47 ` [PULL 13/18] system/ram-discard-manager: drop replay from source interface Peter Xu
2026-06-23 12:47 ` [PULL 14/18] system/memory: implement RamDiscardManager multi-source aggregation Peter Xu
2026-06-23 12:47 ` [PULL 15/18] system/physmem: destroy ram block attributes before RCU-deferred reclaim Peter Xu
2026-06-23 12:47 ` [PULL 16/18] system/memory: add RamDiscardManager reference counting and cleanup Peter Xu
2026-06-23 12:47 ` [PULL 17/18] tests: add unit tests for RamDiscardManager multi-source aggregation Peter Xu
2026-06-23 12:47 ` [PULL 18/18] system/physmem: make ram_block_discard_range() handle guest_memfd Peter Xu
2026-06-25 20:26 ` [PULL 00/18] Next patches Stefan Hajnoczi
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=20260623124759.125399-1-peterx@redhat.com \
--to=peterx@redhat.com \
--cc=farosas@suse.de \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/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.