>
> d0cbd9618f0b removed the ability to use git-version-gen to generate
> proper version string.
> Generate .tarball-version file in the distribution file to allow
> building from tarball.
> Do not use MESON_SOURCE_ROOT when calling git-version-gen command as
> this won't be expanded.
> Change dir
d0cbd9618f0b removed the ability to use git-version-gen to generate
proper version string.
Generate .tarball-version file in the distribution file to allow
building from tarball.
Do not use MESON_SOURCE_ROOT when calling git-version-gen command as
this won't be expanded.
Change directory in git-ver
> On Wed, Jan 23, 2019 at 09:48:43AM +, Frediano Ziglio wrote:
> > d0cbd9618f0b removed the ability to use git-version-gen to
> > generate proper version string.
> > Generate .tarball-version file in the distribution file to
> > allow building from tarball.
> > Do not use MESON_SOURCE_ROOT call
Zlib structure take up more than 1MB and it is rarely used nowadays
as it is not much effective.
Initialise it only when necessary saving some memory in the normal
case.
Signed-off-by: Frediano Ziglio
---
server/image-encoders.c | 19 +++
1 file changed, 11 insertions(+), 8 delet
> On Wed, Jan 23, 2019 at 10:09:25AM +, Frediano Ziglio wrote:
> > This fixes Gitlab issue #9
> > (cfr https://gitlab.freedesktop.org/spice/usbredir/issues/9).
> >
> > Signed-off-by: Frediano Ziglio
> > ---
> > usbredirserver/usbredirserver.c | 7 +++
> > 1 file changed, 7 insertions(+)
Hi,
On Mon, Jan 28, 2019 at 1:23 PM Victor Toso wrote:
>
> From: Victor Toso
>
> To help track race conditions and bad/unexpected behavior in general.
Awesome! I was planning on sending something similar too.
>
> Signed-off-by: Victor Toso
> ---
> src/spice-gtk-session.c | 24
Acked-by: Jonathon Jongsma
On Mon, 2019-01-28 at 11:14 +0100, Lukáš Hrázký wrote:
> Instead of one unsupported example, present two real world examples.
>
> Signed-off-by: Lukáš Hrázký
> ---
> server/spice-qxl.h | 32 ++--
> 1 file changed, 22 insertions(+), 10 del
On Mon, 2019-01-28 at 15:09 +0100, Lukáš Hrázký wrote:
> Adds serialization of the GraphicsDeviceInfo message and sends it to
> the
> server when it starts to stream.
>
> Signed-off-by: Lukáš Hrázký
> Reviewed-by: Jonathon Jongsma
> ---
> configure.ac | 2 +-
> src/spice-strea
Hi,
On Mon, Jan 28, 2019 at 1:23 PM Victor Toso wrote:
>
> From: Victor Toso
>
> * Attaching the 'guest_' prefix for actions that were started from
> guest agent, those renames are:
>
> clipboard_grab -> guest_clipboard_grab
> clipboard_release -> guest_clipboard_release
> clipboard_request ->
Acked-by: Jonathon Jongsma
On Mon, 2019-01-28 at 15:09 +0100, Lukáš Hrázký wrote:
> Receives the GraphicsDeviceInfo message from the streaming agent and
> stores the data in a list on the streaming device.
>
> Signed-off-by: Lukáš Hrázký
> ---
> server/display-limits.h| 3 ++
> server/re
Adds an interface method to the FrameCapture class to get the device
display info (device address and device display id) for each display of
the graphics device that is captured.
Also adds functions to the API implementing this functionality for X11
in variants with and without DRM (the non-DRM ve
Receives the GraphicsDeviceInfo message from the streaming agent and
stores the data in a list on the streaming device.
Signed-off-by: Lukáš Hrázký
---
server/display-limits.h| 3 ++
server/red-qxl.c | 2 +-
server/red-stream-device.c | 78 +-
The graphics_device_info message contains the device display ID
information (device address and device display ID). Stores the data in a
hash table in vdagent.
Signed-off-by: Lukáš Hrázký
Acked-by: Jonathon Jongsma
---
configure.ac | 2 +-
src/vdagent/vdagent.c| 3 ++
Sends the device address and device display IDs to the vdagent. The
message is sent either in reaction to the SPICE_MSGC_MAIN_AGENT_START
message or when the graphics device info changes.
Signed-off-by: Lukáš Hrázký
Acked-by: Jonathon Jongsma
---
configure.ac | 2 +-
meson.build
Adds serialization of the GraphicsDeviceInfo message and sends it to the
server when it starts to stream.
Signed-off-by: Lukáš Hrázký
Reviewed-by: Jonathon Jongsma
---
configure.ac | 2 +-
src/spice-streaming-agent.cpp | 60 +--
2 files changed,
Hello,
this series introduces a new mechanism to identify monitors across the
host and guest boundary, using the pair (device_address and
device_display_id). device_address is a HW address of a graphics device
(a PCI address to be specific, though other address domains can be
used as well), device
Adds the graphics device info from the streaming device(s) to the
VDAgentGraphicsDeviceInfo message sent to the vd_agent.
Signed-off-by: Lukáš Hrázký
Acked-by: Jonathon Jongsma
---
server/red-stream-device.c | 18 +++
server/red-stream-device.h | 7 +
server/reds.c | 6
On most distros, spice-vdagent will be autostarted as part of the
startup of the desktop environment session. This is done by
spice-vdagent.desktop, which has no way of checking if we are in a virt
environment with the needed devices present.
Currently, if /dev/virtio-ports/com.redhat.spice.0 is m
On Wed, Jan 23, 2019 at 09:48:43AM +, Frediano Ziglio wrote:
> d0cbd9618f0b removed the ability to use git-version-gen to
> generate proper version string.
> Generate .tarball-version file in the distribution file to
> allow building from tarball.
> Do not use MESON_SOURCE_ROOT calling git-vers
Acked-by: Christophe Fergeau
On Wed, Jan 23, 2019 at 10:04:19AM +, Frediano Ziglio wrote:
> Signed-off-by: Frediano Ziglio
> ---
> src/spice-marshal.txt | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/src/spice-marshal.txt b/src/spice-marshal.txt
> index 92087c58..cf35790e 100644
On Wed, Jan 23, 2019 at 10:09:25AM +, Frediano Ziglio wrote:
> This fixes Gitlab issue #9
> (cfr https://gitlab.freedesktop.org/spice/usbredir/issues/9).
>
> Signed-off-by: Frediano Ziglio
> ---
> usbredirserver/usbredirserver.c | 7 +++
> 1 file changed, 7 insertions(+)
>
> diff --git
On Mon, Jan 28, 2019 at 2:27 PM Christophe Fergeau
wrote:
> Hey,
>
> On Fri, Jan 25, 2019 at 09:48:52AM +0200, Yuri Benditovich wrote:
> > Even if initial display resolution is not available at driver start, try
> > to find it in the registry.
>
> > Then the driver can prevent black screen
> > on
On Wed, Jan 23, 2019 at 07:46:16PM +, Frediano Ziglio wrote:
> Zlib structure take up more than 1MB and it is rarely used nowadays
> as it is not much effective.
> Initialise it only when necessary saving some memory in the normal
> case.
>
> Signed-off-by: Frediano Ziglio
> ---
> server/ima
Hey,
On Fri, Jan 25, 2019 at 09:48:52AM +0200, Yuri Benditovich wrote:
> Even if initial display resolution is not available at driver start, try
> to find it in the registry.
> Then the driver can prevent black screen
> on uninstall/disable also when it was installed on UEFI machine after
> the
From: Victor Toso
* Attaching the 'guest_' prefix for actions that were started from
guest agent, those renames are:
clipboard_grab -> guest_clipboard_grab
clipboard_release -> guest_clipboard_release
clipboard_request -> guest_clipboard_request_data
clipboard_request_send_data -> guest_clipbo
From: Victor Toso
To help track race conditions and bad/unexpected behavior in general.
Signed-off-by: Victor Toso
---
src/spice-gtk-session.c | 24
1 file changed, 16 insertions(+), 8 deletions(-)
diff --git a/src/spice-gtk-session.c b/src/spice-gtk-session.c
index a
On Wed, Jan 23, 2019 at 10:30:21PM +0100, Victor Toso wrote:
> From: Victor Toso
>
> Odd minor versions are for development version, which means that
> checks on 1.9.x should be considered for development while normal
> environments should be running the stable.
>
> Some timeline of stable relea
Hi,
> > If the above explains things better to you I should probably replace the
> > commit message with that.
>
> This is actually my first review of a driver that I'm not familiar with.
> I'm not quite sure how much in depth understanding that is required to
> put my ack on it.
Usually I try
Den 28.01.2019 09.59, skrev Gerd Hoffmann:
> On Fri, Jan 25, 2019 at 06:25:27PM +0100, Noralf Trønnes wrote:
>>
>>
>> Den 18.01.2019 13.20, skrev Gerd Hoffmann:
>>> Switch qxl over to the new generic fbdev emulation.
>>>
>>> Signed-off-by: Gerd Hoffmann
>>> ---
>>> drivers/gpu/drm/qxl/qxl_displ
Den 28.01.2019 09.10, skrev Gerd Hoffmann:
>>> The cursor must be set again after creating the primary surface.
>>> Also drop the error message.
>
>>> if (!bo->is_primary) {
>>> - if (!same_shadow)
>>> + if (!same_shadow) {
>>> qxl_io_create_primary(qd
Calls the new SPICE QXL interface function spice_qxl_set_device_info to
set the hardware address of the graphics device represented by the QXL
interface (e.g. a PCI path) and the device display IDs (the IDs of the
device's monitors that belong to this QXL interface).
Also stops using the deprecate
Hi,
On Sun, Jan 27, 2019 at 06:14:20PM +0100, Jakub Janků wrote:
> On X11, if the owner in GdkEventOwnerChange is set to NULL,
> it means there's no data in the clipboard, so it's pointless to
> request targets as the request will fail anyway.
>
> On Wayland, owner is always NULL, so don't do any
Instead of one unsupported example, present two real world examples.
Signed-off-by: Lukáš Hrázký
---
server/spice-qxl.h | 32 ++--
1 file changed, 22 insertions(+), 10 deletions(-)
diff --git a/server/spice-qxl.h b/server/spice-qxl.h
index e7af5e5e..2f47910b 100644
-
Hi,
I tried to fix this bug in a less radical way, but my patch unfortunately
did not cover all the cases.
I obtained some logs from James Harvey which make the situation clearer -
it can be found here:
https://termbin.com/40un
So I'll try to explain what's happening:
James uses KDE which has a
On Fri, Jan 25, 2019 at 06:25:27PM +0100, Noralf Trønnes wrote:
>
>
> Den 18.01.2019 13.20, skrev Gerd Hoffmann:
> > Switch qxl over to the new generic fbdev emulation.
> >
> > Signed-off-by: Gerd Hoffmann
> > ---
> > drivers/gpu/drm/qxl/qxl_display.c | 7 ---
> > drivers/gpu/drm/qxl/qxl_d
> > The cursor must be set again after creating the primary surface.
> > Also drop the error message.
> > if (!bo->is_primary) {
> > - if (!same_shadow)
> > + if (!same_shadow) {
> > qxl_io_create_primary(qdev, 0, bo);
> > + qxl_primary
36 matches
Mail list logo