From: "Alex Bennée" <alex.bennee@linaro.org>
To: Stefan Hajnoczi <stefanha@gmail.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [PULL 00/17] maintainer updates for May (testing, plugins, virtio-gpu)
Date: Sat, 07 Jun 2025 16:44:34 +0100 [thread overview]
Message-ID: <87wm9n8skd.fsf@draig.linaro.org> (raw)
In-Reply-To: <CAJSP0QX9-DAzHSsG=aE53=BafmsF2a40toQivAmyOdhWF4aDxQ@mail.gmail.com> (Stefan Hajnoczi's message of "Fri, 6 Jun 2025 09:45:14 -0400")
Stefan Hajnoczi <stefanha@gmail.com> writes:
> On Thu, Jun 5, 2025 at 12:28 PM Alex Bennée <alex.bennee@linaro.org> wrote:
>>
>> The following changes since commit 09be8a511a2e278b45729d7b065d30c68dd699d0:
>>
>> Merge tag 'pull-qapi-2025-06-03' of https://repo.or.cz/qemu/armbru into staging (2025-06-03 09:19:26 -0400)
>>
>> are available in the Git repository at:
>>
>> https://gitlab.com/stsquad/qemu.git tags/pull-10.1-maintainer-may-2025-050625-1
>>
>> for you to fetch changes up to 66835968ca7246d385218be9776a80a5136563b7:
>>
>> gdbstub: update aarch64-core.xml (2025-06-05 13:47:37 +0100)
>
> I will wait for the discussion to reach a conclusion before merging
> this pull request.
I've dropped the virtio-gpu/next bits and sent v2.
>
> Stefan
>
>>
>> ----------------------------------------------------------------
>> Maintainer updates for May 2025:
>>
>> - expose ~/.cache/qemu to container builds
>> - disable debug info in CI
>> - allow boot.S to handle target el mode selection
>> - new arguments for ips plugin
>> - update virtio-gpu MAINTAINERS
>> - re-factoring of blob MemoryRegion handling
>> - remove extra draw call causing corruption
>> - support Venus fence contexts
>> - cleanup assets in size_memop
>> - fix include guard in gdbstub
>> - introduce qGDBServerVersion gdbstub query
>> - update gdb aarch64-core.xml to support bitfields
>>
>> ----------------------------------------------------------------
>> Alex Bennée (11):
>> tests/docker: expose $HOME/.cache/qemu as docker volume
>> gitlab: disable debug info on CI builds
>> tests/tcg: make aarch64 boot.S handle different starting modes
>> contrib/plugins: add a scaling factor to the ips arg
>> contrib/plugins: allow setting of instructions per quantum
>> MAINTAINERS: add myself to virtio-gpu for Odd Fixes
>> MAINTAINERS: add Akihiko and Dmitry as reviewers
>> hw/display: re-arrange memory region tracking
>> include/exec: fix assert in size_memop
>> include/gdbstub: fix include guard in commands.h
>> gdbstub: assert earlier in handle_read_all_regs
>>
>> Dominik 'Disconnect3d' Czarnota (1):
>> gdbstub: Implement qGDBServerVersion packet
>>
>> Dongwon Kim (1):
>> ui/gtk-gl-area: Remove extra draw call in refresh
>>
>> Manos Pitsidianakis (2):
>> virtio-gpu: refactor async blob unmapping
>> gdbstub: update aarch64-core.xml
>>
>> Nabih Estefan (1):
>> tests/qtest: Avoid unaligned access in IGB test
>>
>> Yiwei Zhang (1):
>> virtio-gpu: support context init multiple timeline
>>
>> MAINTAINERS | 5 +-
>> docs/about/emulation.rst | 4 +
>> include/exec/memop.h | 4 +-
>> include/gdbstub/commands.h | 2 +-
>> include/system/memory.h | 1 +
>> contrib/plugins/ips.c | 49 ++++++++-
>> gdbstub/gdbstub.c | 19 +++-
>> hw/display/virtio-gpu-virgl.c | 102 +++++++++++++-----
>> tests/qtest/libqos/igb.c | 4 +-
>> ui/gtk-gl-area.c | 1 -
>> .gitlab-ci.d/buildtest-template.yml | 1 +
>> gdb-xml/aarch64-core.xml | 52 ++++++++-
>> tests/docker/Makefile.include | 10 +-
>> tests/tcg/aarch64/Makefile.softmmu-target | 3 +-
>> tests/tcg/aarch64/system/boot.S | 172 +++++++++++++++++++++++++++++-
>> 15 files changed, 382 insertions(+), 47 deletions(-)
>>
>> --
>> 2.47.2
>>
>>
--
Alex Bennée
Virtualisation Tech Lead @ Linaro
prev parent reply other threads:[~2025-06-07 15:45 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-05 16:26 [PULL 00/17] maintainer updates for May (testing, plugins, virtio-gpu) Alex Bennée
2025-06-05 16:26 ` [PULL 01/17] tests/docker: expose $HOME/.cache/qemu as docker volume Alex Bennée
2025-06-05 16:26 ` [PULL 02/17] gitlab: disable debug info on CI builds Alex Bennée
2025-06-05 16:26 ` [PULL 03/17] tests/tcg: make aarch64 boot.S handle different starting modes Alex Bennée
2025-06-05 16:26 ` [PULL 04/17] tests/qtest: Avoid unaligned access in IGB test Alex Bennée
2025-06-06 9:29 ` Akihiko Odaki
2025-06-05 16:26 ` [PULL 05/17] contrib/plugins: add a scaling factor to the ips arg Alex Bennée
2025-06-05 16:26 ` [PULL 06/17] contrib/plugins: allow setting of instructions per quantum Alex Bennée
2025-06-05 16:26 ` [PULL 07/17] MAINTAINERS: add myself to virtio-gpu for Odd Fixes Alex Bennée
2025-06-05 16:26 ` [PULL 08/17] MAINTAINERS: add Akihiko and Dmitry as reviewers Alex Bennée
2025-06-05 16:26 ` [PULL 09/17] hw/display: re-arrange memory region tracking Alex Bennée
2025-06-06 5:17 ` Akihiko Odaki
2025-06-06 9:54 ` Alex Bennée
2025-06-06 10:31 ` Akihiko Odaki
2025-06-06 11:31 ` Alex Bennée
2025-06-06 15:06 ` Akihiko Odaki
2025-06-05 16:26 ` [PULL 10/17] virtio-gpu: refactor async blob unmapping Alex Bennée
2025-06-08 8:16 ` Akihiko Odaki
2025-06-05 16:26 ` [PULL 11/17] ui/gtk-gl-area: Remove extra draw call in refresh Alex Bennée
2025-06-05 16:26 ` [PULL 12/17] virtio-gpu: support context init multiple timeline Alex Bennée
2025-06-08 8:23 ` Akihiko Odaki
2025-06-20 2:07 ` Yiwei Zhang
2025-06-20 6:45 ` Alex Bennée
2025-06-20 19:47 ` Yiwei Zhang
2025-06-21 5:59 ` Akihiko Odaki
2025-06-05 16:26 ` [PULL 13/17] include/exec: fix assert in size_memop Alex Bennée
2025-06-08 8:29 ` Akihiko Odaki
2025-06-05 16:26 ` [PULL 14/17] include/gdbstub: fix include guard in commands.h Alex Bennée
2025-06-05 16:26 ` [PULL 15/17] gdbstub: assert earlier in handle_read_all_regs Alex Bennée
2025-06-05 16:26 ` [PULL 16/17] gdbstub: Implement qGDBServerVersion packet Alex Bennée
2025-06-05 16:26 ` [PULL 17/17] gdbstub: update aarch64-core.xml Alex Bennée
2025-06-06 13:45 ` [PULL 00/17] maintainer updates for May (testing, plugins, virtio-gpu) Stefan Hajnoczi
2025-06-07 15:44 ` Alex Bennée [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87wm9n8skd.fsf@draig.linaro.org \
--to=alex.bennee@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.