qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/11] maintainer updates (gitlab, check-tcg, virtio-gpu, plugins, docs)
@ 2025-10-20 10:41 Alex Bennée
  2025-10-20 10:41 ` [PULL 01/11] gitlab: use template for ubuntu-24.04-aarch64 jobs Alex Bennée
                   ` (10 more replies)
  0 siblings, 11 replies; 14+ messages in thread
From: Alex Bennée @ 2025-10-20 10:41 UTC (permalink / raw)
  To: qemu-devel; +Cc: Alex Bennée

The following changes since commit 3a2d5612a7422732b648b46d4b934e2e54622fd6:

  .gitlab-ci.d/buildtest.yml: Install 'file' for the Coverity job (2025-10-19 11:49:36 -0700)

are available in the Git repository at:

  https://gitlab.com/stsquad/qemu.git tags/pull-10.2-maintainer-201025-1

for you to fetch changes up to 2687249db27b4d23dfc69cb144015509ef72dc40:

  docs/system: merge vhost-user-input into vhost-user-contrib (2025-10-20 10:41:14 +0100)

----------------------------------------------------------------
maintainer updates (gitlab, check-tcg, virtio-gpu, plugins, docs)

  - drop aarch32 runner from custom runners
  - use template for aarch64 custom jobs
  - don't test for atime in linux-test
  - support per-head resolution for virtio-gpu
  - drop extra draw call causing corruption in gtk-gl-area
  - add trace event for blob map/unmap
  - extend ufrace_symbols to generate dbg files
  - group VirtIO devices in device documentation
  - merge vhost-user device docs into single file

----------------------------------------------------------------
Alex Bennée (7):
      gitlab: use template for ubuntu-24.04-aarch64 jobs
      gitlab: drop aarch32 runner and associated bits
      hw/display: add blob map/unmap trace events
      docs/system: split VirtIO devices from the rest
      docs/system: unify the naming style for VirtIO devices
      docs/system: drop vhost-user-rng docs
      docs/system: merge vhost-user-input into vhost-user-contrib

Andrew Keesler (1):
      Support per-head resolutions with virtio-gpu

Dongwon Kim (1):
      ui/gtk-gl-area: Remove extra draw call in refresh

Peter Maydell (1):
      tests/tcg/multiarch/linux/linux-test: Don't try to test atime update

Pierrick Bouvier (1):
      contrib/plugins/uftrace_symbols.py: generate debug files to map symbols to source

 docs/system/device-emulation.rst                   |  18 +-
 docs/system/devices/vfio-user.rst                  |   2 +-
 docs/system/devices/vhost-user-input.rst           |  45 ----
 docs/system/devices/vhost-user-rng.rst             |  41 ----
 docs/system/devices/virtio/index.rst               |  29 +++
 docs/system/devices/virtio/vhost-user-contrib.rst  |  87 ++++++++
 docs/system/devices/{ => virtio}/vhost-user.rst    |  22 +-
 docs/system/devices/{ => virtio}/virtio-gpu.rst    |   4 +-
 docs/system/devices/{ => virtio}/virtio-pmem.rst   |   6 +-
 docs/system/devices/{ => virtio}/virtio-snd.rst    |   2 +-
 qapi/virtio.json                                   |  10 +-
 hw/display/virtio-gpu-base.c                       |   9 +
 hw/display/virtio-gpu-virgl.c                      |   4 +
 tests/tcg/multiarch/linux/linux-test.c             |   9 +-
 ui/gtk-gl-area.c                                   |  17 +-
 .gitlab-ci.d/custom-runners.yml                    |   1 -
 .../custom-runners/ubuntu-24.04-aarch32.yml        |  25 ---
 .../custom-runners/ubuntu-24.04-aarch64.yml        | 230 +++++++++------------
 contrib/plugins/uftrace_symbols.py                 | 120 +++++++----
 hw/display/trace-events                            |   2 +
 scripts/ci/setup/ubuntu/build-environment.yml      |  17 --
 .../ci/setup/ubuntu/ubuntu-2204-armhf-cross.yml    | 127 ------------
 22 files changed, 361 insertions(+), 466 deletions(-)
 delete mode 100644 docs/system/devices/vhost-user-input.rst
 delete mode 100644 docs/system/devices/vhost-user-rng.rst
 create mode 100644 docs/system/devices/virtio/index.rst
 create mode 100644 docs/system/devices/virtio/vhost-user-contrib.rst
 rename docs/system/devices/{ => virtio}/vhost-user.rst (77%)
 rename docs/system/devices/{ => virtio}/virtio-gpu.rst (99%)
 rename docs/system/devices/{ => virtio}/virtio-pmem.rst (98%)
 rename docs/system/devices/{ => virtio}/virtio-snd.rst (99%)
 delete mode 100644 .gitlab-ci.d/custom-runners/ubuntu-24.04-aarch32.yml
 delete mode 100644 scripts/ci/setup/ubuntu/ubuntu-2204-armhf-cross.yml

-- 
2.47.3



^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2025-10-20 12:47 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-20 10:41 [PULL 00/11] maintainer updates (gitlab, check-tcg, virtio-gpu, plugins, docs) Alex Bennée
2025-10-20 10:41 ` [PULL 01/11] gitlab: use template for ubuntu-24.04-aarch64 jobs Alex Bennée
2025-10-20 10:41 ` [PULL 02/11] gitlab: drop aarch32 runner and associated bits Alex Bennée
2025-10-20 10:41 ` [PULL 03/11] tests/tcg/multiarch/linux/linux-test: Don't try to test atime update Alex Bennée
2025-10-20 10:41 ` [PULL 04/11] Support per-head resolutions with virtio-gpu Alex Bennée
2025-10-20 11:55   ` Markus Armbruster
2025-10-20 12:46     ` Alex Bennée
2025-10-20 10:41 ` [PULL 05/11] ui/gtk-gl-area: Remove extra draw call in refresh Alex Bennée
2025-10-20 10:41 ` [PULL 06/11] hw/display: add blob map/unmap trace events Alex Bennée
2025-10-20 10:41 ` [PULL 07/11] contrib/plugins/uftrace_symbols.py: generate debug files to map symbols to source Alex Bennée
2025-10-20 10:41 ` [PULL 08/11] docs/system: split VirtIO devices from the rest Alex Bennée
2025-10-20 10:41 ` [PULL 09/11] docs/system: unify the naming style for VirtIO devices Alex Bennée
2025-10-20 10:41 ` [PULL 10/11] docs/system: drop vhost-user-rng docs Alex Bennée
2025-10-20 10:41 ` [PULL 11/11] docs/system: merge vhost-user-input into vhost-user-contrib Alex Bennée

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).