Re: [Spice-devel] No more mouse cursor in vms

2013-07-15 Thread Hans de Goede
Hi, On 07/14/2013 05:59 PM, Frédéric wrote: Hi spice developpers, I just updated my Fedora 18 to F19, with virt-preview activated. As a consequence (I think so, since I did not start my vms for few weeks), I lost the cursor in my windows VMs (XP and Win7). In safe mode or by switching to VNC

Re: [Spice-devel] Information about video detection

2013-07-15 Thread Matilde Yanez
Hi, I go on the website with another browser (chrome) but i don't think that it can change the result and the qxl driver is installed on the VM. I don't know how to get the size of the stream created, can you explain me? The test that i made is: open the excel file, in full screen, and going up an

Re: [Spice-devel] No more mouse cursor in vms

2013-07-15 Thread agilboa
On 07/14/2013 06:59 PM, Frédéric wrote: Hi spice developpers, I just updated my Fedora 18 to F19, with virt-preview activated. As a consequence (I think so, since I did not start my vms for few weeks), I lost the cursor in my windows VMs (XP and Win7). In safe mode or by switching to VNC mode

Re: [Spice-devel] virtio-net windows drivers

2013-07-15 Thread agilboa
Please check on which virtio-net driver version have you encountered the issues. Thanks, Arnon On 07/15/2013 10:36 AM, Ignazio Cassano wrote: Many thanks. I am wiating their news. At this thime I solved using spice-guest-tools 0.3 2013/7/15 agil...@redhat.com mailto:agil...@redhat.com

Re: [Spice-devel] virtio-net windows drivers

2013-07-15 Thread Vadim Rozenfeld
Hi Inazio, Do you have UsePublishEvents enabled or disabled? If it's on you can try turning it off. In any case it's better to wait Yan or Dmitry to comment on this issue. Best regards, Vadim. - Original Message - From: Ignazio Cassano ignaziocass...@gmail.com To: agil...@redhat.com

Re: [Spice-devel] No more mouse cursor in vms

2013-07-15 Thread Hans de Goede
Hi, On 07/15/2013 09:42 AM, agil...@redhat.com wrote: On 07/14/2013 06:59 PM, Frédéric wrote: Hi spice developpers, I just updated my Fedora 18 to F19, with virt-preview activated. As a consequence (I think so, since I did not start my vms for few weeks), I lost the cursor in my windows VMs

Re: [Spice-devel] virtio-net windows drivers

2013-07-15 Thread agilboa
On 07/15/2013 12:54 PM, Ignazio Cassano wrote: I am using fedora 17 with kvm ... I created a bridge and on the same britge windows xp with spice-guest-tools 0.3 works fine. On the bridge the guest created a virtio net adapter. I cannot see drivers details in fedora 17 virt-manager Yan meant

[Spice-devel] [PATCH xf86-video-qxl 0/4] cleanup and one bug fix

2013-07-15 Thread Alon Levy
The first, second and fourth patches are trivial. The third is a fix for a segmentation fault with DFPS turned on when resizing the monitor, the damage rectangle list ends up containing out of bounds rectangles. The fix I chose is more generic then fixing the dfps code. Alon Levy (4): Xspice:

[Spice-devel] [PATCH xf86-video-qxl 1/4] Xspice: don't pull in kms functions

2013-07-15 Thread Alon Levy
--- src/qxl_driver.c | 5 + 1 file changed, 5 insertions(+) diff --git a/src/qxl_driver.c b/src/qxl_driver.c index ac5408e..b42deb3 100644 --- a/src/qxl_driver.c +++ b/src/qxl_driver.c @@ -1214,10 +1214,15 @@ qxl_init_scrn (ScrnInfoPtr pScrn, Bool kms) pScrn-name =

[Spice-devel] [PATCH xf86-video-qxl 2/4] src/spiceqxl_main_loop: fix typo in comment

2013-07-15 Thread Alon Levy
--- src/spiceqxl_main_loop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spiceqxl_main_loop.c b/src/spiceqxl_main_loop.c index 92579eb..6c1f7d5 100644 --- a/src/spiceqxl_main_loop.c +++ b/src/spiceqxl_main_loop.c @@ -274,7 +274,7 @@ static void

[Spice-devel] [PATCH xf86-video-qxl 3/4] qxl_surface: protect from out of bounds rectangles

2013-07-15 Thread Alon Levy
upload_one_primary_region which is called by dfps for each damage box can contain rectangles that are outside of the primary surface if the primary surface has been destroyed in the mean while. Adding a check at upload_one_primary_region solves this problem and also prevents possibly other future

[Spice-devel] [PATCH xf86-video-qxl 4/4] qxl_surface: remove unused variables, add static where needed

2013-07-15 Thread Alon Levy
--- src/qxl_surface.c | 7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/qxl_surface.c b/src/qxl_surface.c index f82119a..dea3945 100644 --- a/src/qxl_surface.c +++ b/src/qxl_surface.c @@ -484,10 +484,8 @@ image_from_surface_internal(qxl_screen_t *qxl, return

Re: [Spice-devel] [PATCH xf86-video-qxl 3/4] qxl_surface: protect from out of bounds rectangles

2013-07-15 Thread Marc-André Lureau
- Mensaje original - upload_one_primary_region which is called by dfps for each damage box can contain rectangles that are outside of the primary surface if the primary surface has been destroyed in the mean while. Adding a check at upload_one_primary_region solves this problem and

Re: [Spice-devel] [PATCH xf86-video-qxl 1/4] Xspice: don't pull in kms functions

2013-07-15 Thread Marc-André Lureau
- Mensaje original - --- src/qxl_driver.c | 5 + 1 file changed, 5 insertions(+) diff --git a/src/qxl_driver.c b/src/qxl_driver.c index ac5408e..b42deb3 100644 --- a/src/qxl_driver.c +++ b/src/qxl_driver.c @@ -1214,10 +1214,15 @@ qxl_init_scrn (ScrnInfoPtr pScrn, Bool kms)

Re: [Spice-devel] [PATCH xf86-video-qxl 3/4] qxl_surface: protect from out of bounds rectangles

2013-07-15 Thread Alon Levy
- Original Message - - Mensaje original - upload_one_primary_region which is called by dfps for each damage box can contain rectangles that are outside of the primary surface if the primary surface has been destroyed in the mean while. Adding a check at

Re: [Spice-devel] [PATCH xf86-video-qxl 1/4] Xspice: don't pull in kms functions

2013-07-15 Thread Alon Levy
- Original Message - - Mensaje original - --- src/qxl_driver.c | 5 + 1 file changed, 5 insertions(+) diff --git a/src/qxl_driver.c b/src/qxl_driver.c index ac5408e..b42deb3 100644 --- a/src/qxl_driver.c +++ b/src/qxl_driver.c @@ -1214,10 +1214,15 @@

Re: [Spice-devel] vdagent-win-x86

2013-07-15 Thread Ignazio Cassano
Hi, I am sorry If I disturb you again. I am using last stace-guest-tools (0.59) on my windows xp sp3 guests but I got some issues on virtio net like the following bug: http://lists.nongnu.org/archive/html/qemu-devel/2013-06/msg04744.html Have you ever heard anything about it ? I am using fedora

Re: [Spice-devel] virtio-net windows drivers

2013-07-15 Thread Ignazio Cassano
Many thanks. I am wiating their news. At this thime I solved using spice-guest-tools 0.3 2013/7/15 agil...@redhat.com Cc'ing Vadim Yan, the vio-net windows driver developers. I guess they have better answers. Arnon On 07/15/2013 09:12 AM, Ignazio Cassano wrote: Hi, I am sorry If I

Re: [Spice-devel] virtio-net windows drivers

2013-07-15 Thread Ignazio Cassano
Hi Vladim, I do not know what is UsePublichEvents where can I check it ? 2013/7/15 Vadim Rozenfeld vroze...@redhat.com Hi Inazio, Do you have UsePublishEvents enabled or disabled? If it's on you can try turning it off. In any case it's better to wait Yan or Dmitry to comment on this

Re: [Spice-devel] virtio-net windows drivers

2013-07-15 Thread Ignazio Cassano
Hi, I think the virtio net driver is released with spice-guest-tool ... Is it correct ? In other words I installed virtio net and virtio disk drivers contained in virtio-win-0.1-59.iso downloaded from fedora. Then I installed spice-guest-tools-0.59.exe downloaded from spice-space.org. Seems

Re: [Spice-devel] virtio-net windows drivers

2013-07-15 Thread Ignazio Cassano
I read something about UsePublichEvents Seems it is supported in Fedora 19 but I have fedora 17 2013/7/15 Ignazio Cassano ignaziocass...@gmail.com Hi Vladim, I do not know what is UsePublichEvents where can I check it ? 2013/7/15 Vadim Rozenfeld vroze...@redhat.com Hi

Re: [Spice-devel] virtio-net windows drivers

2013-07-15 Thread Yan Vugenfirer
Hi, Ignazio - the driver parameters are found in Device Manager - NetKVM device - Properties - Advanced tab. What network configuration on the host are you using? Bests regards, Yan. On Jul 15, 2013, at 12:22 PM, Ignazio Cassano wrote: I read something about UsePublichEvents

Re: [Spice-devel] virtio-net windows drivers

2013-07-15 Thread Ignazio Cassano
I am using fedora 17 with kvm ... I created a bridge and on the same britge windows xp with spice-guest-tools 0.3 works fine. On the bridge the guest created a virtio net adapter. I cannot see drivers details in fedora 17 virt-manager 2013/7/15 Yan Vugenfirer yvuge...@redhat.com Hi, Ignazio -

Re: [Spice-devel] virtio-net windows drivers

2013-07-15 Thread Ignazio Cassano
Oh, I am sorry. I must wait a lot for looking information you requested, because when I boot with virtio net enabled the xp vm takes a long time to log on and cpu usage is very very high. When I'll have information you requested I'll send you. Many thanks 2013/7/15 agil...@redhat.com On

Re: [Spice-devel] virtio-net windows drivers

2013-07-15 Thread Ignazio Cassano
I booted my vm in safe mode and I can see drive information: Redhat virtio ethernet adapter version 51.64.104.5900 In advanced I cannot see any information about *UsePublicEvents* 2013/7/15 Ignazio Cassano ignaziocass...@gmail.com Oh, I am sorry. I must wait a lot for looking information you

Re: [Spice-devel] virtio-net windows drivers

2013-07-15 Thread Ignazio Cassano
The previous email I sent whas with spice-guest-tools 0.52. Now I am going to install 0.59 2013/7/15 Ignazio Cassano ignaziocass...@gmail.com I booted my vm in safe mode and I can see drive information: Redhat virtio ethernet adapter version 51.64.104.5900 In advanced I cannot see any

Re: [Spice-devel] virtio-net windows drivers

2013-07-15 Thread Ignazio Cassano
Hi, also with spice-guest-tools 1.59 the driver version is: 51.64.104.5900 I found the UsePublicEvents ...it is init.UsePublicEvents and it is disabled 2013/7/15 Ignazio Cassano ignaziocass...@gmail.com The previous email I sent whas with spice-guest-tools 0.52. Now I am going to install 0.59

Re: [Spice-devel] Spice agent for XSpice

2013-07-15 Thread Alon Levy
Hi, On 03/09/2012 11:57 AM, Alon Levy wrote: On Fri, Mar 09, 2012 at 10:46:50AM +0100, Hans de Goede wrote: Hi Eike, Alon, On 03/08/2012 08:33 PM, Eike Hein wrote: Hi, I recently sent a mail to Marc-André Lureau, inquiring about clipboard sharing support in his virt-viewer