[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 00/22] Misc HW patches for 2024-07-02
From: |
Philippe Mathieu-Daudé |
Subject: |
[PULL 00/22] Misc HW patches for 2024-07-02 |
Date: |
Tue, 2 Jul 2024 07:00:50 +0200 |
The following changes since commit b6d32a06fc0984e537091cba08f2e1ed9f775d74:
Merge tag 'pull-trivial-patches' of https://gitlab.com/mjt0k/qemu into
staging (2024-06-30 16:12:24 -0700)
are available in the Git repository at:
https://github.com/philmd/qemu.git tags/hw-misc-20240702
for you to fetch changes up to f0936cbc1d42410ccd58c042bc26fa33a23a77d6:
Remove inclusion of hw/hw.h from files that don't need it (2024-07-02
06:58:48 +0200)
Ignored checkpatch warnings:
WARNING: line over 80 characters
#45: FILE: include/hw/boards.h:431:
+ * mc->desc = "QEMU " MACHINE_VER_STR(__VA_ARGS__) " Virtual
Machine"; \
#205: FILE: include/hw/boards.h:591:
+ prefix ## _machine_ ## major ## _ ## minor ## _ ## micro ## _ ## tag ##
_ ## sym
#40: FILE: hw/arm/virt.c:112:
+ mc->desc = "QEMU " MACHINE_VER_STR(__VA_ARGS__) " ARM Virtual
Machine"; \
#55: FILE: hw/s390x/s390-virtio-ccw.c:828:
+ mc->desc = "Virtual s390x machine (version "
MACHINE_VER_STR(__VA_ARGS__) ")"; \
#43: FILE: hw/m68k/virt.c:345:
+ mc->desc = "QEMU " MACHINE_VER_STR(__VA_ARGS__) " M68K Virtual
Machine"; \
----------------------------------------------------------------
Misc HW patches queue
- Prevent NULL deref in sPAPR network model (Oleg)
- Automatic deprecation of versioned machine types (Daniel)
- Correct 'dump-guest-core' property name in hint (Akihiko)
- Prevent IRQ leak in MacIO IDE model (Mark)
- Remove dead #ifdef'ry related to unsupported macOS 12.0 (Akihiko)
- Remove "hw/hw.h" where unnecessary (Thomas)
----------------------------------------------------------------
Akihiko Odaki (5):
system/physmem: Fix reference to dump-guest-core
hvf: Drop ifdef for macOS versions older than 12.0
audio: Drop ifdef for macOS versions older than 12.0
block/file-posix: Drop ifdef for macOS versions older than 12.0
net/vmnet: Drop ifdef for macOS versions older than 12.0
Daniel P. Berrangé (14):
include/hw: add helpers for defining versioned machine types
hw/arm: convert 'virt' machine definitions to use new macros
hw/s390x: convert 'ccw' machine definitions to use new macros
hw/ppc: convert 'spapr' machine definitions to use new macros
hw/m68k: convert 'virt' machine definitions to use new macros
hw/i386: convert 'i440fx' machine definitions to use new macros
hw/i386: convert 'q35' machine definitions to use new macros
include/hw: add macros for deprecation & removal of versioned machines
include/hw: temporarily disable deletion of versioned machine types
hw: set deprecation info for all versioned machine types
hw: skip registration of outdated versioned machine types
hw/ppc: remove obsolete manual deprecation reason string of spapr
machines
hw/i386: remove obsolete manual deprecation reason string of i440fx
machines
docs: document special exception for machine type deprecation &
removal
Mark Cave-Ayland (1):
hw/ide/macio: switch from using qemu_allocate_irq() to qdev input
GPIOs
Oleg Sviridov (1):
hw/net/spapr: prevent potential NULL dereference
Thomas Huth (1):
Remove inclusion of hw/hw.h from files that don't need it
docs/about/deprecated.rst | 13 ++
include/hw/boards.h | 298 ++++++++++++++++++++++++++++++++++
include/hw/i386/pc.h | 28 ++++
include/hw/misc/macio/macio.h | 7 +-
include/hw/misc/xlnx-cfi-if.h | 1 -
accel/hvf/hvf-all.c | 3 -
block/file-posix.c | 5 -
hw/arm/virt.c | 34 ++--
hw/i386/pc_piix.c | 220 +++++++++++--------------
hw/i386/pc_q35.c | 215 ++++++++++--------------
hw/ide/macio.c | 10 +-
hw/m68k/virt.c | 57 ++++---
hw/misc/edu.c | 1 -
hw/net/spapr_llan.c | 6 +
hw/ppc/spapr.c | 100 +++++++-----
hw/s390x/s390-virtio-ccw.c | 102 +++++++-----
hw/vfio/container.c | 1 -
net/vmnet-host.c | 24 +--
net/vmnet-shared.c | 13 --
system/physmem.c | 2 +-
target/i386/hvf/hvf.c | 23 +--
audio/coreaudio.m | 5 -
net/vmnet-bridged.m | 13 +-
net/vmnet-common.m | 3 -
24 files changed, 710 insertions(+), 474 deletions(-)
--
2.41.0
- [PULL 00/22] Misc HW patches for 2024-07-02,
Philippe Mathieu-Daudé <=
- [PULL 01/22] hw/net/spapr: prevent potential NULL dereference, Philippe Mathieu-Daudé, 2024/07/02
- [PULL 02/22] include/hw: add helpers for defining versioned machine types, Philippe Mathieu-Daudé, 2024/07/02
- [PULL 04/22] hw/s390x: convert 'ccw' machine definitions to use new macros, Philippe Mathieu-Daudé, 2024/07/02
- [PULL 05/22] hw/ppc: convert 'spapr' machine definitions to use new macros, Philippe Mathieu-Daudé, 2024/07/02
- [PULL 06/22] hw/m68k: convert 'virt' machine definitions to use new macros, Philippe Mathieu-Daudé, 2024/07/02
- [PULL 03/22] hw/arm: convert 'virt' machine definitions to use new macros, Philippe Mathieu-Daudé, 2024/07/02
- [PULL 07/22] hw/i386: convert 'i440fx' machine definitions to use new macros, Philippe Mathieu-Daudé, 2024/07/02
- [PULL 08/22] hw/i386: convert 'q35' machine definitions to use new macros, Philippe Mathieu-Daudé, 2024/07/02
- [PULL 09/22] include/hw: add macros for deprecation & removal of versioned machines, Philippe Mathieu-Daudé, 2024/07/02
- [PULL 10/22] include/hw: temporarily disable deletion of versioned machine types, Philippe Mathieu-Daudé, 2024/07/02