qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/19] UI & audio patches
@ 2023-07-17 12:45 marcandre.lureau
  2023-07-17 12:45 ` [PULL 01/19] virtio-gpu: fix potential divide-by-zero regression marcandre.lureau
                   ` (19 more replies)
  0 siblings, 20 replies; 29+ messages in thread
From: marcandre.lureau @ 2023-07-17 12:45 UTC (permalink / raw)
  To: qemu-devel
  Cc: Paolo Bonzini, Markus Armbruster, Alex Bennée,
	Philippe Mathieu-Daudé, Beraldo Leal, richard.henderson,
	Daniel P. Berrangé, Gerd Hoffmann, Michael S. Tsirkin,
	Marc-André Lureau, Wainer dos Santos Moschetta, Thomas Huth,
	Eric Blake

From: Marc-André Lureau <marcandre.lureau@redhat.com>

The following changes since commit ed8ad9728a9c0eec34db9dff61dfa2f1dd625637:

  Merge tag 'pull-tpm-2023-07-14-1' of https://github.com/stefanberger/qemu-tpm into staging (2023-07-15 14:54:04 +0100)

are available in the Git repository at:

  https://gitlab.com/marcandre.lureau/qemu.git tags/ui-pull-request

for you to fetch changes up to 92f69a2c9bca26ee756c7cb932142664aca9c9c6:

  audio/pw: improve channel position code (2023-07-17 15:23:31 +0400)

----------------------------------------------------------------
ui & audio fixes for 8.1

----------------------------------------------------------------

Dongwon Kim (5):
  ui/gtk: Make sure the right EGL context is currently bound
  virtio-gpu: replace the surface with null surface when resetting
  virtio-gpu-udmabuf: correct naming of QemuDmaBuf size properties
  ui/gtk: set scanout-mode right before scheduling draw
  ui/gtk: skip refresh if new dmabuf has been submitted

Marc-André Lureau (13):
  virtio-gpu: fix potential divide-by-zero regression
  libvirt-ci: update submodule to cover pipewire
  tests/lcitool: add pipewire
  audio/pw: Pipewire->PipeWire case fix for user-visible text
  audio/pw: drop needless case statement
  audio/pw: needless check for NULL
  audio/pw: trace during init before calling pipewire API
  audio/pw: add more details on error
  audio/pw: factorize some common code
  audio/pw: add more error reporting
  audio/pw: simplify error reporting in stream creation
  audio/pw: remove wrong comment
  audio/pw: improve channel position code

Mauro Matteo Cascella (1):
  ui/vnc-clipboard: fix infinite loop in inflate_buffer (CVE-2023-3255)

 meson.build                                   |   2 +-
 qapi/audio.json                               |  12 +-
 include/ui/console.h                          |   4 +-
 audio/pwaudio.c                               | 212 +++++++-----------
 hw/display/virtio-gpu-udmabuf.c               |  12 +-
 hw/display/virtio-gpu.c                       |  21 +-
 ui/console.c                                  |  11 +-
 ui/dbus-listener.c                            |   8 +-
 ui/egl-helpers.c                              |   8 +-
 ui/gtk-egl.c                                  |  20 +-
 ui/gtk-gl-area.c                              |  15 +-
 ui/vnc-clipboard.c                            |  10 +-
 audio/trace-events                            |   2 +-
 meson_options.txt                             |   2 +-
 qemu-options.hx                               |   4 +-
 scripts/meson-buildoptions.sh                 |   2 +-
 tests/docker/dockerfiles/alpine.docker        |   1 +
 tests/docker/dockerfiles/centos8.docker       |   1 +
 .../dockerfiles/debian-amd64-cross.docker     |   1 +
 tests/docker/dockerfiles/debian-amd64.docker  |   1 +
 .../dockerfiles/debian-arm64-cross.docker     |   1 +
 .../dockerfiles/debian-armel-cross.docker     |   1 +
 .../dockerfiles/debian-armhf-cross.docker     |   1 +
 .../dockerfiles/debian-mips64el-cross.docker  |   1 +
 .../dockerfiles/debian-mipsel-cross.docker    |   1 +
 .../dockerfiles/debian-ppc64el-cross.docker   |   1 +
 .../dockerfiles/debian-s390x-cross.docker     |   1 +
 tests/docker/dockerfiles/fedora.docker        |   1 +
 tests/docker/dockerfiles/opensuse-leap.docker |   1 +
 tests/docker/dockerfiles/ubuntu2204.docker    |   1 +
 tests/lcitool/libvirt-ci                      |   2 +-
 tests/lcitool/projects/qemu.yml               |   1 +
 32 files changed, 171 insertions(+), 191 deletions(-)

-- 
2.41.0



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

end of thread, other threads:[~2023-08-21 16:05 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-17 12:45 [PULL 00/19] UI & audio patches marcandre.lureau
2023-07-17 12:45 ` [PULL 01/19] virtio-gpu: fix potential divide-by-zero regression marcandre.lureau
2023-07-17 12:45 ` [PULL 02/19] ui/vnc-clipboard: fix infinite loop in inflate_buffer (CVE-2023-3255) marcandre.lureau
2023-07-17 12:45 ` [PULL 03/19] ui/gtk: Make sure the right EGL context is currently bound marcandre.lureau
2023-07-17 12:45 ` [PULL 04/19] virtio-gpu: replace the surface with null surface when resetting marcandre.lureau
2023-07-26 14:19   ` Marc-André Lureau
2023-07-17 12:45 ` [PULL 05/19] virtio-gpu-udmabuf: correct naming of QemuDmaBuf size properties marcandre.lureau
2023-08-16 21:08   ` [8.1 regression] " Alex Williamson
2023-08-16 21:25     ` Alex Williamson
2023-08-21 10:20       ` Marc-André Lureau
2023-08-21 16:04         ` Alex Williamson
2023-07-17 12:45 ` [PULL 06/19] ui/gtk: set scanout-mode right before scheduling draw marcandre.lureau
2023-07-21  6:53   ` Volker Rümelin
2023-07-24  4:47     ` Kim, Dongwon
2023-07-24 17:23       ` Volker Rümelin
2023-07-17 12:45 ` [PULL 07/19] ui/gtk: skip refresh if new dmabuf has been submitted marcandre.lureau
2023-07-17 12:45 ` [PULL 08/19] libvirt-ci: update submodule to cover pipewire marcandre.lureau
2023-07-17 12:45 ` [PULL 09/19] tests/lcitool: add pipewire marcandre.lureau
2023-07-17 12:45 ` [PULL 10/19] audio/pw: Pipewire->PipeWire case fix for user-visible text marcandre.lureau
2023-07-17 12:45 ` [PULL 11/19] audio/pw: drop needless case statement marcandre.lureau
2023-07-17 12:45 ` [PULL 12/19] audio/pw: needless check for NULL marcandre.lureau
2023-07-17 12:45 ` [PULL 13/19] audio/pw: trace during init before calling pipewire API marcandre.lureau
2023-07-17 12:45 ` [PULL 14/19] audio/pw: add more details on error marcandre.lureau
2023-07-17 12:45 ` [PULL 15/19] audio/pw: factorize some common code marcandre.lureau
2023-07-17 12:45 ` [PULL 16/19] audio/pw: add more error reporting marcandre.lureau
2023-07-17 12:45 ` [PULL 17/19] audio/pw: simplify error reporting in stream creation marcandre.lureau
2023-07-17 12:45 ` [PULL 18/19] audio/pw: remove wrong comment marcandre.lureau
2023-07-17 12:45 ` [PULL 19/19] audio/pw: improve channel position code marcandre.lureau
2023-07-17 19:12 ` [PULL 00/19] UI & audio patches Richard Henderson

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