qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/22] Misc HW patches for 2025-05-06
@ 2025-05-06 14:34 Philippe Mathieu-Daudé
  2025-05-06 14:34 ` [PULL 01/22] bsd-user: add option to enable plugins Philippe Mathieu-Daudé
                   ` (21 more replies)
  0 siblings, 22 replies; 26+ messages in thread
From: Philippe Mathieu-Daudé @ 2025-05-06 14:34 UTC (permalink / raw)
  To: qemu-devel; +Cc: Philippe Mathieu-Daudé

The following changes since commit a9e0c9c0f14e19d23443ac24c8080b4708d2eab8:

  Merge tag 'pull-9p-20250505' of https://github.com/cschoenebeck/qemu into staging (2025-05-05 11:26:59 -0400)

are available in the Git repository at:

  https://github.com/philmd/qemu.git tags/hw-misc-20250506

for you to fetch changes up to dc495b919f1d9d98e01aea22f545fdc7de07e28d:

  hw/isa/ich9: Remove stray empty comment (2025-05-06 16:32:02 +0200)

----------------------------------------------------------------
Misc HW patches

- Allow using plugins on BSD user-emulation
- Inline VMSTATE_CPU() macro
- Fix headear includes for HVF x86
- Build hw/hyperv/ files once
- Various typo fixed

----------------------------------------------------------------

Eric Auger (3):
  hw/pci/pcie_port: Fix pcie_slot_is_hotpluggbale_bus typo
  hw/acpi/ged: Fix wrong identation
  hw/i386/acpi-build: Fix build_append_notfication_callback typo

Gustavo Romero (6):
  qom/object: Fix typo in comment
  hw/core/machine: Fix indentation
  hw/i386/acpi-build: Update document reference
  hw/i386/acpi-build: Fix typo and grammar in comment
  hw/acpi/pcihp: Fix typo in function name
  hw/isa/ich9: Remove stray empty comment

Philippe Mathieu-Daudé (4):
  target/migration: Inline VMSTATE_CPU()
  target/i386/hvf: Include missing 'exec/target_page.h' header
  system/hvf: Avoid including 'cpu.h'
  system/hvf: Expose hvf_enabled() to common code

Pierrick Bouvier (8):
  bsd-user: add option to enable plugins
  hw/hyperv/hv-balloon-stub: common compilation unit
  hw/hyperv/hyperv.h: header cleanup
  hw/hyperv/vmbus: common compilation unit
  hw/hyperv/syndbg: common compilation unit
  hw/hyperv/balloon: common balloon compilation units
  hw/hyperv/hyperv_testdev: common compilation unit
  hw/hyperv/hyperv: common compilation unit

Steve Sistare (1):
  qom: Factor qom_resolve_path() out

 MAINTAINERS                     |  1 +
 hw/i386/acpi-build.h            |  2 +-
 include/hw/acpi/pcihp.h         |  2 +-
 include/hw/core/cpu.h           | 12 ------------
 include/hw/hyperv/hyperv.h      |  3 ++-
 include/system/hvf.h            | 17 +++++++++++------
 include/system/hvf_int.h        |  2 ++
 accel/stubs/hvf-stub.c          | 12 ++++++++++++
 bsd-user/main.c                 | 12 ++++++++++++
 hw/acpi/acpi-pci-hotplug-stub.c |  2 +-
 hw/acpi/generic_event_device.c  | 10 +++++-----
 hw/acpi/ich9.c                  |  2 +-
 hw/acpi/pcihp.c                 |  2 +-
 hw/acpi/piix4.c                 |  2 +-
 hw/core/machine.c               |  8 ++++----
 hw/hyperv/hyperv.c              |  3 ++-
 hw/hyperv/syndbg.c              |  9 ++++++---
 hw/hyperv/vmbus.c               |  2 +-
 hw/i386/acpi-build.c            | 10 +++++-----
 hw/isa/lpc_ich9.c               |  1 -
 hw/pci/pcie_port.c              |  4 ++--
 qom/object.c                    |  2 +-
 qom/qom-qmp-cmds.c              | 21 +++++++++++++++------
 target/alpha/machine.c          |  2 +-
 target/hppa/machine.c           |  2 +-
 target/i386/hvf/hvf.c           |  1 +
 target/microblaze/machine.c     |  2 +-
 target/openrisc/machine.c       |  2 +-
 accel/stubs/meson.build         |  1 +
 hw/hyperv/meson.build           | 11 ++++++-----
 30 files changed, 99 insertions(+), 63 deletions(-)
 create mode 100644 accel/stubs/hvf-stub.c

-- 
2.47.1



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

end of thread, other threads:[~2025-05-08  1:10 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-06 14:34 [PULL 00/22] Misc HW patches for 2025-05-06 Philippe Mathieu-Daudé
2025-05-06 14:34 ` [PULL 01/22] bsd-user: add option to enable plugins Philippe Mathieu-Daudé
2025-05-06 14:34 ` [PULL 02/22] qom: Factor qom_resolve_path() out Philippe Mathieu-Daudé
2025-05-06 14:34 ` [PULL 03/22] qom/object: Fix typo in comment Philippe Mathieu-Daudé
2025-05-06 14:34 ` [PULL 04/22] target/migration: Inline VMSTATE_CPU() Philippe Mathieu-Daudé
2025-05-06 14:34 ` [PULL 05/22] target/i386/hvf: Include missing 'exec/target_page.h' header Philippe Mathieu-Daudé
2025-05-07  6:35   ` Wei Liu
2025-05-07 11:20     ` Philippe Mathieu-Daudé
2025-05-08  1:09       ` Wei Liu
2025-05-06 14:34 ` [PULL 06/22] system/hvf: Avoid including 'cpu.h' Philippe Mathieu-Daudé
2025-05-06 14:34 ` [PULL 07/22] system/hvf: Expose hvf_enabled() to common code Philippe Mathieu-Daudé
2025-05-06 14:34 ` [PULL 08/22] hw/hyperv/hv-balloon-stub: common compilation unit Philippe Mathieu-Daudé
2025-05-06 14:34 ` [PULL 09/22] hw/hyperv/hyperv.h: header cleanup Philippe Mathieu-Daudé
2025-05-06 14:34 ` [PULL 10/22] hw/hyperv/vmbus: common compilation unit Philippe Mathieu-Daudé
2025-05-06 14:35 ` [PULL 11/22] hw/hyperv/syndbg: " Philippe Mathieu-Daudé
2025-05-06 14:35 ` [PULL 12/22] hw/hyperv/balloon: common balloon compilation units Philippe Mathieu-Daudé
2025-05-06 14:35 ` [PULL 13/22] hw/hyperv/hyperv_testdev: common compilation unit Philippe Mathieu-Daudé
2025-05-06 14:35 ` [PULL 14/22] hw/hyperv/hyperv: " Philippe Mathieu-Daudé
2025-05-06 14:35 ` [PULL 15/22] hw/core/machine: Fix indentation Philippe Mathieu-Daudé
2025-05-06 14:35 ` [PULL 16/22] hw/pci/pcie_port: Fix pcie_slot_is_hotpluggbale_bus typo Philippe Mathieu-Daudé
2025-05-06 14:35 ` [PULL 17/22] hw/acpi/ged: Fix wrong identation Philippe Mathieu-Daudé
2025-05-06 14:35 ` [PULL 18/22] hw/i386/acpi-build: Fix build_append_notfication_callback typo Philippe Mathieu-Daudé
2025-05-06 14:35 ` [PULL 19/22] hw/i386/acpi-build: Update document reference Philippe Mathieu-Daudé
2025-05-06 14:35 ` [PULL 20/22] hw/i386/acpi-build: Fix typo and grammar in comment Philippe Mathieu-Daudé
2025-05-06 14:35 ` [PULL 21/22] hw/acpi/pcihp: Fix typo in function name Philippe Mathieu-Daudé
2025-05-06 14:35 ` [PULL 22/22] hw/isa/ich9: Remove stray empty comment Philippe Mathieu-Daudé

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).