[PULL 00/58] Misc patches for 2026-04-30

Paolo Bonzini posted 58 patches 1 month ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20260430172204.1006673-1-pbonzini@redhat.com
Maintainers: Pedro Barbuda <pbarbuda@microsoft.com>, Mohamed Mediouni <mohamed@unpredictable.fr>, Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com>, Paolo Bonzini <pbonzini@redhat.com>, "Daniel P. Berrangé" <berrange@redhat.com>, "Michael S. Tsirkin" <mst@redhat.com>, Palmer Dabbelt <palmer@dabbelt.com>, Alistair Francis <alistair.francis@wdc.com>, Weiwei Li <liwei1518@gmail.com>, Daniel Henrique Barboza <daniel.barboza@oss.qualcomm.com>, Liu Zhiwei <zhiwei_liu@linux.alibaba.com>, Chao Liu <chao.liu.zevorn@gmail.com>, John Snow <jsnow@redhat.com>, Cleber Rosa <crosa@redhat.com>, "Alex Bennée" <alex.bennee@linaro.org>, Alexander Graf <agraf@csgraf.de>, Peter Maydell <peter.maydell@linaro.org>, Zhao Liu <zhao1.liu@intel.com>, Roman Bolshakov <rbolshakov@ddn.com>, Phil Dennis-Jordan <phil@philjordan.eu>, Wei Liu <wei.liu@kernel.org>, Richard Henderson <richard.henderson@linaro.org>
docs/system/whpx.rst                        |   40 +-
include/hw/core/qdev.h                      |   28 +-
include/system/whpx-all.h                   |    1 +
include/system/whpx-common.h                |    2 +-
include/system/whpx-internal.h              |   30 +
target/i386/cpu.h                           |   14 +-
target/i386/emulate/x86_emu.h               |    4 +-
target/i386/hvf/hvf-i386.h                  |    4 +-
target/i386/whpx/whpx-i386.h                |   12 +
accel/whpx/whpx-common.c                    |    7 +
hw/core/qdev.c                              |   38 +-
hw/intc/apic.c                              |    9 +
hw/virtio/virtio.c                          |    6 +-
target/arm/hvf/hvf.c                        |    2 +-
target/arm/whpx/whpx-all.c                  |    5 +
target/i386/cpu.c                           |  169 +++-
target/i386/emulate/x86_emu.c               |   10 +-
target/i386/emulate/x86_mmu.c               |    3 +-
target/i386/hvf/hvf.c                       |   11 +-
target/i386/hvf/x86hvf.c                    |    4 +-
target/i386/whpx/whpx-all.c                 | 1396 ++++++++++++++++++++++-----
target/i386/whpx/whpx-apic.c                |   83 +-
target/i386/whpx/whpx-cpu-legacy.c          |  158 +++
target/i386/xsave_helper.c                  |  256 +++++
tests/unit/check-json-parser.c              |  159 +++
target/i386/tcg/decode-new.c.inc            |   21 +-
hw/Kconfig                                  |    1 -
hw/cxl/Kconfig                              |    3 -
hw/misc/Kconfig                             |    8 -
hw/riscv/Kconfig                            |    4 +
python/scripts/vendor.py                    |    4 +-
python/tests/linters.py                     |    6 +
python/wheels/meson-1.10.0-py3-none-any.whl |  Bin 1057029 -> 0 bytes
python/wheels/meson-1.11.1-py3-none-any.whl |  Bin 0 -> 1078534 bytes
pythondeps.toml                             |    4 +-
scripts/minikconf.py                        |  465 ++++-----
target/i386/meson.build                     |    7 +-
target/i386/whpx/meson.build                |    1 +
tests/unit/meson.build                      |    1 +
39 files changed, 2384 insertions(+), 592 deletions(-)
create mode 100644 target/i386/whpx/whpx-i386.h
create mode 100644 target/i386/whpx/whpx-cpu-legacy.c
create mode 100644 tests/unit/check-json-parser.c
delete mode 100644 hw/cxl/Kconfig
delete mode 100644 python/wheels/meson-1.10.0-py3-none-any.whl
create mode 100644 python/wheels/meson-1.11.1-py3-none-any.whl
[PULL 00/58] Misc patches for 2026-04-30
Posted by Paolo Bonzini 1 month ago
The following changes since commit aa15257174da180c6a8a9d58f87319cfe61c5520:

  Merge tag 'pbouvier/pr/plugins-20260424' of https://gitlab.com/p-b-o/qemu into staging (2026-04-25 10:22:04 -0400)

are available in the Git repository at:

  https://gitlab.com/bonzini/qemu.git tags/for-upstream

for you to fetch changes up to f0eb0ef4d83068fc3d909a0266832c7c5fbccb7a:

  whpx: i386: documentation update (2026-04-30 17:55:04 +0200)

----------------------------------------------------------------
* hw/qdev: Consolidate qdev_get_printable_name() into qdev_get_human_name()
* target/i386: add new models for GMET, MMIO/GDS/RFDS mitigation and MBEC
* whpx improvements
* bump meson to 1.11.1
* tests: add test for json-streamer.c error recovery
* kconfig cleanups
* target/arm/hvf, target/i386/hvf: Pass MR-relative offset to memory_region_set_dirty()

----------------------------------------------------------------
Alessandro Ratti (3):
      hw/qdev: Clarify fallback order in qdev_get_printable_name()
      hw/qdev: Prefix bus type in qdev_get_printable_name() device paths
      hw/qdev: Consolidate qdev_get_printable_name() into qdev_get_human_name()

Jon Kohler (3):
      target/i386: add new AMD EPYC models for GMET enablement
      target/i386: add new Intel models for MMIO/GDS/RFDS mitigation status
      target/i386: add new Intel models for MBEC enablement

Magnus Kulke (1):
      target/i386: add de/compaction to xsave_helper

Mohamed Mediouni (34):
      whpx: i386: x2apic emulation
      whpx: i386: wire up feature probing
      whpx: i386: disable TbFlushHypercalls for emulated LAPIC
      whpx: i386: enable x2apic by default for user-mode LAPIC
      whpx: i386: reintroduce enlightenments for Windows 10
      whpx: i386: introduce proper cpuid support
      whpx: i386: kernel-irqchip=off fixes
      whpx: i386: use WHvX64RegisterCr8 only when kernel-irqchip=off
      whpx: i386: disable kernel-irqchip on Windows 10 when PIC enabled
      whpx: i386: IO port fast path cleanup
      whpx: i386: disable enlightenments and LAPIC for isapc
      whpx: i386: interrupt priority support
      hw/intc: apic: disallow APIC reads when disabled
      whpx: i386: fix CPUID[1:EDX].APIC reporting
      whpx: i386: set apicbase value only on success
      whpx: i386: enable GuestIdleReg enlightenment
      whpx: i386: unknown MSR configurability
      whpx: i386: don't increment eip on MSR access raising GPF
      target/i386: emulate, hvf: rdmsr/wrmsr GPF handling
      whpx: i386: tighten APIC base validity check
      whpx: i386: ignore vpassist when kernel-irqchip=off
      target: i386: HLT type that ignores EFLAGS.IF
      whpx: i386: add HV_X64_MSR_GUEST_IDLE when !kernel-irqchip
      whpx: i386: some x2APIC awareness
      whpx: i386: set WHvX64RegisterInitialApicId
      whpx: i386: Pause VM on fatal exception to be able to inspect state
      target/i386: emulate: use exception_payload for fault address
      target/i386: make xsave_buf present unconditionally
      whpx: xsave support
      whpx: i386: set APIC ID only when APIC present
      whpx: i386: update migration blocker message
      whpx: i386: add feature to intercept #GP MSR accesses
      whpx: i386: add SeparateSecurityDomain flag and make default
      whpx: i386: documentation update

Paolo Bonzini (15):
      target/i386/tcg: simplify decoding of 0F 38 F0...FF
      tests: add test for json-streamer.c error recovery
      kconfig: remove duplicate declaration of CONFIG_CXL
      kconfig: remove duplicate declaration of CONFIG_MIPS_BOSTON_AIA
      minikconf: run through isort
      minikconf: small cleanups and dead code removal
      minikconf: move command-line assignment out of the parser
      minikconf: fix type mismatch in do_declaration
      minikconf: simplify self.tok
      minikconf: modernize handling of include chain
      minikconf: use .items()
      minikconf: pull main program into a function
      minikconf: remove unnecessary semicolons
      minikconf: replace else with early return and avoid unnecessary else
      minikconf: add mypy annotations

Pierrick Bouvier (1):
      pythondeps: bump to meson 1.11.1

Scott J. Goldman (1):
      target/arm/hvf, target/i386/hvf: Pass MR-relative offset to memory_region_set_dirty()

 docs/system/whpx.rst                        |   40 +-
 include/hw/core/qdev.h                      |   28 +-
 include/system/whpx-all.h                   |    1 +
 include/system/whpx-common.h                |    2 +-
 include/system/whpx-internal.h              |   30 +
 target/i386/cpu.h                           |   14 +-
 target/i386/emulate/x86_emu.h               |    4 +-
 target/i386/hvf/hvf-i386.h                  |    4 +-
 target/i386/whpx/whpx-i386.h                |   12 +
 accel/whpx/whpx-common.c                    |    7 +
 hw/core/qdev.c                              |   38 +-
 hw/intc/apic.c                              |    9 +
 hw/virtio/virtio.c                          |    6 +-
 target/arm/hvf/hvf.c                        |    2 +-
 target/arm/whpx/whpx-all.c                  |    5 +
 target/i386/cpu.c                           |  169 +++-
 target/i386/emulate/x86_emu.c               |   10 +-
 target/i386/emulate/x86_mmu.c               |    3 +-
 target/i386/hvf/hvf.c                       |   11 +-
 target/i386/hvf/x86hvf.c                    |    4 +-
 target/i386/whpx/whpx-all.c                 | 1396 ++++++++++++++++++++++-----
 target/i386/whpx/whpx-apic.c                |   83 +-
 target/i386/whpx/whpx-cpu-legacy.c          |  158 +++
 target/i386/xsave_helper.c                  |  256 +++++
 tests/unit/check-json-parser.c              |  159 +++
 target/i386/tcg/decode-new.c.inc            |   21 +-
 hw/Kconfig                                  |    1 -
 hw/cxl/Kconfig                              |    3 -
 hw/misc/Kconfig                             |    8 -
 hw/riscv/Kconfig                            |    4 +
 python/scripts/vendor.py                    |    4 +-
 python/tests/linters.py                     |    6 +
 python/wheels/meson-1.10.0-py3-none-any.whl |  Bin 1057029 -> 0 bytes
 python/wheels/meson-1.11.1-py3-none-any.whl |  Bin 0 -> 1078534 bytes
 pythondeps.toml                             |    4 +-
 scripts/minikconf.py                        |  465 ++++-----
 target/i386/meson.build                     |    7 +-
 target/i386/whpx/meson.build                |    1 +
 tests/unit/meson.build                      |    1 +
 39 files changed, 2384 insertions(+), 592 deletions(-)
 create mode 100644 target/i386/whpx/whpx-i386.h
 create mode 100644 target/i386/whpx/whpx-cpu-legacy.c
 create mode 100644 tests/unit/check-json-parser.c
 delete mode 100644 hw/cxl/Kconfig
 delete mode 100644 python/wheels/meson-1.10.0-py3-none-any.whl
 create mode 100644 python/wheels/meson-1.11.1-py3-none-any.whl
-- 
2.54.0
Re: [PULL 00/58] Misc patches for 2026-04-30
Posted by Stefan Hajnoczi 4 weeks ago
Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/11.1 for any user-visible changes.