qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PULL 00/45] Misc patches for 2020-12-15


From: Paolo Bonzini
Subject: [PULL 00/45] Misc patches for 2020-12-15
Date: Tue, 15 Dec 2020 12:54:00 -0500

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]