mbox

[PULL,00/13] Misc fixes for 2024-12-03

Message ID 20241203113140.63513-1-philmd@linaro.org
State New
Headers show

Pull-request

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

Message

Philippe Mathieu-Daudé Dec. 3, 2024, 11:31 a.m. UTC
The following changes since commit eb22a064455aeebc105cc89bf77f48aa18b52938:

  Merge tag 'pull-request-2024-12-02' of https://gitlab.com/thuth/qemu into staging (2024-12-02 16:16:15 +0000)

are available in the Git repository at:

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

for you to fetch changes up to 964d2a0cf8136cdafc07f6fd847ebf897965dc35:

  system: Select HVF by default when no other accelerator is available (2024-12-03 12:28:06 +0100)

----------------------------------------------------------------
Misc fixes for QEMU v9.2.0

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

Ahmad Fatoum (1):
  hw/openrisc/openrisc_sim: keep serial@90000000 as default

Bibo Mao (1):
  MAINTAINERS: add myself as the maintainer for LoongArch VirtMachine

Brian Cain (1):
  MAINTAINERS: update email addr for Brian Cain

Daniel P. Berrangé (4):
  hw/core/machine: diagnose wrapping of maxmem
  hw/virtio: fix crash in processing balloon stats
  tests/qtest: drop 'fuzz-' prefix from virtio-balloon test
  tests/qtest: add test for querying balloon guest stats

Joel Holdsworth (1):
  hw/openrisc: Fixed undercounting of TTCR in continuous mode

Peter Maydell (1):
  target/riscv: Avoid bad shift in riscv_cpu_do_interrupt()

Philippe Mathieu-Daudé (4):
  ui/cocoa: Temporarily ignore annoying deprecated declaration warnings
  meson: Add missing SDL dependency to system/main.c
  hw/display/vga: Do not reset 'big_endian_fb' in vga_common_reset()
  system: Select HVF by default when no other accelerator is available

 MAINTAINERS                            |  4 +-
 meson.build                            |  4 +-
 hw/core/machine.c                      | 10 ++++-
 hw/display/vga.c                       |  2 +-
 hw/openrisc/cputimer.c                 | 26 +++++++-----
 hw/openrisc/openrisc_sim.c             | 26 +++++++++---
 hw/virtio/virtio-balloon.c             | 16 +++++++-
 system/vl.c                            |  3 ++
 target/riscv/cpu_helper.c              |  8 ++--
 tests/qtest/fuzz-virtio-balloon-test.c | 37 -----------------
 tests/qtest/virtio-balloon-test.c      | 57 ++++++++++++++++++++++++++
 .mailmap                               |  2 +
 tests/qtest/meson.build                |  2 +-
 ui/cocoa.m                             |  5 +++
 14 files changed, 137 insertions(+), 65 deletions(-)
 delete mode 100644 tests/qtest/fuzz-virtio-balloon-test.c
 create mode 100644 tests/qtest/virtio-balloon-test.c

Comments

Peter Maydell Dec. 3, 2024, 4:49 p.m. UTC | #1
On Tue, 3 Dec 2024 at 11:32, Philippe Mathieu-Daudé <philmd@linaro.org> wrote:
>
> The following changes since commit eb22a064455aeebc105cc89bf77f48aa18b52938:
>
>   Merge tag 'pull-request-2024-12-02' of https://gitlab.com/thuth/qemu into staging (2024-12-02 16:16:15 +0000)
>
> are available in the Git repository at:
>
>   https://github.com/philmd/qemu.git tags/hw-misc-20241203
>
> for you to fetch changes up to 964d2a0cf8136cdafc07f6fd847ebf897965dc35:
>
>   system: Select HVF by default when no other accelerator is available (2024-12-03 12:28:06 +0100)
>
> ----------------------------------------------------------------
> Misc fixes for QEMU v9.2.0
>
> ----------------------------------------------------------------
>
> Ahmad Fatoum (1):
>   hw/openrisc/openrisc_sim: keep serial@90000000 as default
>
> Bibo Mao (1):
>   MAINTAINERS: add myself as the maintainer for LoongArch VirtMachine
>
> Brian Cain (1):
>   MAINTAINERS: update email addr for Brian Cain
>
> Daniel P. Berrangé (4):
>   hw/core/machine: diagnose wrapping of maxmem
>   hw/virtio: fix crash in processing balloon stats
>   tests/qtest: drop 'fuzz-' prefix from virtio-balloon test
>   tests/qtest: add test for querying balloon guest stats
>
> Joel Holdsworth (1):
>   hw/openrisc: Fixed undercounting of TTCR in continuous mode
>
> Peter Maydell (1):
>   target/riscv: Avoid bad shift in riscv_cpu_do_interrupt()
>
> Philippe Mathieu-Daudé (4):
>   ui/cocoa: Temporarily ignore annoying deprecated declaration warnings
>   meson: Add missing SDL dependency to system/main.c
>   hw/display/vga: Do not reset 'big_endian_fb' in vga_common_reset()
>   system: Select HVF by default when no other accelerator is available


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/9.2
for any user-visible changes.

-- PMM