mbox

[PULL,0/6] Misc fixes for 2023-03-30

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

Pull-request

https://github.com/philmd/qemu.git tags/misc-fixes-20230330

Message

Philippe Mathieu-Daudé March 30, 2023, 1:18 p.m. UTC
The following changes since commit f00506aeca2f6d92318967693f8da8c713c163f3:

  Merge tag 'pull-tcg-20230328' of https://gitlab.com/rth7680/qemu into staging (2023-03-29 11:19:19 +0100)

are available in the Git repository at:

  https://github.com/philmd/qemu.git tags/misc-fixes-20230330

for you to fetch changes up to aad3eb1ffeb65205153fb31d81d4f268186cde7a:

  block/dmg: Ignore C99 prototype declaration mismatch from <lzfse.h> (2023-03-30 15:03:36 +0200)

----------------------------------------------------------------
- linux-user:
  . Don't use 16-bit UIDs with SPARC V9
  . Pick MIPS3 CPU by default to run NaN2008 ELF binaries

- HW:
  . Fix invalid GT64120 north bridge endianness register swap
  . Prevent NULL pointer dereference by SMBus devices

- Buildsys:
  . Fix compiling with liblzfse on Darwin

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

Jiaxun Yang (1):
  hw/mips/gt64xxx_pci: Don't endian-swap GT_PCI0_CFGADDR

Philippe Mathieu-Daudé (4):
  linux-user/sparc: Don't use 16-bit UIDs on SPARC V9
  linux-user/mips: Use P5600 as default CPU to run NaN2008 ELF binaries
  tests/avocado: Enable TuxRun/mips64 (big-endian) test
  block/dmg: Ignore C99 prototype declaration mismatch from <lzfse.h>

Titus Rwantare (1):
  hw/i2c: pmbus: block uninitialised string reads

 linux-user/mips/target_elf.h      |  3 +++
 linux-user/syscall_defs.h         |  2 +-
 block/dmg-lzfse.c                 |  5 +++++
 hw/i2c/pmbus_device.c             |  7 +++++++
 hw/pci-host/gt64120.c             | 18 ++++++------------
 tests/avocado/tuxrun_baselines.py |  1 -
 6 files changed, 22 insertions(+), 14 deletions(-)

Comments

Peter Maydell March 31, 2023, 11:59 a.m. UTC | #1
On Thu, 30 Mar 2023 at 14:19, Philippe Mathieu-Daudé <philmd@linaro.org> wrote:
>
> The following changes since commit f00506aeca2f6d92318967693f8da8c713c163f3:
>
>   Merge tag 'pull-tcg-20230328' of https://gitlab.com/rth7680/qemu into staging (2023-03-29 11:19:19 +0100)
>
> are available in the Git repository at:
>
>   https://github.com/philmd/qemu.git tags/misc-fixes-20230330
>
> for you to fetch changes up to aad3eb1ffeb65205153fb31d81d4f268186cde7a:
>
>   block/dmg: Ignore C99 prototype declaration mismatch from <lzfse.h> (2023-03-30 15:03:36 +0200)
>
> ----------------------------------------------------------------
> - linux-user:
>   . Don't use 16-bit UIDs with SPARC V9
>   . Pick MIPS3 CPU by default to run NaN2008 ELF binaries
>
> - HW:
>   . Fix invalid GT64120 north bridge endianness register swap
>   . Prevent NULL pointer dereference by SMBus devices
>
> - Buildsys:
>   . Fix compiling with liblzfse on Darwin
>


Applied, thanks.

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

-- PMM