From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Subject: [PULL 00/28] Misc patches for 2021-05-24
Date: Mon, 24 May 2021 18:41:03 +0200 [thread overview]
Message-ID: <20210524164131.383778-1-pbonzini@redhat.com> (raw)
The following changes since commit 371ebfe28600fc5a435504b841cd401208a68f07:
Merge remote-tracking branch 'remotes/xtensa/tags/20210521-xtensa' into staging (2021-05-24 12:00:33 +0100)
are available in the Git repository at:
https://gitlab.com/bonzini/qemu.git tags/for-upstream
for you to fetch changes up to b304cc9bc94950a4b9100634db6dc3c885f99216:
gitlab-ci: use --meson=git for CFI jobs (2021-05-24 18:39:02 +0200)
----------------------------------------------------------------
* submodule cleanups (Philippe, myself)
* tiny step towards a usable preconfig mode (myself)
* Kconfig and LOCK_GUARD cleanups (philippe)
* new x86 CPUID feature (Yang Zhong)
* "-object qtest" support (myself)
* Dirty ring support for KVM (Peter)
* Fixes for 6.0 command line parsing breakage (myself)
* Fix for macOS 11.3 SDK (Katsuhiro)
----------------------------------------------------------------
Ali Shirvani via (1):
doc: Add notes about -mon option mode=control argument.
Katsuhiro Ueno (1):
meson: Set implicit_include_directories to false
Kit Westneat (1):
hw/scsi: Fix sector translation bug in scsi_unmap_complete_noio
Paolo Bonzini (10):
configure: check for submodules if --with-git-submodules=ignore
configure: simplify assignment to GIT_SUBMODULES
object: add more commands to preconfig mode
qtest: add a QOM object for qtest
KVM: do not allow setting properties at runtime
remove qemu-options* from root directory
replication: move include out of root directory
vl: allow not specifying size in -m when using -M memory-backend
qemu-config: load modules when instantiating option groups
gitlab-ci: use --meson=git for CFI jobs
Peter Xu (10):
memory: Introduce log_sync_global() to memory listener
KVM: Use a big lock to replace per-kml slots_lock
KVM: Create the KVMSlot dirty bitmap on flag changes
KVM: Provide helper to get kvm dirty log
KVM: Provide helper to sync dirty bitmap from slot to ramblock
KVM: Simplify dirty log sync in kvm_set_phys_mem
KVM: Cache kvm slot dirty bitmap size
KVM: Add dirty-ring-size property
KVM: Disable manual dirty log when dirty ring enabled
KVM: Dirty ring support
Philippe Mathieu-Daudé (3):
configure: Only clone softfloat-3 repositories if TCG is enabled
hw/mem/nvdimm: Use Kconfig 'imply' instead of 'depends on'
tests/qtest/fuzz: Fix build failure
Thomas Huth (1):
configure: Avoid error messages about missing *-config-*.h files
Yang Zhong (1):
i386/cpu: Expose AVX_VNNI instruction to guest
.gitlab-ci.yml | 4 +-
Makefile | 2 +
accel/kvm/kvm-all.c | 615 ++++++++++++++++++++++----
accel/kvm/trace-events | 7 +
block/replication.c | 2 +-
configure | 79 ++--
default-configs/devices/ppc64-softmmu.mak | 1 -
hmp-commands.hx | 2 +
hw/arm/Kconfig | 1 +
hw/i386/Kconfig | 1 +
hw/mem/Kconfig | 2 -
hw/ppc/Kconfig | 1 +
hw/scsi/scsi-disk.c | 12 +-
replication.h => include/block/replication.h | 4 +-
include/exec/memory.h | 12 +
include/hw/core/cpu.h | 7 +
include/qemu/config-file.h | 2 +-
qemu-options.h => include/qemu/qemu-options.h | 9 +-
include/sysemu/kvm_int.h | 7 +-
meson.build | 1 +
migration/colo.c | 2 +-
os-posix.c | 2 +-
os-win32.c | 1 -
qapi/qom.json | 23 +-
qemu-options-wrapper.h | 40 --
qemu-options.hx | 23 +-
replication.c | 2 +-
softmmu/memory.c | 33 +-
softmmu/qtest.c | 185 +++++++-
softmmu/vl.c | 52 ++-
stubs/meson.build | 1 +
stubs/module-opts.c | 6 +
target/i386/cpu.c | 4 +-
target/i386/cpu.h | 2 +
tests/qtest/fuzz/fuzz.c | 1 +
tests/unit/test-replication.c | 2 +-
util/qemu-config.c | 1 +
37 files changed, 924 insertions(+), 227 deletions(-)
rename replication.h => include/block/replication.h (98%)
rename qemu-options.h => include/qemu/qemu-options.h (88%)
delete mode 100644 qemu-options-wrapper.h
create mode 100644 stubs/module-opts.c
--
2.31.1
next reply other threads:[~2021-05-24 16:53 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-24 16:41 Paolo Bonzini [this message]
2021-05-24 16:41 ` [PULL 01/28] configure: Only clone softfloat-3 repositories if TCG is enabled Paolo Bonzini
2021-05-24 16:41 ` [PULL 02/28] configure: check for submodules if --with-git-submodules=ignore Paolo Bonzini
2021-05-24 16:41 ` [PULL 03/28] configure: simplify assignment to GIT_SUBMODULES Paolo Bonzini
2021-05-24 16:41 ` [PULL 04/28] hw/mem/nvdimm: Use Kconfig 'imply' instead of 'depends on' Paolo Bonzini
2021-05-24 16:41 ` [PULL 05/28] i386/cpu: Expose AVX_VNNI instruction to guest Paolo Bonzini
2021-05-24 16:41 ` [PULL 06/28] object: add more commands to preconfig mode Paolo Bonzini
2021-05-24 16:41 ` [PULL 07/28] qtest: add a QOM object for qtest Paolo Bonzini
2021-06-04 15:37 ` Eric Blake
2021-06-04 15:45 ` Philippe Mathieu-Daudé
2021-06-04 15:48 ` Philippe Mathieu-Daudé
2021-05-24 16:41 ` [PULL 08/28] KVM: do not allow setting properties at runtime Paolo Bonzini
2021-05-24 16:41 ` [PULL 09/28] memory: Introduce log_sync_global() to memory listener Paolo Bonzini
2021-05-24 16:41 ` [PULL 10/28] KVM: Use a big lock to replace per-kml slots_lock Paolo Bonzini
2021-05-24 16:41 ` [PULL 11/28] KVM: Create the KVMSlot dirty bitmap on flag changes Paolo Bonzini
2021-05-24 16:41 ` [PULL 12/28] KVM: Provide helper to get kvm dirty log Paolo Bonzini
2021-05-24 16:41 ` [PULL 13/28] KVM: Provide helper to sync dirty bitmap from slot to ramblock Paolo Bonzini
2021-05-24 16:41 ` [PULL 14/28] KVM: Simplify dirty log sync in kvm_set_phys_mem Paolo Bonzini
2021-05-24 16:41 ` [PULL 15/28] KVM: Cache kvm slot dirty bitmap size Paolo Bonzini
2021-05-24 16:41 ` [PULL 16/28] KVM: Add dirty-ring-size property Paolo Bonzini
2021-05-24 16:41 ` [PULL 17/28] KVM: Disable manual dirty log when dirty ring enabled Paolo Bonzini
2021-05-24 16:41 ` [PULL 18/28] KVM: Dirty ring support Paolo Bonzini
2021-05-24 16:41 ` [PULL 19/28] tests/qtest/fuzz: Fix build failure Paolo Bonzini
2021-05-24 16:41 ` [PULL 20/28] meson: Set implicit_include_directories to false Paolo Bonzini
2021-05-24 16:41 ` [PULL 21/28] remove qemu-options* from root directory Paolo Bonzini
2021-05-24 16:41 ` [PULL 22/28] replication: move include out of " Paolo Bonzini
2021-05-24 16:41 ` [PULL 23/28] vl: allow not specifying size in -m when using -M memory-backend Paolo Bonzini
2021-05-24 16:41 ` [PULL 24/28] qemu-config: load modules when instantiating option groups Paolo Bonzini
2021-05-24 16:41 ` [PULL 25/28] doc: Add notes about -mon option mode=control argument Paolo Bonzini
2021-05-24 16:41 ` [PULL 26/28] configure: Avoid error messages about missing *-config-*.h files Paolo Bonzini
2021-05-24 16:41 ` [PULL 27/28] hw/scsi: Fix sector translation bug in scsi_unmap_complete_noio Paolo Bonzini
2021-05-24 16:41 ` [PULL 28/28] gitlab-ci: use --meson=git for CFI jobs Paolo Bonzini
2021-05-24 17:39 ` [PULL 00/28] Misc patches for 2021-05-24 no-reply
2021-05-24 18:02 ` Peter Maydell
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=20210524164131.383778-1-pbonzini@redhat.com \
--to=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 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).