Branch: refs/heads/staging
  Home:   https://github.com/qemu/qemu
  Commit: 7bfd6c0e09971b3e85425750762e8041e791ee22
      
https://github.com/qemu/qemu/commit/7bfd6c0e09971b3e85425750762e8041e791ee22
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-07 (Wed, 07 Jan 2026)

  Changed paths:
    M hw/arm/boot.c
    M hw/core/loader.c
    M hw/riscv/spike.c
    M include/hw/core/loader.h

  Log Message:
  -----------
  hw/core/loader: Make load_elf_hdr() return bool, simplify caller

Signed-off-by: Markus Armbruster <[email protected]>
Message-ID: <[email protected]>
Reviewed-by: Richard Henderson <[email protected]>
Reviewed-by: Vladimir Sementsov-Ogievskiy <[email protected]>
Reviewed-by: Peter Xu <[email protected]>
Reviewed-by: Daniel Henrique Barboza <[email protected]>
Reviewed-by: Zhao Liu <[email protected]>


  Commit: 51cd475682ce3e3b7ce386d85bc81f3b4a30fd36
      
https://github.com/qemu/qemu/commit/51cd475682ce3e3b7ce386d85bc81f3b4a30fd36
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-07 (Wed, 07 Jan 2026)

  Changed paths:
    M hw/nvram/xlnx-bbram.c

  Log Message:
  -----------
  hw/nvram/xlnx-bbram: More idiomatic and simpler error reporting

bbram_bdrv_error() interpolates a "detail" string into a template with
error_setg_errno(), then reports the result with error_report().
Produces error messages with an unwanted '.':

    BLK-NAME: BBRAM backstore DETAIL failed.: STERROR

Replace both calls of bbram_bdrv_error() by straightforward
error_report(), and drop the function.  This is less code, easier to
read, and the error message is more greppable.

Also delete the unwanted '.'.

Signed-off-by: Markus Armbruster <[email protected]>
Message-ID: <[email protected]>
Reviewed-by: Vladimir Sementsov-Ogievskiy <[email protected]>
Reviewed-by: Peter Xu <[email protected]>
Reviewed-by: Luc Michel <[email protected]>
Reviewed-by: Zhao Liu <[email protected]>


  Commit: cfd5d4eafbff19779e9aed4a6683cebcac44b0c8
      
https://github.com/qemu/qemu/commit/cfd5d4eafbff19779e9aed4a6683cebcac44b0c8
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-07 (Wed, 07 Jan 2026)

  Changed paths:
    M nbd/client-connection.c

  Log Message:
  -----------
  nbd/client-connection: Replace error_propagate() by assignment

connect_thread_func() sets a variable to null, then error_propagate()s
an Error * to it.  This is a roundabout way to assign the Error * to
it, so replace it by just that.

Signed-off-by: Markus Armbruster <[email protected]>
Message-ID: <[email protected]>
Reviewed-by: Vladimir Sementsov-Ogievskiy <[email protected]>
Reviewed-by: Peter Xu <[email protected]>
Reviewed-by: Zhao Liu <[email protected]>


  Commit: a4cda041072e7c6241878260644082781cd1e733
      
https://github.com/qemu/qemu/commit/a4cda041072e7c6241878260644082781cd1e733
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-07 (Wed, 07 Jan 2026)

  Changed paths:
    M hw/acpi/pcihp.c
    M io/channel-websock.c
    M io/task.c
    M migration/migration.c
    M tests/unit/test-smp-parse.c

  Log Message:
  -----------
  error: error_free(NULL) is safe, drop unnecessary conditionals

Signed-off-by: Markus Armbruster <[email protected]>
Message-ID: <[email protected]>
Reviewed-by: Richard Henderson <[email protected]>
Reviewed-by: Vladimir Sementsov-Ogievskiy <[email protected]>
Reviewed-by: Peter Xu <[email protected]>
Reviewed-by: Zhao Liu <[email protected]>


  Commit: 19552884e4b73e5aa2dc2ff9d03c7bb5075595e0
      
https://github.com/qemu/qemu/commit/19552884e4b73e5aa2dc2ff9d03c7bb5075595e0
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-07 (Wed, 07 Jan 2026)

  Changed paths:
    M block/crypto.c
    M hw/acpi/ghes.c
    M hw/ppc/spapr.c
    M hw/xen/xen-pvh-common.c
    M nbd/common.c

  Log Message:
  -----------
  error: Consistently name Error * objects err, and not errp

This touches code in xen_enable_tpm() that is obviously wrong.  Since
I don't know how to fix it properly, I'm adding a FIXME there.

Signed-off-by: Markus Armbruster <[email protected]>
Message-ID: <[email protected]>
Reviewed-by: Zhao Liu <[email protected]>


  Commit: 13837193fa6f4146a77491488f657a009355592d
      
https://github.com/qemu/qemu/commit/13837193fa6f4146a77491488f657a009355592d
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-07 (Wed, 07 Jan 2026)

  Changed paths:
    M hw/audio/es1370.c
    M ui/gtk.c

  Log Message:
  -----------
  error: Strip trailing '\n' from error string arguments (again)

Tracked down with scripts/coccinelle/err-bad-newline.cocci.

Signed-off-by: Markus Armbruster <[email protected]>
Message-ID: <[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>


  Commit: 5657d9b60ae106f06fd54bc70e3bb6f4be44581e
      
https://github.com/qemu/qemu/commit/5657d9b60ae106f06fd54bc70e3bb6f4be44581e
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-07 (Wed, 07 Jan 2026)

  Changed paths:
    M ui/ui-qmp-cmds.c

  Log Message:
  -----------
  ui: Convert to qemu_create() for simplicity and consistency

The error message changes from

    failed to open file 'FILENAME': REASON

to

    Could not create 'FILENAME': REASON

Signed-off-by: Markus Armbruster <[email protected]>
Message-ID: <[email protected]>


  Commit: 7a6665350b3049e2813e22603c03eda0d2dfe680
      
https://github.com/qemu/qemu/commit/7a6665350b3049e2813e22603c03eda0d2dfe680
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-07 (Wed, 07 Jan 2026)

  Changed paths:
    M net/tap-solaris.c

  Log Message:
  -----------
  tap-solaris: Use error_setg_file_open() for better error messages

Error messages change from

    Can't open /dev/ip (actually /dev/udp)
    Can't open /dev/tap
    Can't open /dev/tap (2)

to

    Could not open '/dev/udp': REASON
    Could not open '/dev/tap': REASON

where REASON is the value of strerror(errno).

Signed-off-by: Markus Armbruster <[email protected]>
Reviewed-by: Dr. David Alan Gilbert <[email protected]>
Message-ID: <[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>


  Commit: 578988e68458ebb77f4263dca12100f8803ed30c
      
https://github.com/qemu/qemu/commit/578988e68458ebb77f4263dca12100f8803ed30c
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-07 (Wed, 07 Jan 2026)

  Changed paths:
    M qga/commands-linux.c

  Log Message:
  -----------
  qga: Use error_setg_file_open() for better error messages

Error messages change from

    open("FNAME"): REASON

to

    Could not open 'FNAME': REASON

Signed-off-by: Markus Armbruster <[email protected]>
Reviewed-by: Dr. David Alan Gilbert <[email protected]>
Reviewed-by: Kostiantyn Kostiuk <[email protected]>
Message-ID: <[email protected]>


  Commit: aca71942848eca70de8710293d49636daf45a424
      
https://github.com/qemu/qemu/commit/aca71942848eca70de8710293d49636daf45a424
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-07 (Wed, 07 Jan 2026)

  Changed paths:
    M net/tap.c

  Log Message:
  -----------
  net/tap: Use error_setg_file_open() for a better error message

The error message changes from

    tap: open vhost char device failed

to

    Could not open '/dev/vhost-net': REASON

I think the exact file name is more useful to know than the file's
purpose.

We could put back the "tap: " prefix with error_prepend().  Not
worth the bother.

Signed-off-by: Markus Armbruster <[email protected]>
Message-ID: <[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>


  Commit: 9c3a66f5c40ddf2d45b449459162651cb0126a33
      
https://github.com/qemu/qemu/commit/9c3a66f5c40ddf2d45b449459162651cb0126a33
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-07 (Wed, 07 Jan 2026)

  Changed paths:
    M block/blkdebug.c

  Log Message:
  -----------
  blkdebug: Use error_setg_file_open() for a better error message

The error message changes from

    Could not read blkdebug config file: REASON

to

    Could not open 'FNAME': REASON

I think the exact file name is more useful to know than the file's
purpose.

Signed-off-by: Markus Armbruster <[email protected]>
Message-ID: <[email protected]>


  Commit: d84870f2b899e57193cdfd4d34cb6a5c2f9fc586
      
https://github.com/qemu/qemu/commit/d84870f2b899e57193cdfd4d34cb6a5c2f9fc586
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-07 (Wed, 07 Jan 2026)

  Changed paths:
    M hw/9pfs/9p-local.c
    M hw/acpi/core.c
    M hw/core/loader.c
    M hw/pci-host/xen_igd_pt.c
    M monitor/hmp-cmds.c
    M net/dump.c
    M net/tap-bsd.c
    M net/tap-linux.c
    M target/i386/sev.c
    M util/vfio-helpers.c

  Log Message:
  -----------
  error: Use error_setg_file_open() for simplicity and consistency

Replace

    error_setg_errno(errp, errno, MSG, FNAME);

by

    error_setg_file_open(errp, errno, FNAME);

where MSG is "Could not open '%s'" or similar.

Also replace equivalent uses of error_setg().

A few messages lose prefixes ("net dump: ", "SEV: ", __func__ ": ").
We could put them back with error_prepend().  Not worth the bother.

Signed-off-by: Markus Armbruster <[email protected]>
Reviewed-by: Dr. David Alan Gilbert <[email protected]>
Message-ID: <[email protected]>
[Conflict with commit 26b4a6ffe7f (monitor/hmp: Merge
hmp-cmds-target.c within hmp-cmds.c) resolved]


  Commit: 42cfc68b0ebf6ea692e00d2788fcf64f5c3c1e83
      
https://github.com/qemu/qemu/commit/42cfc68b0ebf6ea692e00d2788fcf64f5c3c1e83
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-07 (Wed, 07 Jan 2026)

  Changed paths:
    M net/slirp.c

  Log Message:
  -----------
  net/slirp: Improve file open error message

This error reports failure to create a temporary file, and
error_setg_file_open() would probably be too terse, so merely switch
to error_setg_errno() to add errno information.

Signed-off-by: Markus Armbruster <[email protected]>
Message-ID: <[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>


  Commit: b351b49275fc0314d30a11fc8caee5af8ea968d8
      
https://github.com/qemu/qemu/commit/b351b49275fc0314d30a11fc8caee5af8ea968d8
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-08 (Thu, 08 Jan 2026)

  Changed paths:
    M backends/cryptodev-lkcf.c
    M hw/ppc/spapr.c
    M hw/vfio/migration-multifd.c
    M migration/rdma.c
    M net/l2tpv3.c
    M target/riscv/kvm/kvm-cpu.c

  Log Message:
  -----------
  error: Use error_setg_errno() to improve error messages

A few error messages show numeric errno codes.  Use error_setg_errno()
to show human-readable text instead.

Signed-off-by: Markus Armbruster <[email protected]>
Message-ID: <[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
[Trivial fixup to riscv_kvm_cpu_finalize_features()]


  Commit: 0223e792871b42c3548104d37ac518103c7d732b
      
https://github.com/qemu/qemu/commit/0223e792871b42c3548104d37ac518103c7d732b
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-08 (Thu, 08 Jan 2026)

  Changed paths:
    M backends/spdm-socket.c
    M backends/tpm/tpm_emulator.c
    M hw/9pfs/9p.c
    M hw/acpi/core.c
    M hw/intc/openpic_kvm.c
    M hw/intc/xics_kvm.c
    M hw/remote/vfio-user-obj.c
    M hw/sensor/emc141x.c
    M hw/sensor/tmp421.c
    M hw/smbios/smbios.c
    M hw/virtio/vdpa-dev.c
    M migration/postcopy-ram.c
    M net/slirp.c
    M qga/commands-posix-ssh.c
    M system/vl.c
    M target/ppc/kvm.c

  Log Message:
  -----------
  error: Use error_setg_errno() for simplicity and consistency

Use error_setg_errno() instead of passing the value of strerror() or
g_strerror() to error_setg().

The separator between the error message proper and the value of
strerror() changes from " : ", "", " - ", "- " to ": " in places.

Signed-off-by: Markus Armbruster <[email protected]>
Message-ID: <[email protected]>
Acked-by: Jagannathan Raman <[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>


  Commit: 3ec33970987dd188c011512da8fb7367428d5a86
      
https://github.com/qemu/qemu/commit/3ec33970987dd188c011512da8fb7367428d5a86
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-08 (Thu, 08 Jan 2026)

  Changed paths:
    M qga/commands-win32.c

  Log Message:
  -----------
  qga/commands-win32: Use error_setg_win32() for better error messages

We include numeric GetLastError() codes in error messages in a few
places, like this:

    error_setg(errp, "GRIPE: %d", (int)GetLastError());

Show text instead, like this:

    error_setg_win32(errp, GetLastError(), "GRIPE");

Signed-off-by: Markus Armbruster <[email protected]>
Message-ID: <[email protected]>
Reviewed-by: Kostiantyn Kostiuk <[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>


  Commit: 1f674a2b7aabb49d5a8308ef3949b2bb2fd70281
      
https://github.com/qemu/qemu/commit/1f674a2b7aabb49d5a8308ef3949b2bb2fd70281
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-08 (Thu, 08 Jan 2026)

  Changed paths:
    M block/file-win32.c

  Log Message:
  -----------
  block/file-win32: Improve an error message

Two out of three calls of CreateFile() use error_setg_win32() to
report errors.  The third uses error_setg_errno(), mapping
ERROR_ACCESS_DENIED to EACCES, and everything else to EINVAL, throwing
away detail.  Switch it to error_setg_win32().

Signed-off-by: Markus Armbruster <[email protected]>
Message-ID: <[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>


  Commit: e0422713b5fa5e44e474f020ff9ea11fec75a743
      
https://github.com/qemu/qemu/commit/e0422713b5fa5e44e474f020ff9ea11fec75a743
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-08 (Thu, 08 Jan 2026)

  Changed paths:
    M MAINTAINERS

  Log Message:
  -----------
  MAINTAINERS: Fix coverage of tests/functional/acpi-bits/

The pattern tests/functional/acpi-bits/* covers files in
acpi-bits/ (there are none), but not the files in its
subdirectories (there are five).  Drop the *.

Signed-off-by: Markus Armbruster <[email protected]>
Message-ID: <[email protected]>
Reviewed-by: Thomas Huth <[email protected]>


  Commit: 7e3bfed7ac5b8f763187e953302aaf37fa021407
      
https://github.com/qemu/qemu/commit/7e3bfed7ac5b8f763187e953302aaf37fa021407
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-08 (Thu, 08 Jan 2026)

  Changed paths:
    M MAINTAINERS

  Log Message:
  -----------
  MAINTAINERS: Fix coverage of meson.build in tests/functional

Of the 29 meson.build wihin tests/functional, only 8 are covered.  Add
the architecture-independent ones to "Functional testing framework",
and the remainder to "$arcg general architecture support" when
available, else to "$arch TCG CPUs".

Signed-off-by: Markus Armbruster <[email protected]>
Message-ID: <[email protected]>
Reviewed-by: Thomas Huth <[email protected]>


  Commit: 2c52c35eb2edab16374ec8fc37143b95a16dd0e7
      
https://github.com/qemu/qemu/commit/2c52c35eb2edab16374ec8fc37143b95a16dd0e7
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-08 (Thu, 08 Jan 2026)

  Changed paths:
    M MAINTAINERS

  Log Message:
  -----------
  MAINTAINERS: Add EEPROM 93xx section

Stefan Weil volunteered to serve as maintainer.  Thanks!

Cc: Stefan Weil <[email protected]>
Signed-off-by: Markus Armbruster <[email protected]>
Signed-off-by: Stefan Weil <[email protected]>
Message-ID: <[email protected]>
Reviewed-by: Thomas Huth <[email protected]>


  Commit: bfb8ab8370c6cbbb74fc55b4587ca83c71e623f6
      
https://github.com/qemu/qemu/commit/bfb8ab8370c6cbbb74fc55b4587ca83c71e623f6
  Author: Markus Armbruster <[email protected]>
  Date:   2026-01-08 (Thu, 08 Jan 2026)

  Changed paths:
    M MAINTAINERS

  Log Message:
  -----------
  MAINTAINERS: Add MAX78000FTHR section as orphan

This machine was contributed by Jackson Donaldson a couple of months
ago.  Its RISC-V core is not implemented.  Unfortunately, Jackson
isn't able to serve as maintainer at this time, so add it as orphan.

Cc: Jackson Donaldson <[email protected]>
Cc: [email protected]
Signed-off-by: Markus Armbruster <[email protected]>
Message-ID: <[email protected]>
Reviewed-by: Thomas Huth <[email protected]>


  Commit: fa59d71d570e54ebd943840330c442338b399166
      
https://github.com/qemu/qemu/commit/fa59d71d570e54ebd943840330c442338b399166
  Author: Richard Henderson <[email protected]>
  Date:   2026-01-08 (Thu, 08 Jan 2026)

  Changed paths:
    M backends/cryptodev-lkcf.c
    M backends/spdm-socket.c
    M backends/tpm/tpm_emulator.c
    M block/blkdebug.c
    M block/crypto.c
    M block/file-win32.c
    M hw/9pfs/9p-local.c
    M hw/9pfs/9p.c
    M hw/acpi/core.c
    M hw/acpi/ghes.c
    M hw/acpi/pcihp.c
    M hw/arm/boot.c
    M hw/audio/es1370.c
    M hw/core/loader.c
    M hw/intc/openpic_kvm.c
    M hw/intc/xics_kvm.c
    M hw/nvram/xlnx-bbram.c
    M hw/pci-host/xen_igd_pt.c
    M hw/ppc/spapr.c
    M hw/remote/vfio-user-obj.c
    M hw/riscv/spike.c
    M hw/sensor/emc141x.c
    M hw/sensor/tmp421.c
    M hw/smbios/smbios.c
    M hw/vfio/migration-multifd.c
    M hw/virtio/vdpa-dev.c
    M hw/xen/xen-pvh-common.c
    M include/hw/core/loader.h
    M io/channel-websock.c
    M io/task.c
    M migration/migration.c
    M migration/postcopy-ram.c
    M migration/rdma.c
    M monitor/hmp-cmds.c
    M nbd/client-connection.c
    M nbd/common.c
    M net/dump.c
    M net/l2tpv3.c
    M net/slirp.c
    M net/tap-bsd.c
    M net/tap-linux.c
    M net/tap-solaris.c
    M net/tap.c
    M qga/commands-linux.c
    M qga/commands-posix-ssh.c
    M qga/commands-win32.c
    M system/vl.c
    M target/i386/sev.c
    M target/ppc/kvm.c
    M target/riscv/kvm/kvm-cpu.c
    M tests/unit/test-smp-parse.c
    M ui/gtk.c
    M ui/ui-qmp-cmds.c
    M util/vfio-helpers.c

  Log Message:
  -----------
  Merge tag 'pull-error-2026-01-07-v2' of https://repo.or.cz/qemu/armbru into 
staging

Error reporting patches for 2026-01-07

# -----BEGIN PGP SIGNATURE-----
#
# iQJGBAABCgAwFiEENUvIs9frKmtoZ05fOHC0AOuRhlMFAmlfU/wSHGFybWJydUBy
# ZWRoYXQuY29tAAoJEDhwtADrkYZToiUP/RW1I1wFyescGOpUxBjlXqbkgZvrdRbL
# BxtTcoCW0q/cc1Fv3CSYZMm+vvwWJyAysnYONDu6ldDl9ojKfGT/gi1Tgp/99/r4
# bgLbAvExRbbyPOkPBtoXCYeobmgaDP9pMHHlVcdFQrW9hmQiEl4QSWPImmNrKEk2
# gV9SZJ737k9n5dq4XLbqlHXKspn4lWiUE9hbHIUrKWZDn0LDdr5z2wkjhZCmuCR2
# mRSgJhc68Lnb1LdBdRo/5PlG6Hw3jvLat4+q+42teN/aI6zJbD9yKocgaGtubVv1
# h4ntJPMvDKD7DRZF06k8crpLMXJjZFztVr30XBE/e7wG+xY34+3tho3iCQN1vTFe
# RBJne0FaRPGSNYpF8Tj7lPIr0kduqk3/lOQ9HPobTroIPTrCcRXbdOeQ/Ed/Cjrk
# suh8t4OGmy0ThcsUsAajSjPDw2aFlitCS4pWNaSctTvR7V+2trol+WS2QO4My0MX
# 4Z3BnOHBnhE/xo+22T4FW3NvNcFKsQ5Tlq6mjjAgFJ/guaJ2TbMFe/Pm9TtzcPHj
# 7mhBBvKStNWFrQz66z7+hxJhOuOEmON8i4coADDPTUWmcICCyjtJW5m5f+PoYYHr
# LpFwIFHWuKtSAwWQKReOAmA2p0gx1FNZX9eGCl/4IQ54/tLP2zJ07t6LwAl6fn6t
# mKXChdbC9L7p
# =CY68
# -----END PGP SIGNATURE-----
# gpg: Signature made Thu 08 Jan 2026 05:51:40 PM AEDT
# gpg:                using RSA key 354BC8B3D7EB2A6B68674E5F3870B400EB918653
# gpg:                issuer "[email protected]"
# gpg: Good signature from "Markus Armbruster <[email protected]>" [unknown]
# gpg:                 aka "Markus Armbruster <[email protected]>" [unknown]
# gpg: WARNING: The key's User ID is not certified with a trusted signature!
# gpg:          There is no indication that the signature belongs to the owner.
# Primary key fingerprint: 354B C8B3 D7EB 2A6B 6867  4E5F 3870 B400 EB91 8653

* tag 'pull-error-2026-01-07-v2' of https://repo.or.cz/qemu/armbru:
  block/file-win32: Improve an error message
  qga/commands-win32: Use error_setg_win32() for better error messages
  error: Use error_setg_errno() for simplicity and consistency
  error: Use error_setg_errno() to improve error messages
  net/slirp: Improve file open error message
  error: Use error_setg_file_open() for simplicity and consistency
  blkdebug: Use error_setg_file_open() for a better error message
  net/tap: Use error_setg_file_open() for a better error message
  qga: Use error_setg_file_open() for better error messages
  tap-solaris: Use error_setg_file_open() for better error messages
  ui: Convert to qemu_create() for simplicity and consistency
  error: Strip trailing '\n' from error string arguments (again)
  error: Consistently name Error * objects err, and not errp
  error: error_free(NULL) is safe, drop unnecessary conditionals
  nbd/client-connection: Replace error_propagate() by assignment
  hw/nvram/xlnx-bbram: More idiomatic and simpler error reporting
  hw/core/loader: Make load_elf_hdr() return bool, simplify caller

Signed-off-by: Richard Henderson <[email protected]>


  Commit: 146dcea03e276a47404c2cc03ea753fd681c9567
      
https://github.com/qemu/qemu/commit/146dcea03e276a47404c2cc03ea753fd681c9567
  Author: Richard Henderson <[email protected]>
  Date:   2026-01-08 (Thu, 08 Jan 2026)

  Changed paths:
    M MAINTAINERS

  Log Message:
  -----------
  Merge tag 'pull-maintainers-2026-01-08' of https://repo.or.cz/qemu/armbru 
into staging

MAINTAINERS patches for 2026-01-08

# -----BEGIN PGP SIGNATURE-----
#
# iQJGBAABCgAwFiEENUvIs9frKmtoZ05fOHC0AOuRhlMFAmlfcIUSHGFybWJydUBy
# ZWRoYXQuY29tAAoJEDhwtADrkYZTv3YQAJGXEh1vqIZsEIRfPlOFPQWSfXUCbchX
# aiHYiWieMLJsNdP9jj+vxAz0agCURqbipqIAOJF21FfrSi8sC1T0g6bW7Bo8DFhn
# SP+LWHv+dqUds1Tb+GKk2qiU/g+giXCJ01paj2VuNzo3e5Aitj/l5uxVdXnCLZGy
# FwdchNPJBl2H9IO6J+OF1D7u4SKlIZncRyyyosaRGxVdKlF5hhIz8PypW/xw2kf2
# aCgHVldcij2ZXZSRuxGhyUsKtldGHNTEZFE/pQf30xhg30PlPA4crZuS3I/dlaQ4
# Nhx62ahQaZsG/D/jLvqUtOHKM7zFToLMSdvV5VKioxkgcf16VJ2RNf9OWgkWjUHz
# uBQgJJUFEF3gjE5DV1bEAQYDtp7xv0vOyUphkE6EJf7eAiIF4+vy6HvFpK7v1fpQ
# Bkd36FkL2uuFpDNk7fxFhcKbxEOreGjQOQoowhByLoCY/MuSro6NFvEh8Jtcid8L
# 2ju5+yCcLiZv3UXRTQ5uffi4CKzsjAGVSq2odqz7Xo6N0RGCQGp/NfrmumJEqM0k
# JSn/hxsn9kpKsi9WvwM5kpsDt7d45vjVF3VfiI5pZpoyOQPjud+1jdUR30BmuyGy
# CJ1Z+v6afnwTAh1KdYb8d7RNo1JOBnNWOFenmAzhevL3+sYthlS5LsK5iblMJr1e
# 3oiFTiACHbiO
# =kYKn
# -----END PGP SIGNATURE-----
# gpg: Signature made Thu 08 Jan 2026 07:53:25 PM AEDT
# gpg:                using RSA key 354BC8B3D7EB2A6B68674E5F3870B400EB918653
# gpg:                issuer "[email protected]"
# gpg: Good signature from "Markus Armbruster <[email protected]>" [unknown]
# gpg:                 aka "Markus Armbruster <[email protected]>" [unknown]
# gpg: WARNING: The key's User ID is not certified with a trusted signature!
# gpg:          There is no indication that the signature belongs to the owner.
# Primary key fingerprint: 354B C8B3 D7EB 2A6B 6867  4E5F 3870 B400 EB91 8653

* tag 'pull-maintainers-2026-01-08' of https://repo.or.cz/qemu/armbru:
  MAINTAINERS: Add MAX78000FTHR section as orphan
  MAINTAINERS: Add EEPROM 93xx section
  MAINTAINERS: Fix coverage of meson.build in tests/functional
  MAINTAINERS: Fix coverage of tests/functional/acpi-bits/

Signed-off-by: Richard Henderson <[email protected]>


Compare: https://github.com/qemu/qemu/compare/3b5fe75e2c30...146dcea03e27

To unsubscribe from these emails, change your notification settings at 
https://github.com/qemu/qemu/settings/notifications

Reply via email to