mbox

[PULL,00/17] maintainer updates for May (testing, plugins, virtio-gpu)

Message ID 20250605162651.2614401-1-alex.bennee@linaro.org
State New
Headers show

Pull-request

https://gitlab.com/stsquad/qemu.git tags/pull-10.1-maintainer-may-2025-050625-1

Message

Alex Bennée June 5, 2025, 4:26 p.m. UTC
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)

----------------------------------------------------------------
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(-)

Comments

Stefan Hajnoczi June 6, 2025, 1:45 p.m. UTC | #1
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.

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 June 7, 2025, 3:44 p.m. UTC | #2
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
>>
>>