Yes, display 2 is showing the same content as display 1.
I use spice-streaming-agent with the goal that it can make the video more
fluent and use less bandwidth, because in my condition classic SPICE can't do
well with playing HD video and use high bandwidth. I think SPICE have
resolution to d
On Wed, 2018-11-07 at 18:23 +0100, Lukáš Hrázký wrote:
> 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 ino changes.
typo: "ino"?
Otherwise looks OK
>
> Signed-off-
On Thu, 2018-11-08 at 11:57 -0500, Frediano Ziglio wrote:
> >
> > On Mon, 2018-10-29 at 11:58 +, Frediano Ziglio wrote:
> > > To set up a listening socket usually you call in sequence:
> > > - socket;
> > > - bind;
> > > - listen.
> > > Usually if you try to listen to a post already in listeni
On Wed, 2018-11-07 at 18:23 +0100, Lukáš Hrázký wrote:
> The message serves for passing the device address and device display
> ID
"serves for passing..." is a little strange to my ear. "serves to
pass..." sounds OK. Or "is used for passing..."
> information for all display channels from SPICE s
>
> On Mon, 2018-10-29 at 11:58 +, Frediano Ziglio wrote:
> > To set up a listening socket usually you call in sequence:
> > - socket;
> > - bind;
> > - listen.
> > Usually if you try to listen to a post already in listening state
> > the bind will fail.
>
> I find this sentence confusing...
On Mon, 2018-10-29 at 11:58 +, Frediano Ziglio wrote:
> To set up a listening socket usually you call in sequence:
> - socket;
> - bind;
> - listen.
> Usually if you try to listen to a post already in listening state
> the bind will fail.
I find this sentence confusing... If you try to *liste
I'm just trusting you that CI is using f29 ;)
Acked-by: Jonathon Jongsma
On Thu, 2018-11-08 at 08:59 +, Frediano Ziglio wrote:
> Is not more necessary to downgrade asciidoc, the issue was fixed
> in Fedora 29, now used by CI.
>
> Signed-off-by: Frediano Ziglio
> --
> See https://gitlab.fr
On Thu, 2018-11-08 at 11:05 +0100, Lukáš Hrázký wrote:
> Hello,
>
> On Thu, 2018-11-08 at 07:49 +0100, Gerd Hoffmann wrote:
> > Hi,
> >
> > > + * The device_display_id_{start,count} denotes the sequence of
> > > device display
> > > + * IDs that map to the zero-based sequence of monitor IDs
> >
Hello,
On Mon, 2018-11-05 at 17:09 -0600, Jonathon Jongsma wrote:
> This is just a proof of concept utility that takes a PCI device address
> and a monitor ID and finds the xrandr output associated with that
> monitor id.
> ---
>
> Changes in v2:
> - used different format for specifying the PCI
On Thu, 2018-11-08 at 05:18 -0500, Frediano Ziglio wrote:
> >
> > 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ý
> > ---
> > src/vdagent/v
Hello,
On Thu, 2018-11-08 at 17:38 +0800, wangjiedong wrote:
> Recently I compile spice-protocol-0.12.15 and
> spice-server-0.14.1(--enable-lz4=yes --enable-gstreamer=yes
> --enable-smartcard=yes --with-sasl=yes) on host Ubuntu 18.04, and compile
> spice-protocol-0.12.15 and spice-streaming-ag
On Wed, 2018-11-07 at 16:01 -0600, Jonathon Jongsma wrote:
> On Wed, 2018-11-07 at 11:49 +0100, Lukáš Hrázký wrote:
> > Adds a function to let QEMU provide information to identify graphics
> > devices and their monitors in the guest. The function
> > (spice_qxl_set_device_info) sets the device addr
>
> 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ý
> ---
> src/vdagent/vdagent.c| 69
> src/vdagentd-
Hello,
On Thu, 2018-11-08 at 07:49 +0100, Gerd Hoffmann wrote:
> Hi,
>
> > + * The device_display_id_{start,count} denotes the sequence of device
> > display
> > + * IDs that map to the zero-based sequence of monitor IDs provided by
> > monitors
> > + * config on this interface. For example w
On Thu, 2018-11-08 at 08:53 +, Frediano Ziglio wrote:
> Just cosmetic changes, the static function had underscores to
> distinguish from the exported one which was recently renamed.
>
> Signed-off-by: Frediano Ziglio
> ---
> server/char-device.c | 19 +--
> 1 file changed, 9
Recently I compile spice-protocol-0.12.15 and
spice-server-0.14.1(--enable-lz4=yes --enable-gstreamer=yes
--enable-smartcard=yes --with-sasl=yes) on host Ubuntu 18.04, and compile
spice-protocol-0.12.15 and spice-streaming-agent-0.2 on guest VM.
I use remote-viewer to connect guest VM , and t
ping
>
> To set up a listening socket usually you call in sequence:
> - socket;
> - bind;
> - listen.
> Usually if you try to listen to a post already in listening state
> the bind will fail. However is possible that the listen will fail,
> like in this sequence:
> - socket 1;
> - bind 1;
> - soc
Is not more necessary to downgrade asciidoc, the issue was fixed
in Fedora 29, now used by CI.
Signed-off-by: Frediano Ziglio
--
See https://gitlab.freedesktop.org/fziglio/spice/pipelines/7888
(which contains other issues related to Fedora 29 but not this one)
---
.gitlab-ci.yml | 1 -
1 file ch
Just cosmetic changes, the static function had underscores to
distinguish from the exported one which was recently renamed.
Signed-off-by: Frediano Ziglio
---
server/char-device.c | 19 +--
1 file changed, 9 insertions(+), 10 deletions(-)
diff --git a/server/char-device.c b/serv
>
> Hello,
>
> this is a small refactor I did for the char-device write buffer
> creation, in particular for creating a write buffer for the vd_agent.
>
> Of note, I didn't know how to test the smartcard and spicevmc codepaths,
> I just assume they should be fine...
>
> Lukáš Hrázký (2):
> ch
20 matches
Mail list logo