All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL 00/58] Misc patches for 2026-04-30
@ 2026-04-30 17:21 Paolo Bonzini
  2026-04-30 17:21 ` [PULL 02/58] target/arm/hvf, target/i386/hvf: Pass MR-relative offset to memory_region_set_dirty() Paolo Bonzini
                   ` (57 more replies)
  0 siblings, 58 replies; 63+ messages in thread
From: Paolo Bonzini @ 2026-04-30 17:21 UTC (permalink / raw)
  To: qemu-devel

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



^ permalink raw reply	[flat|nested] 63+ messages in thread

end of thread, other threads:[~2026-05-04 12:44 UTC | newest]

Thread overview: 63+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-30 17:21 [PULL 00/58] Misc patches for 2026-04-30 Paolo Bonzini
2026-04-30 17:21 ` [PULL 02/58] target/arm/hvf, target/i386/hvf: Pass MR-relative offset to memory_region_set_dirty() Paolo Bonzini
2026-04-30 17:21 ` [PULL 03/58] target/i386/tcg: simplify decoding of 0F 38 F0...FF Paolo Bonzini
2026-04-30 17:21 ` [PULL 04/58] tests: add test for json-streamer.c error recovery Paolo Bonzini
2026-04-30 17:21 ` [PULL 05/58] kconfig: remove duplicate declaration of CONFIG_CXL Paolo Bonzini
2026-04-30 17:21 ` [PULL 06/58] kconfig: remove duplicate declaration of CONFIG_MIPS_BOSTON_AIA Paolo Bonzini
2026-05-04  6:28   ` Philippe Mathieu-Daudé
2026-05-04  7:08     ` Paolo Bonzini
2026-05-04  7:36       ` Philippe Mathieu-Daudé
2026-05-04  7:57         ` Paolo Bonzini
2026-04-30 17:21 ` [PULL 07/58] minikconf: run through isort Paolo Bonzini
2026-04-30 17:21 ` [PULL 08/58] minikconf: small cleanups and dead code removal Paolo Bonzini
2026-04-30 17:21 ` [PULL 09/58] minikconf: move command-line assignment out of the parser Paolo Bonzini
2026-04-30 17:21 ` [PULL 10/58] minikconf: fix type mismatch in do_declaration Paolo Bonzini
2026-04-30 17:21 ` [PULL 11/58] minikconf: simplify self.tok Paolo Bonzini
2026-04-30 17:21 ` [PULL 12/58] minikconf: modernize handling of include chain Paolo Bonzini
2026-04-30 17:21 ` [PULL 13/58] minikconf: use .items() Paolo Bonzini
2026-04-30 17:21 ` [PULL 14/58] minikconf: pull main program into a function Paolo Bonzini
2026-04-30 17:21 ` [PULL 15/58] minikconf: remove unnecessary semicolons Paolo Bonzini
2026-04-30 17:21 ` [PULL 16/58] minikconf: replace else with early return and avoid unnecessary else Paolo Bonzini
2026-04-30 17:21 ` [PULL 17/58] minikconf: add mypy annotations Paolo Bonzini
2026-04-30 17:21 ` [PULL 18/58] hw/qdev: Clarify fallback order in qdev_get_printable_name() Paolo Bonzini
2026-04-30 17:21 ` [PULL 19/58] hw/qdev: Prefix bus type in qdev_get_printable_name() device paths Paolo Bonzini
2026-04-30 17:21 ` [PULL 20/58] hw/qdev: Consolidate qdev_get_printable_name() into qdev_get_human_name() Paolo Bonzini
2026-04-30 17:21 ` [PULL 21/58] target/i386: add new AMD EPYC models for GMET enablement Paolo Bonzini
2026-04-30 17:21 ` [PULL 22/58] target/i386: add new Intel models for MMIO/GDS/RFDS mitigation status Paolo Bonzini
2026-04-30 17:21 ` [PULL 23/58] target/i386: add new Intel models for MBEC enablement Paolo Bonzini
2026-04-30 17:21 ` [PULL 24/58] whpx: i386: x2apic emulation Paolo Bonzini
2026-04-30 17:21 ` [PULL 25/58] whpx: i386: wire up feature probing Paolo Bonzini
2026-04-30 17:21 ` [PULL 26/58] whpx: i386: disable TbFlushHypercalls for emulated LAPIC Paolo Bonzini
2026-04-30 17:21 ` [PULL 27/58] whpx: i386: enable x2apic by default for user-mode LAPIC Paolo Bonzini
2026-04-30 17:21 ` [PULL 28/58] whpx: i386: reintroduce enlightenments for Windows 10 Paolo Bonzini
2026-04-30 17:21 ` [PULL 29/58] whpx: i386: introduce proper cpuid support Paolo Bonzini
2026-04-30 17:21 ` [PULL 30/58] whpx: i386: kernel-irqchip=off fixes Paolo Bonzini
2026-04-30 17:21 ` [PULL 31/58] whpx: i386: use WHvX64RegisterCr8 only when kernel-irqchip=off Paolo Bonzini
2026-04-30 17:21 ` [PULL 32/58] whpx: i386: disable kernel-irqchip on Windows 10 when PIC enabled Paolo Bonzini
2026-04-30 17:21 ` [PULL 33/58] whpx: i386: IO port fast path cleanup Paolo Bonzini
2026-04-30 17:21 ` [PULL 34/58] whpx: i386: disable enlightenments and LAPIC for isapc Paolo Bonzini
2026-04-30 17:21 ` [PULL 35/58] whpx: i386: interrupt priority support Paolo Bonzini
2026-04-30 17:21 ` [PULL 36/58] hw/intc: apic: disallow APIC reads when disabled Paolo Bonzini
2026-04-30 17:21 ` [PULL 37/58] whpx: i386: fix CPUID[1:EDX].APIC reporting Paolo Bonzini
2026-04-30 17:21 ` [PULL 38/58] whpx: i386: set apicbase value only on success Paolo Bonzini
2026-04-30 17:21 ` [PULL 39/58] whpx: i386: enable GuestIdleReg enlightenment Paolo Bonzini
2026-04-30 17:21 ` [PULL 40/58] whpx: i386: unknown MSR configurability Paolo Bonzini
2026-04-30 17:21 ` [PULL 41/58] whpx: i386: don't increment eip on MSR access raising GPF Paolo Bonzini
2026-04-30 17:21 ` [PULL 42/58] target/i386: emulate, hvf: rdmsr/wrmsr GPF handling Paolo Bonzini
2026-04-30 17:21 ` [PULL 43/58] whpx: i386: tighten APIC base validity check Paolo Bonzini
2026-04-30 17:21 ` [PULL 44/58] whpx: i386: ignore vpassist when kernel-irqchip=off Paolo Bonzini
2026-04-30 17:21 ` [PULL 45/58] target: i386: HLT type that ignores EFLAGS.IF Paolo Bonzini
2026-04-30 17:21 ` [PULL 46/58] whpx: i386: add HV_X64_MSR_GUEST_IDLE when !kernel-irqchip Paolo Bonzini
2026-04-30 17:21 ` [PULL 47/58] whpx: i386: some x2APIC awareness Paolo Bonzini
2026-04-30 17:21 ` [PULL 48/58] whpx: i386: set WHvX64RegisterInitialApicId Paolo Bonzini
2026-04-30 17:21 ` [PULL 49/58] whpx: i386: Pause VM on fatal exception to be able to inspect state Paolo Bonzini
2026-04-30 17:21 ` [PULL 50/58] target/i386: emulate: use exception_payload for fault address Paolo Bonzini
2026-04-30 17:21 ` [PULL 51/58] target/i386: make xsave_buf present unconditionally Paolo Bonzini
2026-04-30 17:21 ` [PULL 52/58] target/i386: add de/compaction to xsave_helper Paolo Bonzini
2026-04-30 17:21 ` [PULL 53/58] whpx: xsave support Paolo Bonzini
2026-04-30 17:22 ` [PULL 54/58] whpx: i386: set APIC ID only when APIC present Paolo Bonzini
2026-04-30 17:22 ` [PULL 55/58] whpx: i386: update migration blocker message Paolo Bonzini
2026-04-30 17:22 ` [PULL 56/58] whpx: i386: add feature to intercept #GP MSR accesses Paolo Bonzini
2026-04-30 17:22 ` [PULL 57/58] whpx: i386: add SeparateSecurityDomain flag and make default Paolo Bonzini
2026-04-30 17:22 ` [PULL 58/58] whpx: i386: documentation update Paolo Bonzini
2026-05-02 10:49 ` [PULL 00/58] Misc patches for 2026-04-30 Stefan Hajnoczi

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.