qemu-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-commits] [qemu/qemu] a234ec: qemu-options.hx: remove stray quote


From: Peter Maydell
Subject: [Qemu-commits] [qemu/qemu] a234ec: qemu-options.hx: remove stray quote
Date: Tue, 14 Mar 2023 07:34:30 -0700

  Branch: refs/heads/staging
  Home:   https://github.com/qemu/qemu
  Commit: a234ec311bf35802215784c72baa033b1cbbd3ff
      
https://github.com/qemu/qemu/commit/a234ec311bf35802215784c72baa033b1cbbd3ff
  Author: John Snow <jsnow@redhat.com>
  Date:   2023-03-13 (Mon, 13 Mar 2023)

  Changed paths:
    M qemu-options.hx

  Log Message:
  -----------
  qemu-options.hx: remove stray quote

Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <20230202223121.252073-1-jsnow@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>


  Commit: 8bb6af6792f50a43807b152e1221e2ac9177f6c4
      
https://github.com/qemu/qemu/commit/8bb6af6792f50a43807b152e1221e2ac9177f6c4
  Author: Marc-André Lureau <marcandre.lureau@redhat.com>
  Date:   2023-03-13 (Mon, 13 Mar 2023)

  Changed paths:
    M include/ui/egl-helpers.h
    M ui/dbus-listener.c

  Log Message:
  -----------
  ui/dbus: initialize cursor_fb

Or else, we may randomly destroy some textures..

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>


  Commit: b289bb301a037a2bf98c07269f5cb40561e03357
      
https://github.com/qemu/qemu/commit/b289bb301a037a2bf98c07269f5cb40561e03357
  Author: Marc-André Lureau <marcandre.lureau@redhat.com>
  Date:   2023-03-13 (Mon, 13 Mar 2023)

  Changed paths:
    M ui/dbus-clipboard.c

  Log Message:
  -----------
  ui/dbus: unregister clipboard on connection close

Fixes unregistration with p2p connections, since they don't have an
associated name owner.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


  Commit: e74fec9aa491eb76f09a26faa6ffcd05434f6c2d
      
https://github.com/qemu/qemu/commit/e74fec9aa491eb76f09a26faa6ffcd05434f6c2d
  Author: Marc-André Lureau <marcandre.lureau@redhat.com>
  Date:   2023-03-13 (Mon, 13 Mar 2023)

  Changed paths:
    M audio/audio_int.h
    M audio/dbusaudio.c
    M ui/dbus.c

  Log Message:
  -----------
  audio/dbus: there are no sender for p2p mode

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


  Commit: eb9062d4cf2959b7fac696d024694b2d62cedf31
      
https://github.com/qemu/qemu/commit/eb9062d4cf2959b7fac696d024694b2d62cedf31
  Author: Marc-André Lureau <marcandre.lureau@redhat.com>
  Date:   2023-03-13 (Mon, 13 Mar 2023)

  Changed paths:
    M ui/dbus-console.c

  Log Message:
  -----------
  ui/dbus: set mouse is-absolute during console creation

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>


  Commit: 1222070e772833c6875e0ca63565db12c22df39e
      
https://github.com/qemu/qemu/commit/1222070e772833c6875e0ca63565db12c22df39e
  Author: Marc-André Lureau <marcandre.lureau@redhat.com>
  Date:   2023-03-13 (Mon, 13 Mar 2023)

  Changed paths:
    M ui/meson.build

  Log Message:
  -----------
  meson: ensure dbus-display generated code is built before other units

It's simply by luck that dbus-display header is built first before the
other units using it.

With sourceset, I can't find an easier way out than declaring an extra
dependency for dbus-display1 generate code.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


  Commit: f4579e2899df552ea0c1e2f68447fd64b0c38836
      
https://github.com/qemu/qemu/commit/f4579e2899df552ea0c1e2f68447fd64b0c38836
  Author: Marc-André Lureau <marcandre.lureau@redhat.com>
  Date:   2023-03-13 (Mon, 13 Mar 2023)

  Changed paths:
    M hw/display/qxl-render.c
    M hw/display/qxl.c
    M hw/display/vmware_vga.c
    M include/ui/console.h
    M ui/cursor.c
    M ui/dbus-listener.c
    M ui/spice-display.c
    M ui/vnc.c

  Log Message:
  -----------
  ui: rename cursor_{put->unref}

The naming is more conventional in QEMU.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


  Commit: 2512a026fab8d526e623426a3002599a2de09d16
      
https://github.com/qemu/qemu/commit/2512a026fab8d526e623426a3002599a2de09d16
  Author: Marc-André Lureau <marcandre.lureau@redhat.com>
  Date:   2023-03-13 (Mon, 13 Mar 2023)

  Changed paths:
    M include/ui/console.h
    M ui/cursor.c
    M ui/dbus-listener.c
    M ui/spice-display.c
    M ui/vnc.c

  Log Message:
  -----------
  ui: rename cursor_{get->ref}, return it

The naming is more conventional in QEMU code, and allows to simplify
some code by changing the API design, so it returns the input parameter,
instead of void.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


  Commit: 385ac97f8fad0e6980c5dfea71132d5ecfb16608
      
https://github.com/qemu/qemu/commit/385ac97f8fad0e6980c5dfea71132d5ecfb16608
  Author: Marc-André Lureau <marcandre.lureau@redhat.com>
  Date:   2023-03-13 (Mon, 13 Mar 2023)

  Changed paths:
    M include/ui/console.h
    M ui/console.c
    M ui/vnc.c
    M ui/vnc.h

  Log Message:
  -----------
  ui: keep current cursor with QemuConsole

Keeping the current cursor around is useful, not only for VNC, but for
other displays. Let's move it down, see the following patches for other
usages.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


  Commit: de00b60db42dd88ce9aa7c77f5125a8a56308706
      
https://github.com/qemu/qemu/commit/de00b60db42dd88ce9aa7c77f5125a8a56308706
  Author: Marc-André Lureau <marcandre.lureau@redhat.com>
  Date:   2023-03-13 (Mon, 13 Mar 2023)

  Changed paths:
    M ui/console.c

  Log Message:
  -----------
  ui: set cursor upon listener registration

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


  Commit: 6effaa16ac9846e7d6197ee54a0551fba61aecd7
      
https://github.com/qemu/qemu/commit/6effaa16ac9846e7d6197ee54a0551fba61aecd7
  Author: Marc-André Lureau <marcandre.lureau@redhat.com>
  Date:   2023-03-13 (Mon, 13 Mar 2023)

  Changed paths:
    M ui/console.c

  Log Message:
  -----------
  ui: set cursor position upon listener registration

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


  Commit: 6f2688f776ea2500fa2b5055b3de5df1c8473ef5
      
https://github.com/qemu/qemu/commit/6f2688f776ea2500fa2b5055b3de5df1c8473ef5
  Author: Marc-André Lureau <marcandre.lureau@redhat.com>
  Date:   2023-03-13 (Mon, 13 Mar 2023)

  Changed paths:
    M ui/sdl2.c

  Log Message:
  -----------
  ui/sdl: get the GL context from the window

There is no guarantee to have a current GL context here. The current
code seems to rely on the renderer using a GL backend, and to set a
current GL context. But this is not always the case, for example if the
renderer backend is DirectX.

This change is enough to fix using virgl with sdl2 on win32, on my setup.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


  Commit: aa34554a99971b2b95d48e8144c5bfc70927c09f
      
https://github.com/qemu/qemu/commit/aa34554a99971b2b95d48e8144c5bfc70927c09f
  Author: Marc-André Lureau <marcandre.lureau@redhat.com>
  Date:   2023-03-13 (Mon, 13 Mar 2023)

  Changed paths:
    M ui/shader/texture-blit-flip.vert
    M ui/shader/texture-blit.frag
    M ui/shader/texture-blit.vert

  Log Message:
  -----------
  ui/shader: fix #version directive must occur on first line

ANGLE fails to compile shaders otherwise.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


  Commit: 1f086ef642edb9489af30753ef49e5ee5dbbba95
      
https://github.com/qemu/qemu/commit/1f086ef642edb9489af30753ef49e5ee5dbbba95
  Author: Marc-André Lureau <marcandre.lureau@redhat.com>
  Date:   2023-03-13 (Mon, 13 Mar 2023)

  Changed paths:
    M ui/egl-helpers.c

  Log Message:
  -----------
  ui/egl: print EGL error, helping debugging

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>


  Commit: 82f483dd22c15277cea6047fd46671467eb289a9
      
https://github.com/qemu/qemu/commit/82f483dd22c15277cea6047fd46671467eb289a9
  Author: Marc-André Lureau <marcandre.lureau@redhat.com>
  Date:   2023-03-13 (Mon, 13 Mar 2023)

  Changed paths:
    M ui/sdl2.c

  Log Message:
  -----------
  ui/sdl: add QEMU_ENABLE_SDL_LOGGING setting/environment

Enable SDL logging when QEMU_ENABLE_SDL_LOGGING variable is set, as
suggested by Sam Lantinga, upstream SDL maintainer.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


  Commit: da3f7a3ab9ea0091955b58f8909dfcee01f4043e
      
https://github.com/qemu/qemu/commit/da3f7a3ab9ea0091955b58f8909dfcee01f4043e
  Author: Marc-André Lureau <marcandre.lureau@redhat.com>
  Date:   2023-03-13 (Mon, 13 Mar 2023)

  Changed paths:
    M ui/sdl2.c

  Log Message:
  -----------
  ui/sdl: try to instantiate the matching opengl renderer

-display sdl,gl=es didn't actually use OpenGL ES.

Using OpenGL ES allows to use ANGLE, which works generally better than
Windows/OEM OpenGL driver.

(note: users can still bypass the QEMU choice with SDL_RENDER_DRIVER
environment variable)

(note: for some reason, specifying a driver disables batching and
breaks rendering, so enable it explicitly)

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


  Commit: 0e1be59ed9b3b50aa7e66669e94aabdf0c3d80d2
      
https://github.com/qemu/qemu/commit/0e1be59ed9b3b50aa7e66669e94aabdf0c3d80d2
  Author: Marc-André Lureau <marcandre.lureau@redhat.com>
  Date:   2023-03-13 (Mon, 13 Mar 2023)

  Changed paths:
    M include/ui/egl-helpers.h
    M ui/dbus.c
    M ui/egl-headless.c
    M ui/egl-helpers.c
    M ui/spice-core.c

  Log Message:
  -----------
  ui: introduce egl_init()

Future patches will introduce EGL support on win32 (too late for 8.0
though). Having a common place for EGL initialization and error handling
will make it simpler.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


  Commit: 84a0a2ef0a073fdfcf4a79686e67e7edbcacad34
      
https://github.com/qemu/qemu/commit/84a0a2ef0a073fdfcf4a79686e67e7edbcacad34
  Author: Marc-André Lureau <marcandre.lureau@redhat.com>
  Date:   2023-03-13 (Mon, 13 Mar 2023)

  Changed paths:
    M meson.build
    M tests/qtest/meson.build
    M ui/dbus-listener.c
    M ui/dbus.c
    M ui/meson.build

  Log Message:
  -----------
  ui/dbus: do not require opengl & gbm

Allow to build & use the DBus display without 3d/GPU acceleration support.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


  Commit: 4814d3cbf9f921b6f60a384b4aa3fc3151fdd3a7
      
https://github.com/qemu/qemu/commit/4814d3cbf9f921b6f60a384b4aa3fc3151fdd3a7
  Author: Marc-André Lureau <marcandre.lureau@redhat.com>
  Date:   2023-03-13 (Mon, 13 Mar 2023)

  Changed paths:
    M ui/dbus-listener.c
    M ui/dbus.c

  Log Message:
  -----------
  ui/dbus: restrict opengl to gbm-enabled config

We can enable EGL later for non-GBM hosts.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


  Commit: 13e269f64aae28b76a9909eed445dfe526086766
      
https://github.com/qemu/qemu/commit/13e269f64aae28b76a9909eed445dfe526086766
  Author: Ivan Klokov <ivan.klokov@syntacore.com>
  Date:   2023-03-14 (Tue, 14 Mar 2023)

  Changed paths:
    M disas/riscv.c

  Log Message:
  -----------
  disas/riscv: Fix slli_uw decoding

The decoding of the slli_uw currently contains decoding
error: shamt part of opcode has six bits, not five.

Fixes 3de1fb71("target/riscv: update disas.c for xnor/orn/andn and slli.uw")

Signed-off-by: Ivan Klokov <ivan.klokov@syntacore.com>
Reviewed-by: Philipp Tomsich <philipp.tomsich@vrull.eu>
Acked-by: Alistair Francis <alistair.francis@wdc.com>
Message-Id: <20230227090228.17117-1-ivan.klokov@syntacore.com>
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>


  Commit: 0d581506de803204c5a321100afa270573382932
      
https://github.com/qemu/qemu/commit/0d581506de803204c5a321100afa270573382932
  Author: Mikhail Tyutin <m.tyutin@yadro.com>
  Date:   2023-03-14 (Tue, 14 Mar 2023)

  Changed paths:
    M disas/riscv.c

  Log Message:
  -----------
  Fix incorrect register name in disassembler for fmv,fabs,fneg instructions

Fix incorrect register name in RISC-V disassembler for fmv,fabs,fneg 
instructions

Signed-off-by: Mikhail Tyutin <m.tyutin@yadro.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Message-Id: <3454991f-7f64-24c3-9a36-f5fa2cc389e1@yadro.com>
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>


  Commit: 1d7e672700d0da77d9bef1acaa3cd9791878bde3
      
https://github.com/qemu/qemu/commit/1d7e672700d0da77d9bef1acaa3cd9791878bde3
  Author: Damien Hedde <damien.hedde@dahe.fr>
  Date:   2023-03-14 (Tue, 14 Mar 2023)

  Changed paths:
    M .mailmap
    M MAINTAINERS

  Log Message:
  -----------
  MAINTAINERS: update my email address for the clock framework

Also update mailmap

Signed-off-by: Damien Hedde <damien.hedde@dahe.fr>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Luc Michel <luc@lmichel.fr>
Message-Id: <20230213105227.2357-1-damien.hedde@dahe.fr>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>


  Commit: fcc8f37ca3eca968932e5da716ec5e7fc05fdcf4
      
https://github.com/qemu/qemu/commit/fcc8f37ca3eca968932e5da716ec5e7fc05fdcf4
  Author: Markus Armbruster <armbru@redhat.com>
  Date:   2023-03-14 (Tue, 14 Mar 2023)

  Changed paths:
    M MAINTAINERS

  Log Message:
  -----------
  MAINTAINERS: Remove CXL maintainer Ben Widawsky

Ben is no longer with intel.  He told me he expected to get back to
CXL, but it's not happening as quickly as he'd like, and that it's
best to remove him as maintainer.  So let's do that.

Thank you for serving as maintainer, Ben!

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Message-Id: <20230220212437.1462314-1-armbru@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>


  Commit: bf89cf14cd6b15e99d17eca62cbc16a22c485635
      
https://github.com/qemu/qemu/commit/bf89cf14cd6b15e99d17eca62cbc16a22c485635
  Author: Peter Maydell <peter.maydell@linaro.org>
  Date:   2023-03-14 (Tue, 14 Mar 2023)

  Changed paths:
    M .mailmap
    M MAINTAINERS
    M qemu-options.hx

  Log Message:
  -----------
  Merge tag 'trivial-branch-for-8.0-pull-request' of 
https://gitlab.com/laurent_vivier/qemu into staging

trivial branch pull request 20230314

Update MAINTAINER file
Fix typo in qemu-options.hx

# -----BEGIN PGP SIGNATURE-----
#
# iQJGBAABCAAwFiEEzS913cjjpNwuT1Fz8ww4vT8vvjwFAmQQe1ESHGxhdXJlbnRA
# dml2aWVyLmV1AAoJEPMMOL0/L748qpwP/i6k8Jhy9YIN9J/+V/XE6i/KM5ce29zZ
# 8wV7s7/SRobVCFeD4L44Yb4eyyh+XGPrVPosjkloAhM36lfq+2DBWT7A+qjU8PoG
# 3jiRi/pSn+Nc+BtZgKOEWc3FNGjCCBJMXWKOf0XC5djwujth1AEh+VKXyly0GaQx
# 5DY50/VyGCYskBDy2Pv1jUHAiCHBprDOKtxGaM8wB0XIajnAE2znT1NIVOfzWHO1
# HqoWT/Mery2jN1/80rAstPyQX4tYo4C1wXFf3kwfjJibM3Vwd8XOpYTUmeGFGCZ5
# DttPzi3gS7ZkEPQsPMKuNt8ayag62NeOgnoRlsjNsWwnqHkVb1QxN5liA1ZgOWtj
# xbsQk1Ko2YUfG1a/W3hq4AgTZRiuSe2/H4K4sV5kMwVgCNci0OL7a1oNP6JloQm+
# MGRr/nP9GwwnZyyF4CLHW5pGntly0T4C2Ij+AytstBL4QbuzxJJx7FugGrRxdiE8
# +odpUGo+21TxR3kLq9W4xrEwz/A5VNnpUdLFGHK6iuNjNdHNa+7umtHwB9YLHbjP
# V9XQv60+nnbVoTUYx+/IrZy4mwB3M853kjNMbOQrlX94PBlEXlk1Ro6PKGSJrzcT
# xSLVfsJynsU/8CjfJttXsNEYDk6DcdBvw/aj14QM96Flcfwal+jy8YnIIguPQp3Z
# /ORSiS2uSWvp
# =75ca
# -----END PGP SIGNATURE-----
# gpg: Signature made Tue 14 Mar 2023 13:49:05 GMT
# gpg:                using RSA key CD2F75DDC8E3A4DC2E4F5173F30C38BD3F2FBE3C
# gpg:                issuer "laurent@vivier.eu"
# gpg: Good signature from "Laurent Vivier <lvivier@redhat.com>" [full]
# gpg:                 aka "Laurent Vivier <laurent@vivier.eu>" [full]
# gpg:                 aka "Laurent Vivier (Red Hat) <lvivier@redhat.com>" 
[full]
# Primary key fingerprint: CD2F 75DD C8E3 A4DC 2E4F  5173 F30C 38BD 3F2F BE3C

* tag 'trivial-branch-for-8.0-pull-request' of 
https://gitlab.com/laurent_vivier/qemu:
  MAINTAINERS: Remove CXL maintainer Ben Widawsky
  MAINTAINERS: update my email address for the clock framework
  qemu-options.hx: remove stray quote

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>


  Commit: caaf72fe471e1a1e4c7c2b93d29726267b49383b
      
https://github.com/qemu/qemu/commit/caaf72fe471e1a1e4c7c2b93d29726267b49383b
  Author: Peter Maydell <peter.maydell@linaro.org>
  Date:   2023-03-14 (Tue, 14 Mar 2023)

  Changed paths:
    M disas/riscv.c

  Log Message:
  -----------
  Merge tag 'pull-riscv-to-apply-20230314' of 
https://github.com/alistair23/qemu into staging

Seventh RISC-V PR for 8.0

* Fix slli_uw decoding
* Fix incorrect register name in disassembler for fmv,fabs,fneg instructions

# -----BEGIN PGP SIGNATURE-----
#
# iQEzBAABCAAdFiEE9sSsRtSTSGjTuM6PIeENKd+XcFQFAmQQFj4ACgkQIeENKd+X
# cFTDowgAhgganhgtSIKwCzQsfSh9P1KOnftmeRLtGQEC36YeJQc6CyqrgwOWCbBy
# +IEs/0/mXT0g70xaisQT2BKR9J6kevb1aHf790J13MmdFZmkpzTmS5SCQCHgUVjG
# SlFf2d2sIoLeBcZYorQSTZdRHjKG3KQ1y0dFWfaqYYwHVqko67fQhKTcqfu3Sn/l
# SKLeD3hz8iDc2Dh8HMls945rpQxATVTj5+/Fi8p0VL1194XK9dXRW4dpACZYJJEv
# T3u+tK5GUgLVXfxlXLxbk4yw4DtNofU0gaQNAfd2i6E9TImhstrvGDojt2pGrY8Y
# crLkAAxsOH8xNWYZdD5tcFrDZDrPvw==
# =oElO
# -----END PGP SIGNATURE-----
# gpg: Signature made Tue 14 Mar 2023 06:37:50 GMT
# gpg:                using RSA key F6C4AC46D4934868D3B8CE8F21E10D29DF977054
# gpg: Good signature from "Alistair Francis <alistair@alistair23.me>" [full]
# Primary key fingerprint: F6C4 AC46 D493 4868 D3B8  CE8F 21E1 0D29 DF97 7054

* tag 'pull-riscv-to-apply-20230314' of https://github.com/alistair23/qemu:
  Fix incorrect register name in disassembler for fmv,fabs,fneg instructions
  disas/riscv: Fix slli_uw decoding

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>


  Commit: 7c3cc428c7e7eb68771c3b4e76426ece7a0b5ad1
      
https://github.com/qemu/qemu/commit/7c3cc428c7e7eb68771c3b4e76426ece7a0b5ad1
  Author: Peter Maydell <peter.maydell@linaro.org>
  Date:   2023-03-14 (Tue, 14 Mar 2023)

  Changed paths:
    M audio/audio_int.h
    M audio/dbusaudio.c
    M hw/display/qxl-render.c
    M hw/display/qxl.c
    M hw/display/vmware_vga.c
    M include/ui/console.h
    M include/ui/egl-helpers.h
    M meson.build
    M tests/qtest/meson.build
    M ui/console.c
    M ui/cursor.c
    M ui/dbus-clipboard.c
    M ui/dbus-console.c
    M ui/dbus-listener.c
    M ui/dbus.c
    M ui/egl-headless.c
    M ui/egl-helpers.c
    M ui/meson.build
    M ui/sdl2.c
    M ui/shader/texture-blit-flip.vert
    M ui/shader/texture-blit.frag
    M ui/shader/texture-blit.vert
    M ui/spice-core.c
    M ui/spice-display.c
    M ui/vnc.c
    M ui/vnc.h

  Log Message:
  -----------
  Merge tag 'display-pull-request' of https://gitlab.com/marcandre.lureau/qemu 
into staging

ui: dbus & misc fixes

v2:
- fix crash spotted by avocado VNC test

# -----BEGIN PGP SIGNATURE-----
#
# iQJQBAABCAA6FiEEh6m9kz+HxgbSdvYt2ujhCXWWnOUFAmQPgRIcHG1hcmNhbmRy
# ZS5sdXJlYXVAcmVkaGF0LmNvbQAKCRDa6OEJdZac5QDFEACef6cbSlTtQji1hV+x
# FM2ESPn0tgg9YVmtjsC1zqcdOEKsbs+2SQxBSs6tvQGwX5CgtnmyEsH5/Y4+TU64
# r6dvGAhokEkhiyHwnC+DFw0ajYAaDK96RfJ02tPQ58lrBTyioKZH9K/3mB6pMFEG
# aroE1Z3SQqqMnP+zsQ64nYuJrTXnv9iFejIxnuou+LyXdxmwLWAl5e47eZYaTmrh
# RrJYbCyHbiL5bx6mOmAL1XlO9jJD4o0FrqRWFn4zz1T+w4FvUC/uX52XwRn1G/Hk
# oHNnJBt95czCQ3S43xX0VTVrT9vLAptQzQc45KfegRL3XqPLgTgn4eocBQCYLmHZ
# jKnUsE9VjBNCbkIzgfN9RP/zEklD/3lAHzrW5US7q7oTTYksyxN+pmvfrYbUvKWP
# Oq/EQtpv66R06hjpxD76ime4+Y8WN7I3F/fJS8jl2QDy5I/2IzFSIOD9Rt5PGbky
# xsIdr7QPzlN4ZKpnsRCNeEPwcR/kiv4grIF7jBAxxz3k5UENtIVSJkHBEEQjMy8O
# +ZCvnHsbjPGxFtnlNTvtGsR2hiKYRCJSG/C4YQryTDWoScomlF6UWxzbapjs9CRW
# /GR+98Z2QfwOtRRRteRRt9UFdC/T0DquxnRyJxa5N4VxMiWzmhtCOzmn4oc1THbG
# 5UqDhRNSWEJn9iIvKca5ahSWLw==
# =Rjcs
# -----END PGP SIGNATURE-----
# gpg: Signature made Mon 13 Mar 2023 20:01:22 GMT
# gpg:                using RSA key 87A9BD933F87C606D276F62DDAE8E10975969CE5
# gpg:                issuer "marcandre.lureau@redhat.com"
# gpg: Good signature from "Marc-André Lureau <marcandre.lureau@redhat.com>" 
[full]
# gpg:                 aka "Marc-André Lureau <marcandre.lureau@gmail.com>" 
[full]
# Primary key fingerprint: 87A9 BD93 3F87 C606 D276  F62D DAE8 E109 7596 9CE5

* tag 'display-pull-request' of https://gitlab.com/marcandre.lureau/qemu:
  ui/dbus: restrict opengl to gbm-enabled config
  ui/dbus: do not require opengl & gbm
  ui: introduce egl_init()
  ui/sdl: try to instantiate the matching opengl renderer
  ui/sdl: add QEMU_ENABLE_SDL_LOGGING setting/environment
  ui/egl: print EGL error, helping debugging
  ui/shader: fix #version directive must occur on first line
  ui/sdl: get the GL context from the window
  ui: set cursor position upon listener registration
  ui: set cursor upon listener registration
  ui: keep current cursor with QemuConsole
  ui: rename cursor_{get->ref}, return it
  ui: rename cursor_{put->unref}
  meson: ensure dbus-display generated code is built before other units
  ui/dbus: set mouse is-absolute during console creation
  audio/dbus: there are no sender for p2p mode
  ui/dbus: unregister clipboard on connection close
  ui/dbus: initialize cursor_fb

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>


Compare: https://github.com/qemu/qemu/compare/27a03171d02e...7c3cc428c7e7



reply via email to

[Prev in Thread] Current Thread [Next in Thread]