qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/22] Misc HW patches for 2024-07-02
@ 2024-07-02  5:00 Philippe Mathieu-Daudé
  2024-07-02  5:00 ` [PULL 01/22] hw/net/spapr: prevent potential NULL dereference Philippe Mathieu-Daudé
                   ` (22 more replies)
  0 siblings, 23 replies; 24+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-07-02  5:00 UTC (permalink / raw)
  To: qemu-devel; +Cc: Philippe =?unknown-8bit?q?Mathieu-Daud=C3=A9?=

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



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

end of thread, other threads:[~2024-07-02 16:51 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-02  5:00 [PULL 00/22] Misc HW patches for 2024-07-02 Philippe Mathieu-Daudé
2024-07-02  5:00 ` [PULL 01/22] hw/net/spapr: prevent potential NULL dereference Philippe Mathieu-Daudé
2024-07-02  5:00 ` [PULL 02/22] include/hw: add helpers for defining versioned machine types Philippe Mathieu-Daudé
2024-07-02  5:00 ` [PULL 03/22] hw/arm: convert 'virt' machine definitions to use new macros Philippe Mathieu-Daudé
2024-07-02  5:00 ` [PULL 04/22] hw/s390x: convert 'ccw' " Philippe Mathieu-Daudé
2024-07-02  5:00 ` [PULL 05/22] hw/ppc: convert 'spapr' " Philippe Mathieu-Daudé
2024-07-02  5:00 ` [PULL 06/22] hw/m68k: convert 'virt' " Philippe Mathieu-Daudé
2024-07-02  5:00 ` [PULL 07/22] hw/i386: convert 'i440fx' " Philippe Mathieu-Daudé
2024-07-02  5:00 ` [PULL 08/22] hw/i386: convert 'q35' " Philippe Mathieu-Daudé
2024-07-02  5:00 ` [PULL 09/22] include/hw: add macros for deprecation & removal of versioned machines Philippe Mathieu-Daudé
2024-07-02  5:01 ` [PULL 10/22] include/hw: temporarily disable deletion of versioned machine types Philippe Mathieu-Daudé
2024-07-02  5:01 ` [PULL 11/22] hw: set deprecation info for all " Philippe Mathieu-Daudé
2024-07-02  5:01 ` [PULL 12/22] hw: skip registration of outdated " Philippe Mathieu-Daudé
2024-07-02  5:01 ` [PULL 13/22] hw/ppc: remove obsolete manual deprecation reason string of spapr machines Philippe Mathieu-Daudé
2024-07-02  5:01 ` [PULL 14/22] hw/i386: remove obsolete manual deprecation reason string of i440fx machines Philippe Mathieu-Daudé
2024-07-02  5:01 ` [PULL 15/22] docs: document special exception for machine type deprecation & removal Philippe Mathieu-Daudé
2024-07-02  5:01 ` [PULL 16/22] system/physmem: Fix reference to dump-guest-core Philippe Mathieu-Daudé
2024-07-02  5:01 ` [PULL 17/22] hw/ide/macio: switch from using qemu_allocate_irq() to qdev input GPIOs Philippe Mathieu-Daudé
2024-07-02  5:01 ` [PULL 18/22] hvf: Drop ifdef for macOS versions older than 12.0 Philippe Mathieu-Daudé
2024-07-02  5:01 ` [PULL 19/22] audio: " Philippe Mathieu-Daudé
2024-07-02  5:01 ` [PULL 20/22] block/file-posix: " Philippe Mathieu-Daudé
2024-07-02  5:01 ` [PULL 21/22] net/vmnet: " Philippe Mathieu-Daudé
2024-07-02  5:01 ` [PULL 22/22] Remove inclusion of hw/hw.h from files that don't need it Philippe Mathieu-Daudé
2024-07-02 16:50 ` [PULL 00/22] Misc HW patches for 2024-07-02 Richard Henderson

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