qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/13] Misc HW/UI patches for 2024-07-16
@ 2024-07-16 18:09 Philippe Mathieu-Daudé
  2024-07-16 18:09 ` [PULL 01/13] hw/core/loader: allow loading larger ROMs Philippe Mathieu-Daudé
                   ` (13 more replies)
  0 siblings, 14 replies; 20+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-07-16 18:09 UTC (permalink / raw)
  To: qemu-devel; +Cc: Philippe =?unknown-8bit?q?Mathieu-Daud=C3=A9?=

The following changes since commit 959269e910944c03bc13f300d65bf08b060d5d0f:

  Merge tag 'python-pull-request' of https://gitlab.com/jsnow/qemu into staging (2024-07-16 06:45:23 +1000)

are available in the Git repository at:

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

for you to fetch changes up to 644a52778a90581dbda909f38b9eaf71501fd9cd:

  system/physmem: use return value of ram_block_discard_require() as errno (2024-07-16 20:04:08 +0200)

Ignored checkpatch error:

  WARNING: line over 80 characters
  #30: FILE: system/vl.c:1004:
  +    if (!ti->class_names[0] || module_object_class_by_name(ti->class_names[0])) {

Ignored CI failures:

 - bios-tables-test on cross-i686-tci
 - qtest-sparc on msys2-64bit

----------------------------------------------------------------
Misc HW & UI patches queue

- Allow loading safely ROMs larger than 4GiB (Gregor)
- Convert vt82c686 IRQ as named 'intr' (Bernhard)
- Clarify QDev GPIO API (Peter)
- Drop unused load_image_gzipped function (Ani)
- Make TCGCPUOps::cpu_exec_interrupt handler mandatory (Peter)
- Factor cpu_pause() out (Nicholas)
- Remove transfer size check from ESP DMA DATA IN / OUT transfers (Mark)
- Add accelerated cursor composition to Cocoa UI (Akihiko)
- Fix '-vga help' CLI (Marc-André)
- Fix displayed errno in ram_block_add (Zhenzhong)

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

Akihiko Odaki (4):
  ui/cocoa: Release CGColorSpace
  ui/console: Convert mouse visibility parameter into bool
  ui/cocoa: Add cursor composition
  ui/console: Remove dpy_cursor_define_supported()

Ani Sinha (1):
  loader: remove load_image_gzipped function as its not used anywhere

Bernhard Beschow (1):
  hw/isa/vt82c686: Turn "intr" irq into a named gpio

Gregor Haas (1):
  hw/core/loader: allow loading larger ROMs

Marc-André Lureau (1):
  vl: fix "type is NULL" in -vga help

Mark Cave-Ayland (1):
  esp: remove transfer size check from DMA DATA IN and DATA OUT
    transfers

Nicholas Piggin (1):
  system/cpus: Add cpu_pause() function

Peter Maydell (2):
  include/hw/qdev-core.h: Correct and clarify gpio doc comments
  accel/tcg: Make cpu_exec_interrupt hook mandatory

Zhenzhong Duan (1):
  system/physmem: use return value of ram_block_discard_require() as
    errno

 meson.build             |   3 +-
 include/hw/core/cpu.h   |   8 ++++
 include/hw/loader.h     |   4 +-
 include/hw/qdev-core.h  |  17 +++----
 include/ui/console.h    |   5 +-
 accel/tcg/cpu-exec.c    |   4 +-
 hw/core/loader.c        |  45 +++--------------
 hw/display/ati.c        |   2 +-
 hw/display/qxl-render.c |   4 --
 hw/display/virtio-gpu.c |   3 +-
 hw/display/vmware_vga.c |   8 ++--
 hw/isa/vt82c686.c       |   2 +-
 hw/mips/fuloong2e.c     |   2 +-
 hw/ppc/amigaone.c       |   5 +-
 hw/ppc/pegasos2.c       |   4 +-
 hw/scsi/esp.c           |   4 +-
 system/cpus.c           |  30 +++++++-----
 system/physmem.c        |   7 ++-
 system/vl.c             |  13 +++--
 target/tricore/cpu.c    |   6 +++
 ui/console.c            |  18 ++-----
 ui/dbus-listener.c      |   2 +-
 ui/gtk.c                |   2 +-
 ui/sdl2.c               |   4 +-
 ui/spice-display.c      |  11 +++--
 ui/vnc.c                |   2 +-
 ui/cocoa.m              | 104 +++++++++++++++++++++++++++++++++++++++-
 27 files changed, 200 insertions(+), 119 deletions(-)

-- 
2.41.0



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

end of thread, other threads:[~2025-03-11 11:01 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-16 18:09 [PULL 00/13] Misc HW/UI patches for 2024-07-16 Philippe Mathieu-Daudé
2024-07-16 18:09 ` [PULL 01/13] hw/core/loader: allow loading larger ROMs Philippe Mathieu-Daudé
2024-07-16 18:09 ` [PULL 02/13] hw/isa/vt82c686: Turn "intr" irq into a named gpio Philippe Mathieu-Daudé
2024-07-16 18:09 ` [PULL 03/13] include/hw/qdev-core.h: Correct and clarify gpio doc comments Philippe Mathieu-Daudé
2024-07-16 18:09 ` [PULL 04/13] loader: remove load_image_gzipped function as its not used anywhere Philippe Mathieu-Daudé
2024-07-16 18:09 ` [PULL 05/13] accel/tcg: Make cpu_exec_interrupt hook mandatory Philippe Mathieu-Daudé
2024-07-16 18:09 ` [PULL 06/13] system/cpus: Add cpu_pause() function Philippe Mathieu-Daudé
2024-07-16 18:09 ` [PULL 07/13] esp: remove transfer size check from DMA DATA IN and DATA OUT transfers Philippe Mathieu-Daudé
2024-07-16 18:09 ` [PULL 08/13] ui/cocoa: Release CGColorSpace Philippe Mathieu-Daudé
2024-07-16 18:09 ` [PULL 09/13] ui/console: Convert mouse visibility parameter into bool Philippe Mathieu-Daudé
2024-07-16 18:09 ` [PULL 10/13] ui/cocoa: Add cursor composition Philippe Mathieu-Daudé
2024-07-16 18:09 ` [PULL 11/13] ui/console: Remove dpy_cursor_define_supported() Philippe Mathieu-Daudé
2024-10-29 12:30   ` Michael Tokarev
2024-10-29 14:04     ` Phil Dennis-Jordan
2025-01-09 13:58       ` Michael Weiser
2025-01-09 14:34         ` Hank Knox
2025-03-11 10:52           ` Michael Weiser
2024-07-16 18:09 ` [PULL 12/13] vl: fix "type is NULL" in -vga help Philippe Mathieu-Daudé
2024-07-16 18:09 ` [PULL 13/13] system/physmem: use return value of ram_block_discard_require() as errno Philippe Mathieu-Daudé
2024-07-17  5:41 ` [PULL 00/13] Misc HW/UI patches for 2024-07-16 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).