Branch: refs/heads/staging
Home: https://github.com/qemu/qemu
Commit: 7454ce2fae76670d7995d364d1f66619b18a7429
https://github.com/qemu/qemu/commit/7454ce2fae76670d7995d364d1f66619b18a7429
Author: Alex Bradbury <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
M contrib/plugins/hotblocks.c
Log Message:
-----------
contrib/plugins/hotblocks: Correctly free sorted counts list
g_list_free should be passed the head of the list.
Signed-off-by: Alex Bradbury <[email protected]>
Reviewed-by: Manos Pitsidianakis <[email protected]>
Reviewed-by: Pierrick Bouvier <[email protected]>
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: 0b40e0a26b39ee2388f7b29a1a297854570276f0
https://github.com/qemu/qemu/commit/0b40e0a26b39ee2388f7b29a1a297854570276f0
Author: Alex Bradbury <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
M contrib/plugins/hotblocks.c
Log Message:
-----------
contrib/plugins/hotblocks: Fix off by one error in iteration of sorted blocks
The logic to iterate over the hottest blocks will never reach the last
item in the list, as it checks `it->next != NULL` before entering the
loop. It's hard to trigger this off-by-one error with the default
limit=20, but it is a bug and is problematic if that default is changed
to something larger.
Signed-off-by: Alex Bradbury <[email protected]>
Reviewed-by: Pierrick Bouvier <[email protected]>
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: 3eec045d0e8eb580ebedfe1c088bf5c552fce76f
https://github.com/qemu/qemu/commit/3eec045d0e8eb580ebedfe1c088bf5c552fce76f
Author: Alex Bradbury <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
M contrib/plugins/hotblocks.c
Log Message:
-----------
contrib/plugins/hotblocks: Print uint64_t with PRIu64 rather than PRId64
qemu_plugin_u64_sum returns a uint64_t, so PRIu64 is the correct format
specifier.
Signed-off-by: Alex Bradbury <[email protected]>
Reviewed-by: Manos Pitsidianakis <[email protected]>
Reviewed-by: Pierrick Bouvier <[email protected]>
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: abdcad29733e8296e7c40a7fd457b32ed3adf969
https://github.com/qemu/qemu/commit/abdcad29733e8296e7c40a7fd457b32ed3adf969
Author: Alex Bradbury <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
M docs/about/emulation.rst
Log Message:
-----------
docs/about/emulation: Add documentation for hotblocks plugin arguments
Currently just 'inline'.
Signed-off-by: Alex Bradbury <[email protected]>
Reviewed-by: Pierrick Bouvier <[email protected]>
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: 9cf5fe30bc3fa0882ddfb7cb8a54cd45f61a8603
https://github.com/qemu/qemu/commit/9cf5fe30bc3fa0882ddfb7cb8a54cd45f61a8603
Author: Alex Bradbury <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
M contrib/plugins/hotblocks.c
M docs/about/emulation.rst
Log Message:
-----------
contrib/plugins/hotblocks: Allow limit to be set as a command line argument
Also add documentation for this argument. This allows the default of 20
to be overridden, and is helpful for using the hotblocks plugin for
analysis scripts that require collecting data on a larger number of
blocks (e.g. setting limit=0 to dump information on all blocks).
Signed-off-by: Alex Bradbury <[email protected]>
Reviewed-by: Pierrick Bouvier <[email protected]>
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: 6b6c65bd324682d0382a084451a76edd6e5c9487
https://github.com/qemu/qemu/commit/6b6c65bd324682d0382a084451a76edd6e5c9487
Author: Ziyang Zhang <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
M include/qemu/plugin-event.h
M include/qemu/plugin.h
M include/qemu/qemu-plugin.h
M include/user/syscall-trace.h
M linux-user/syscall.c
M plugins/api.c
M plugins/core.c
Log Message:
-----------
linux-user: add plugin API to filter syscalls
This commit adds a syscall filter API to the TCG plugin API set.
Plugins can register a filter callback to QEMU to decide whether
to intercept a syscall, process it and bypass the QEMU syscall
handler.
Signed-off-by: Ziyang Zhang <[email protected]>
Co-authored-by: Mingyuan Xia <[email protected]>
Reviewed-by: Pierrick Bouvier <[email protected]>
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: f32fbef89057da742e7111f2488311f76934bdfa
https://github.com/qemu/qemu/commit/f32fbef89057da742e7111f2488311f76934bdfa
Author: Ziyang Zhang <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
M tests/tcg/multiarch/Makefile.target
A tests/tcg/multiarch/test-plugin-syscall-filter.c
M tests/tcg/plugins/syscall.c
Log Message:
-----------
tcg tests: add a test to verify the syscall filter plugin API
Register a syscall filter callback in tests/tcg/plugins/sycall.c,
returns a specific value for a magic system call number, and check
it in tests/tcg/multiarch/test-plugin-syscall-filter.c.
Signed-off-by: Ziyang Zhang <[email protected]>
Co-authored-by: Mingyuan Xia <[email protected]>
Reviewed-by: Pierrick Bouvier <[email protected]>
[Pierrick - Changed syscall number to 4096 to make it work with mips32]
[Pierrick - Skip test when compiling without plugins enabled]
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: 444f02b8a999cd79e3b513aaac9b9432d90b605a
https://github.com/qemu/qemu/commit/444f02b8a999cd79e3b513aaac9b9432d90b605a
Author: Florian Hofhammer <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
M contrib/plugins/execlog.c
M contrib/plugins/uftrace.c
M include/qemu/qemu-plugin.h
M plugins/api.c
M tests/tcg/plugins/insn.c
Log Message:
-----------
plugins: return bool from register r/w API
The qemu_plugin_{read,write} register API previously was inconsistent
with regard to its docstring (where a return value of both -1 and 0
would indicate an error) and to the memory read/write APIs, which
already return a boolean value to indicate success or failure.
Returning the number of bytes read or written is superfluous, as the
GByteArray* passed to the API functions already encodes the length.
See the linked thread for more details.
This patch moves from returning an int (number of bytes read/written) to
returning a bool from the register read/write API, bumps the plugin API
version, and adjusts plugins and tests accordingly.
Link:
https://lore.kernel.org/qemu-devel/[email protected]/
Signed-off-by: Florian Hofhammer <[email protected]>
Reviewed-by: Pierrick Bouvier <[email protected]>
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: ec8e3d24ff9cda5f516358c994fd635094a9f06e
https://github.com/qemu/qemu/commit/ec8e3d24ff9cda5f516358c994fd635094a9f06e
Author: Pierrick Bouvier <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
M contrib/plugins/meson.build
R contrib/plugins/win32_linker.c
A plugins/win32_linker.c
M tests/tcg/plugins/meson.build
Log Message:
-----------
plugins: move win32_linker.c file to plugins directory
Reviewed-by: Richard Henderson <[email protected]>
Reviewed-by: Manos Pitsidianakis <[email protected]>
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: b67b825c78a556fb2d63d3ad4e54c43162b2926a
https://github.com/qemu/qemu/commit/b67b825c78a556fb2d63d3ad4e54c43162b2926a
Author: Pierrick Bouvier <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
M contrib/plugins/meson.build
M meson.build
M plugins/meson.build
M tests/tcg/plugins/meson.build
Log Message:
-----------
plugins: factorize plugin dependencies and library details
Reviewed-by: Daniel P. Berrangé <[email protected]>
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: 31383a727ed3dac94b8aa57fedc94e0607de74cf
https://github.com/qemu/qemu/commit/31383a727ed3dac94b8aa57fedc94e0607de74cf
Author: Pierrick Bouvier <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
M contrib/plugins/meson.build
M tests/tcg/plugins/meson.build
Log Message:
-----------
plugins: use complete filename for defining plugins sources
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
Reviewed-by: Manos Pitsidianakis <[email protected]>
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: 3cb8f9873663d267b5181ce68b310be1b7b07421
https://github.com/qemu/qemu/commit/3cb8f9873663d267b5181ce68b310be1b7b07421
Author: Pierrick Bouvier <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
M include/qemu/qemu-plugin.h
Log Message:
-----------
plugins: define plugin API symbols as extern "C" when compiling in C++
Reviewed-by: Richard Henderson <[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: f632f03cd360f8213ae5374585a89ef0b43937ae
https://github.com/qemu/qemu/commit/f632f03cd360f8213ae5374585a89ef0b43937ae
Author: Pierrick Bouvier <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
M tests/tcg/plugins/mem.c
Log Message:
-----------
tests/tcg/plugins/mem.c: remove dependency on qemu headers
This plugin uses endianness conversion primitives from QEMU headers. As
next commit will strongly isolate plugins code from those headers, those
primitives can't be used anymore.
glib.h provides such primitives:
https://docs.gtk.org/glib/conversion-macros.html#byte-order-conversion
Reviewed-by: Manos Pitsidianakis <[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: d259933f31467466537e298b833d729074d76f80
https://github.com/qemu/qemu/commit/d259933f31467466537e298b833d729074d76f80
Author: Pierrick Bouvier <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
M docs/devel/tcg-plugins.rst
A include/plugins/qemu-plugin.h
M include/qemu/plugin.h
R include/qemu/qemu-plugin.h
M meson.build
M plugins/core.c
M plugins/meson.build
Log Message:
-----------
plugins: move qemu-plugin.h to include/plugins/
This change has two benefits:
- ensure plugins can't include anything else from QEMU than plugins API
- when compiling a C++ module, solves the header conflict with iostream
header that includes transitively the wrong ctype.h, which already
exists in include/qemu.
By Hyrum's law, there was already one usage of other headers with mem
plugin, which has been eliminated in previous commit.
Reviewed-by: Richard Henderson <[email protected]>
Reviewed-by: Manos Pitsidianakis <[email protected]>
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: 232c0081517fe6d1e2cb68e55d1d6e0237b1dab1
https://github.com/qemu/qemu/commit/232c0081517fe6d1e2cb68e55d1d6e0237b1dab1
Author: Pierrick Bouvier <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
M meson.build
Log Message:
-----------
meson: fix supported compiler arguments in other languages than C
qemu_common_flags are only checked for c compiler, even though they
are applied to c++ and objc. This is a problem when C compiler is gcc,
and C++ compiler is clang, creating a possible mismatch.
One concrete example is option -fzero-call-used-regs=used-gpr with
ubuntu2204 container, which is supported by gcc, but not by clang, thus
leading to a failure when compiling a C++ TCG plugin.
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
Reviewed-by: Manos Pitsidianakis <[email protected]>
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: b06afb8de5b93122949369ba1f91e04c38a0a3bb
https://github.com/qemu/qemu/commit/b06afb8de5b93122949369ba1f91e04c38a0a3bb
Author: Pierrick Bouvier <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
M meson.build
Log Message:
-----------
meson: enable cpp (optionally) for plugins
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
Reviewed-by: Manos Pitsidianakis <[email protected]>
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: ebb8d1bf9a53a24aed51dc29f5bdf49ede254d57
https://github.com/qemu/qemu/commit/ebb8d1bf9a53a24aed51dc29f5bdf49ede254d57
Author: Pierrick Bouvier <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
M qga/vss-win32/requester.cpp
Log Message:
-----------
qga/vss-win32: fix clang warning with C++20
C++20 deprecated such constructs.
../qga/vss-win32/requester.cpp:380:32: error: bitwise operation between
different enumeration types ('_VSS_SNAPSHOT_CONTEXT' and
'_VSS_VOLUME_SNAPSHOT_ATTRIBUTES') is deprecated
[-Werror,-Wdeprecated-enum-enum-conversion]
380 | ctx = VSS_CTX_APP_ROLLBACK | VSS_VOLSNAP_ATTR_TRANSPORTABLE |
This is a false positive, since VSS_CTX_APP_ROLLBACK is not a value
defined in _VSS_VOLUME_SNAPSHOT_ATTRIBUTES enum.
Reviewed-by: Manos Pitsidianakis <[email protected]>
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: 4cfff1f4039ab7f7c5149ac4fe198d86dc179ac6
https://github.com/qemu/qemu/commit/4cfff1f4039ab7f7c5149ac4fe198d86dc179ac6
Author: Pierrick Bouvier <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
M meson.build
Log Message:
-----------
meson: update C++ standard to C++23
C++ is evolving faster than C, so it's useful to enable new standards,
especially for standard library.
Update to most recent standard available in our build environments.
Reviewed-by: Manos Pitsidianakis <[email protected]>
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: 38b9c09d68bdd507473ac2c22cab1866c69439be
https://github.com/qemu/qemu/commit/38b9c09d68bdd507473ac2c22cab1866c69439be
Author: Pierrick Bouvier <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
A contrib/plugins/cpp.cpp
M contrib/plugins/meson.build
Log Message:
-----------
contrib/plugins: add empty cpp plugin
This plugin makes sure we can compile in C++ while including qemu-plugin
header. It includes all C++ standard headers, up to C++23 standard,
minus the ones that are missing in the oldest environments we need to
build for.
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
Reviewed-by: Manos Pitsidianakis <[email protected]>
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: 2ddf77d673174d7a5c9ba0bb855cad664225d7c3
https://github.com/qemu/qemu/commit/2ddf77d673174d7a5c9ba0bb855cad664225d7c3
Author: Pierrick Bouvier <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
M contrib/plugins/meson.build
M tests/tcg/plugins/meson.build
Log Message:
-----------
plugins: reduce source conflicts in plugins list
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: 8eff45dfe93b34b1a027bd22fd8dffe6424f480d
https://github.com/qemu/qemu/commit/8eff45dfe93b34b1a027bd22fd8dffe6424f480d
Author: Pierrick Bouvier <[email protected]>
Date: 2026-01-28 (Wed, 28 Jan 2026)
Changed paths:
M meson.build
Log Message:
-----------
meson: fix build of qemu-system-microblaze with --enable-modules
A previous commit wrongly skipped including the generated modinfo in
case hw_arch dictionary ends up being empty.
Fix that by adding an empty source set in dictionary in this case.
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/3280
Fixes: e8efe5ff4 (meson: Do not try to build module for empty per-target hw/
directory)
Signed-off-by: Pierrick Bouvier <[email protected]>
Commit: 2aee607223679a873cd22d5d0df9fb1460e3123c
https://github.com/qemu/qemu/commit/2aee607223679a873cd22d5d0df9fb1460e3123c
Author: Richard Henderson <[email protected]>
Date: 2026-01-29 (Thu, 29 Jan 2026)
Changed paths:
A contrib/plugins/cpp.cpp
M contrib/plugins/execlog.c
M contrib/plugins/hotblocks.c
M contrib/plugins/meson.build
M contrib/plugins/uftrace.c
R contrib/plugins/win32_linker.c
M docs/about/emulation.rst
M docs/devel/tcg-plugins.rst
A include/plugins/qemu-plugin.h
M include/qemu/plugin-event.h
M include/qemu/plugin.h
R include/qemu/qemu-plugin.h
M include/user/syscall-trace.h
M linux-user/syscall.c
M meson.build
M plugins/api.c
M plugins/core.c
M plugins/meson.build
A plugins/win32_linker.c
M qga/vss-win32/requester.cpp
M tests/tcg/multiarch/Makefile.target
A tests/tcg/multiarch/test-plugin-syscall-filter.c
M tests/tcg/plugins/insn.c
M tests/tcg/plugins/mem.c
M tests/tcg/plugins/meson.build
M tests/tcg/plugins/syscall.c
Log Message:
-----------
Merge tag 'pr-plugins-20260128' of https://gitlab.com/pbo-linaro/qemu into
staging
Changes:
- contrib/plugins/hotblocks: Minor bug fixes and add limit argument (Alex
Bradbury <[email protected]>)
- linux-user: introduce syscall-filter plugin API (Ziyang Zhang
<[email protected]>)
- plugins: return bool from register r/w API (Florian Hofhammer
<[email protected]>)
- plugins: enable C++ plugins (Pierrick Bouvier <[email protected]>)
- plugins: reduce source conflicts in plugins list (Pierrick Bouvier
<[email protected]>)
# -----BEGIN PGP SIGNATURE-----
#
# iQGzBAABCgAdFiEEZrmU7KFPfy5auggff5BUDQoc0A8FAml6rOEACgkQf5BUDQoc
# 0A9wXgv+LIMzm6Lk89pcX4xEppFSrFuCEO9XJlVatBB6V+Xnk9qKjuvaQuOX+9V5
# mkWWLU+QqoFi0w6K/WdgYhjunniFCIOtRvrGBf61KcztvBLDZeVB7j9EKUWJidX+
# yge0jusYLSNN38KiX8iIZtG2lGRSpqjs8YLJysII6lWRSM1kG4ObgbuiCmWwc3e1
# OfgWaz0S/4fQWQ2+5crG7LT1KyWMhl0R2IkIQ7yeOnWntZz/b/HY5fzAi+vjCpmu
# PspgRwptrReF7+oNtROEMHrOJH+jACi1N8eIQUcBXl3Gldr20Q49lKj6LfD937Dr
# CsJaSnXe6UxlLvT6bM80u1IZHHr5Lql3XBnTqSbhT2BDEVuTgCG9gdZBjOsrWQT2
# OP8MsD5r4BqimXT8DbJFGwWcI2kUfPzhe8N30cHOJQreylZKQ43l1JO5LBE2rrjt
# z1iHiAxzfIFiYnFGFNPETYoIP1QyR+4wTZu1G9nVcEB/Gr+iQEMKCHDZuE/ewQFH
# HxhnvNNt
# =dtGO
# -----END PGP SIGNATURE-----
# gpg: Signature made Thu 29 Jan 2026 11:42:09 AM AEDT
# gpg: using RSA key 66B994ECA14F7F2E5ABA081F7F90540D0A1CD00F
# gpg: Good signature from "Pierrick Bouvier <[email protected]>"
[unknown]
# gpg: WARNING: This key is not certified with a trusted signature!
# gpg: There is no indication that the signature belongs to the owner.
# Primary key fingerprint: 66B9 94EC A14F 7F2E 5ABA 081F 7F90 540D 0A1C D00F
* tag 'pr-plugins-20260128' of https://gitlab.com/pbo-linaro/qemu:
plugins: reduce source conflicts in plugins list
contrib/plugins: add empty cpp plugin
meson: update C++ standard to C++23
qga/vss-win32: fix clang warning with C++20
meson: enable cpp (optionally) for plugins
meson: fix supported compiler arguments in other languages than C
plugins: move qemu-plugin.h to include/plugins/
tests/tcg/plugins/mem.c: remove dependency on qemu headers
plugins: define plugin API symbols as extern "C" when compiling in C++
plugins: use complete filename for defining plugins sources
plugins: factorize plugin dependencies and library details
plugins: move win32_linker.c file to plugins directory
plugins: return bool from register r/w API
tcg tests: add a test to verify the syscall filter plugin API
linux-user: add plugin API to filter syscalls
contrib/plugins/hotblocks: Allow limit to be set as a command line argument
docs/about/emulation: Add documentation for hotblocks plugin arguments
contrib/plugins/hotblocks: Print uint64_t with PRIu64 rather than PRId64
contrib/plugins/hotblocks: Fix off by one error in iteration of sorted blocks
contrib/plugins/hotblocks: Correctly free sorted counts list
Signed-off-by: Richard Henderson <[email protected]>
Commit: c9d018b5815e35e6335734487390dae202823c08
https://github.com/qemu/qemu/commit/c9d018b5815e35e6335734487390dae202823c08
Author: Richard Henderson <[email protected]>
Date: 2026-01-29 (Thu, 29 Jan 2026)
Changed paths:
M meson.build
Log Message:
-----------
Merge tag 'pr-build_fix-20260128' of https://gitlab.com/pbo-linaro/qemu into
staging
Fix build with --enable-modules
# -----BEGIN PGP SIGNATURE-----
#
# iQGzBAABCgAdFiEEZrmU7KFPfy5auggff5BUDQoc0A8FAml6uYIACgkQf5BUDQoc
# 0A+1fgv/VBYR4Svtjbpq9GmAzXYSdqI5WhbDTPMH0mC9dFoFHdpZL0hOiZnXkoXs
# fXLBJkB8zJPTE+f7q9FQS6LTTJVkazSE+EmuqnewQbL4mueEgK1ZZelg2aRmIBCg
# nyQFh+X+p3z6Kt7aErLX4W1tH4OySLrGEu+QCHoSiRBpEPuK9Qeb5chvS9GmEq5o
# 7UGE4eiJ9y3Q7uXx32xo36zaLSwEkUHURp8FVUVxg44z0xDH7JyiJetUQrdxHtWT
# DoAdJR+l1hIqCP60qyd9JZFNNm1QgGBI3D7b0A7GArc/Soa96ikWTpoPid3OK0qd
# l1FxnfacoFOmNKa9kbEtupDGBzs6n3lkjzJ13EgF3pmAvTYKk/efCZ58Or1GdsK8
# IJVPzVx979XrXEIzpNs3KxVvR21TiRQvpF4dOa3GBcHYw+EgFKGoo4sKboYV21CC
# wZDUM7w2iFZKNGr73VzLI+PZUqBSFdCmXGTVddgKFcibnjxizzTJgjz+C1urew9M
# 7E7R/XrT
# =wFh0
# -----END PGP SIGNATURE-----
# gpg: Signature made Thu 29 Jan 2026 12:36:02 PM AEDT
# gpg: using RSA key 66B994ECA14F7F2E5ABA081F7F90540D0A1CD00F
# gpg: Good signature from "Pierrick Bouvier <[email protected]>"
[unknown]
# gpg: WARNING: This key is not certified with a trusted signature!
# gpg: There is no indication that the signature belongs to the owner.
# Primary key fingerprint: 66B9 94EC A14F 7F2E 5ABA 081F 7F90 540D 0A1C D00F
* tag 'pr-build_fix-20260128' of https://gitlab.com/pbo-linaro/qemu:
meson: fix build of qemu-system-microblaze with --enable-modules
Signed-off-by: Richard Henderson <[email protected]>
Compare: https://github.com/qemu/qemu/compare/9ad7f544c696...c9d018b5815e
To unsubscribe from these emails, change your notification settings at
https://github.com/qemu/qemu/settings/notifications