From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Subject: [PULL 00/45] Misc patches for 2020-12-15
Date: Tue, 15 Dec 2020 12:54:00 -0500 [thread overview]
Message-ID: <20201215175445.1272776-1-pbonzini@redhat.com> (raw)
The following changes since commit 69e92bd558d71fdbd0c1989391b20edcc700daa9:
Merge remote-tracking branch 'remotes/ehabkost/tags/machine-next-pull-request' into staging (2020-12-15 15:35:47 +0000)
are available in the Git repository at:
https://gitlab.com/bonzini/qemu.git tags/for-upstream
for you to fetch changes up to bbd2d5a8120771ec59b86a80a1f51884e0a26e53:
build: -no-pie is no functional linker flag (2020-12-15 12:53:16 -0500)
----------------------------------------------------------------
* New -action option and set-action QMP command (Alejandro)
* More vl.c cleanup (myself with help from Daniel and Igor)
* Remove deprecated options (Philippe, Thomas)
* Dirty bitmap fix (Zenghui)
* icount caching speedup (Pavel)
* SCSI race fix (Maxim)
* Remove pre-GCC 4.8 code (Marc-André)
----------------------------------------------------------------
Alejandro Jimenez (4):
qmp: generalize watchdog-set-action to -no-reboot/-no-shutdown
vl: Add an -action option specifying response to guest events
vl: Add option to avoid stopping VM upon guest panic
qtest/pvpanic: Test panic option that allows VM to continue
Christian Ehrhardt (1):
build: -no-pie is no functional linker flag
Igor Mammedov (1):
ppc/spapr: cleanup -machine pseries,nvdimm=X handling
Marc-André Lureau (11):
docs: set CONFDIR when running sphinx
compiler.h: remove GCC < 3 __builtin_expect fallback
qemu-plugin.h: remove GCC < 4
tests: remove GCC < 4 fallbacks
virtiofsd: replace _Static_assert with QEMU_BUILD_BUG_ON
compiler.h: explicit case for Clang printf attribute
poison: remove GNUC check
xen: remove GNUC check
compiler: remove GNUC check
linux-user: remove GNUC check
compiler.h: remove QEMU_GNUC_PREREQ
Maxim Levitsky (1):
scsi: fix device removal race vs IO restart callback on resume
Paolo Bonzini (17):
remove preconfig state
vl: remove separate preconfig main_loop
vl: allow -incoming defer with -preconfig
vl: extract softmmu/runstate.c
vl: extract softmmu/globals.c
vl: move all generic initialization out of vl.c
chardev: do not use machine_init_done
machine: introduce MachineInitPhase
vl: make qemu_get_machine_opts static
plugin: propagate errors
memory: allow creating MemoryRegions before accelerators
monitor: allow quitting while in preconfig state
msix: assert that accesses are within bounds
memory: clamp cached translation in case it points to an MMIO region
qemu-option: simplify search for end of key
qemu-option: pass QemuOptsList to opts_accepts_any
vl: rename local variable in configure_accelerators
Pavel Dovgalyuk (1):
icount: improve exec nocache usage
Philippe Mathieu-Daudé (5):
accel/tcg: Remove deprecated '-tb-size' option
hw/core: Restrict 'fw-path-provider.c' to system mode emulation
qemu/atomic: Drop special case for unsupported compiler
accel/tcg: Remove special case for GCC < 4.6
scripts/git.orderfile: Keep files with .inc extension sorted
Thomas Huth (3):
docs/system: Move the list of removed features to a separate file
Remove the deprecated -realtime option
Remove the deprecated -show-cursor option
Zenghui Yu (1):
kvm: Take into account the unaligned section size when preparing bitmap
MAINTAINERS | 2 +
accel/kvm/kvm-all.c | 18 +-
accel/tcg/cpu-exec.c | 4 +-
accel/tcg/translate-all.c | 2 +-
chardev/char-mux.c | 38 +-
chardev/chardev-sysemu.c | 69 ---
chardev/meson.build | 2 +-
configure | 3 -
docs/meson.build | 2 +-
docs/system/deprecated.rst | 246 --------
docs/system/index.rst | 1 +
docs/system/removed-features.rst | 243 ++++++++
hmp-commands.hx | 1 +
hw/arm/boot.c | 2 +-
hw/core/machine-qmp-cmds.c | 7 +-
hw/core/machine.c | 55 +-
hw/core/meson.build | 2 +-
hw/core/qdev.c | 28 +-
hw/microblaze/boot.c | 9 +-
hw/nios2/boot.c | 9 +-
hw/pci/msix.c | 3 +
hw/pci/pci.c | 2 +-
hw/ppc/e500.c | 5 +-
hw/ppc/spapr.c | 13 +
hw/ppc/spapr_nvdimm.c | 14 +-
hw/ppc/virtex_ml507.c | 2 +-
hw/riscv/sifive_u.c | 6 +-
hw/riscv/virt.c | 6 +-
hw/scsi/scsi-bus.c | 4 +
hw/usb/core.c | 2 +-
hw/virtio/virtio-iommu.c | 2 +-
hw/xtensa/xtfpga.c | 9 +-
include/chardev/char.h | 6 +-
include/exec/cpu-common.h | 3 +
include/exec/exec-all.h | 3 -
include/exec/poison.h | 2 -
include/hw/qdev-core.h | 33 +-
include/hw/xen/interface/io/ring.h | 9 -
include/qapi/qmp/dispatch.h | 1 +
include/qemu/atomic.h | 17 -
include/qemu/compiler.h | 45 +-
include/qemu/plugin.h | 4 +-
include/qemu/qemu-plugin.h | 9 +-
include/sysemu/runstate-action.h | 19 +
include/sysemu/runstate.h | 1 -
include/sysemu/sysemu.h | 7 +-
linux-user/main.c | 4 +-
linux-user/strace.c | 4 -
monitor/hmp.c | 7 +-
monitor/qmp-cmds.c | 13 +-
pc-bios/optionrom/Makefile | 1 -
plugins/loader.c | 34 +-
qapi/control.json | 3 +-
qapi/qmp-dispatch.c | 5 +-
qapi/run-state.json | 79 ++-
qemu-options.hx | 54 +-
scripts/cocci-macro-file.h | 1 -
scripts/git.orderfile | 3 +
softmmu/device_tree.c | 2 +-
softmmu/globals.c | 72 +++
softmmu/memory.c | 12 +-
softmmu/meson.build | 3 +
softmmu/physmem.c | 10 +
softmmu/qdev-monitor.c | 34 +-
softmmu/runstate-action.c | 46 ++
softmmu/runstate.c | 812 ++++++++++++++++++++++++++
softmmu/vl.c | 1078 ++++-------------------------------
stubs/machine-init-done.c | 8 -
stubs/meson.build | 2 +-
stubs/qmp-command-available.c | 7 +
tests/migration/guestperf/engine.py | 2 +-
tests/qtest/fuzz-test.c | 51 ++
tests/qtest/pvpanic-test.c | 26 +-
tests/qtest/qmp-test.c | 2 +-
tests/tcg/arm/fcvt.c | 8 +-
tools/virtiofsd/fuse_common.h | 11 +-
ui/console.c | 2 +-
ui/sdl2.c | 5 +-
util/qemu-option.c | 58 +-
79 files changed, 1833 insertions(+), 1596 deletions(-)
delete mode 100644 chardev/chardev-sysemu.c
create mode 100644 docs/system/removed-features.rst
create mode 100644 include/sysemu/runstate-action.h
create mode 100644 softmmu/globals.c
create mode 100644 softmmu/runstate-action.c
create mode 100644 softmmu/runstate.c
delete mode 100644 stubs/machine-init-done.c
create mode 100644 stubs/qmp-command-available.c
--
2.26.2
next reply other threads:[~2020-12-15 17:58 UTC|newest]
Thread overview: 56+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-15 17:54 Paolo Bonzini [this message]
2020-12-15 17:54 ` [PULL 01/45] remove preconfig state Paolo Bonzini
2020-12-15 17:54 ` [PULL 02/45] vl: remove separate preconfig main_loop Paolo Bonzini
2020-12-19 21:30 ` Laurent Vivier
2020-12-20 8:52 ` Paolo Bonzini
2020-12-15 17:54 ` [PULL 03/45] vl: allow -incoming defer with -preconfig Paolo Bonzini
2020-12-15 17:54 ` [PULL 04/45] vl: extract softmmu/runstate.c Paolo Bonzini
2020-12-15 17:54 ` [PULL 05/45] vl: extract softmmu/globals.c Paolo Bonzini
2020-12-15 17:54 ` [PULL 06/45] vl: move all generic initialization out of vl.c Paolo Bonzini
2020-12-15 17:54 ` [PULL 07/45] chardev: do not use machine_init_done Paolo Bonzini
2020-12-15 17:54 ` [PULL 08/45] machine: introduce MachineInitPhase Paolo Bonzini
2020-12-15 17:54 ` [PULL 09/45] ppc/spapr: cleanup -machine pseries,nvdimm=X handling Paolo Bonzini
2020-12-15 17:54 ` [PULL 10/45] vl: make qemu_get_machine_opts static Paolo Bonzini
2020-12-15 17:54 ` [PULL 11/45] plugin: propagate errors Paolo Bonzini
2020-12-15 17:54 ` [PULL 12/45] memory: allow creating MemoryRegions before accelerators Paolo Bonzini
2020-12-15 17:54 ` [PULL 13/45] monitor: allow quitting while in preconfig state Paolo Bonzini
2020-12-15 17:54 ` [PULL 14/45] qmp: generalize watchdog-set-action to -no-reboot/-no-shutdown Paolo Bonzini
2020-12-15 17:54 ` [PULL 15/45] vl: Add an -action option specifying response to guest events Paolo Bonzini
2020-12-15 17:54 ` [PULL 16/45] vl: Add option to avoid stopping VM upon guest panic Paolo Bonzini
2021-01-19 21:34 ` Peter Maydell
2021-01-20 5:28 ` Alejandro Jimenez
2021-01-20 13:47 ` Peter Maydell
2021-01-20 13:54 ` Daniel P. Berrangé
2021-01-20 14:47 ` Paolo Bonzini
2021-01-20 13:58 ` Paolo Bonzini
2020-12-15 17:54 ` [PULL 17/45] qtest/pvpanic: Test panic option that allows VM to continue Paolo Bonzini
2020-12-15 17:54 ` [PULL 18/45] msix: assert that accesses are within bounds Paolo Bonzini
2020-12-15 17:54 ` [PULL 19/45] memory: clamp cached translation in case it points to an MMIO region Paolo Bonzini
2021-01-13 13:27 ` Michael S. Tsirkin
2020-12-15 17:54 ` [PULL 20/45] accel/tcg: Remove deprecated '-tb-size' option Paolo Bonzini
2020-12-15 17:54 ` [PULL 21/45] docs/system: Move the list of removed features to a separate file Paolo Bonzini
2020-12-15 17:54 ` [PULL 22/45] Remove the deprecated -realtime option Paolo Bonzini
2020-12-15 17:54 ` [PULL 23/45] Remove the deprecated -show-cursor option Paolo Bonzini
2020-12-15 17:54 ` [PULL 24/45] icount: improve exec nocache usage Paolo Bonzini
2020-12-15 17:54 ` [PULL 25/45] scsi: fix device removal race vs IO restart callback on resume Paolo Bonzini
2020-12-15 17:54 ` [PULL 26/45] kvm: Take into account the unaligned section size when preparing bitmap Paolo Bonzini
2020-12-15 17:54 ` [PULL 27/45] qemu-option: simplify search for end of key Paolo Bonzini
2020-12-15 17:54 ` [PULL 28/45] qemu-option: pass QemuOptsList to opts_accepts_any Paolo Bonzini
2020-12-15 17:54 ` [PULL 29/45] vl: rename local variable in configure_accelerators Paolo Bonzini
2020-12-15 17:54 ` [PULL 30/45] docs: set CONFDIR when running sphinx Paolo Bonzini
2020-12-15 17:54 ` [PULL 31/45] hw/core: Restrict 'fw-path-provider.c' to system mode emulation Paolo Bonzini
2020-12-15 17:54 ` [PULL 32/45] qemu/atomic: Drop special case for unsupported compiler Paolo Bonzini
2020-12-15 17:54 ` [PULL 33/45] accel/tcg: Remove special case for GCC < 4.6 Paolo Bonzini
2020-12-15 17:54 ` [PULL 34/45] compiler.h: remove GCC < 3 __builtin_expect fallback Paolo Bonzini
2020-12-15 17:54 ` [PULL 35/45] qemu-plugin.h: remove GCC < 4 Paolo Bonzini
2020-12-15 17:54 ` [PULL 36/45] tests: remove GCC < 4 fallbacks Paolo Bonzini
2020-12-15 17:54 ` [PULL 37/45] virtiofsd: replace _Static_assert with QEMU_BUILD_BUG_ON Paolo Bonzini
2020-12-15 17:54 ` [PULL 38/45] compiler.h: explicit case for Clang printf attribute Paolo Bonzini
2020-12-15 17:54 ` [PULL 39/45] poison: remove GNUC check Paolo Bonzini
2020-12-15 17:54 ` [PULL 40/45] xen: " Paolo Bonzini
2020-12-15 17:54 ` [PULL 41/45] compiler: " Paolo Bonzini
2020-12-15 17:54 ` [PULL 42/45] linux-user: " Paolo Bonzini
2020-12-15 17:54 ` [PULL 43/45] compiler.h: remove QEMU_GNUC_PREREQ Paolo Bonzini
2020-12-15 17:54 ` [PULL 44/45] scripts/git.orderfile: Keep files with .inc extension sorted Paolo Bonzini
2020-12-15 17:54 ` [PULL 45/45] build: -no-pie is no functional linker flag Paolo Bonzini
2020-12-16 10:55 ` [PULL 00/45] Misc patches for 2020-12-15 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=20201215175445.1272776-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).