* [PATCH] vnc linesize
@ 2008-03-19 17:24 Stefano Stabellini
2008-03-20 17:31 ` Alex Williamson
0 siblings, 1 reply; 8+ messages in thread
From: Stefano Stabellini @ 2008-03-19 17:24 UTC (permalink / raw)
To: xen-devel
[-- Attachment #1: Type: text/plain, Size: 206 bytes --]
Hi all,
the patch I am attaching enables buffer sharing for vnc when the
linesize != width * depth.
Best Regards,
Stefano Stabellini
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
[-- Attachment #2: linesize.patch --]
[-- Type: text/x-patch, Size: 2677 bytes --]
diff -r d1e91aba2758 tools/ioemu/hw/vga.c
--- a/tools/ioemu/hw/vga.c Wed Mar 19 12:41:48 2008 +0000
+++ b/tools/ioemu/hw/vga.c Wed Mar 19 17:19:18 2008 +0000
@@ -1148,7 +1148,7 @@ static void vga_draw_text(VGAState *s, i
cw != s->last_cw || cheight != s->last_ch) {
s->last_scr_width = width * cw;
s->last_scr_height = height * cheight;
- dpy_resize(s->ds, s->last_scr_width, s->last_scr_height, s->last_scr_width * (depth / 8));
+ dpy_resize(s->ds, s->last_scr_width, s->last_scr_height, s->last_scr_width * (s->ds->depth / 8));
s->last_width = width;
s->last_height = height;
s->last_ch = cheight;
@@ -1571,7 +1571,7 @@ static void vga_draw_graphic(VGAState *s
vga_draw_line = vga_draw_line_table[v * NB_DEPTHS + get_depth_index(s->ds)];
if (disp_width != s->last_width ||
height != s->last_height) {
- dpy_resize(s->ds, disp_width, height, disp_width * (depth / 8));
+ dpy_resize(s->ds, disp_width, height, s->line_offset);
s->last_scr_width = disp_width;
s->last_scr_height = height;
s->last_width = disp_width;
diff -r d1e91aba2758 tools/ioemu/vnc.c
--- a/tools/ioemu/vnc.c Wed Mar 19 12:41:48 2008 +0000
+++ b/tools/ioemu/vnc.c Wed Mar 19 16:52:29 2008 +0000
@@ -369,20 +369,17 @@ static void vnc_dpy_resize(DisplayState
VncState *vs = ds->opaque;
int o;
- if (linesize != w * vs->depth)
- ds->shared_buf = 0;
-
if (!ds->shared_buf) {
if (allocated)
- ds->data = realloc(ds->data, w * h * vs->depth);
+ ds->data = realloc(ds->data, h * linesize);
else
- ds->data = malloc(w * h * vs->depth);
+ ds->data = malloc(h * linesize);
allocated = 1;
} else if (allocated) {
free(ds->data);
allocated = 0;
}
- vs->old_data = realloc(vs->old_data, w * h * vs->depth);
+ vs->old_data = realloc(vs->old_data, h * linesize);
vs->dirty_row = realloc(vs->dirty_row, h * sizeof(vs->dirty_row[0]));
vs->update_row = realloc(vs->update_row, h * sizeof(vs->dirty_row[0]));
@@ -399,7 +396,7 @@ static void vnc_dpy_resize(DisplayState
size_changed = ds->width != w || ds->height != h;
ds->width = w;
ds->height = h;
- ds->linesize = w * vs->depth;
+ ds->linesize = linesize;
if (vs->csock != -1 && vs->has_resize && size_changed) {
vs->width = ds->width;
vs->height = ds->height;
@@ -2494,6 +2491,7 @@ void vnc_display_init(DisplayState *ds)
vs->ds->width = 640;
vs->ds->height = 400;
+ vs->ds->linesize = 640 * 4;
vnc_dpy_colourdepth(vs->ds, 24);
}
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCH] vnc linesize
2008-03-19 17:24 [PATCH] vnc linesize Stefano Stabellini
@ 2008-03-20 17:31 ` Alex Williamson
2008-03-20 18:06 ` Alex Williamson
2008-03-20 18:14 ` Stefano Stabellini
0 siblings, 2 replies; 8+ messages in thread
From: Alex Williamson @ 2008-03-20 17:31 UTC (permalink / raw)
To: Stefano Stabellini; +Cc: xen-devel
[-- Attachment #1: Type: text/plain, Size: 737 bytes --]
On Wed, 2008-03-19 at 17:24 +0000, Stefano Stabellini wrote:
> Hi all,
> the patch I am attaching enables buffer sharing for vnc when the
> linesize != width * depth.
Hi Stefano,
I'm seeing some odd issues with this on ia64, see the attached
screenshot. I'm using VNC, not SDL, and have specified opengl=0 in my
domain config file. The left side of the screen is wrapped around
overtop of the right side of the screen. The copy on the left side is
not updated unless I change the resolution the guest is running or force
the VNC client to manually refresh. Updates are normal on the copy on
the right side of the screen. Any ideas? Thanks,
Alex
--
Alex Williamson HP Open Source & Linux Org.
[-- Attachment #2: snapshot.png --]
[-- Type: image/png, Size: 41311 bytes --]
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] vnc linesize
2008-03-20 17:31 ` Alex Williamson
@ 2008-03-20 18:06 ` Alex Williamson
2008-03-20 18:16 ` Keir Fraser
2008-03-20 18:14 ` Stefano Stabellini
1 sibling, 1 reply; 8+ messages in thread
From: Alex Williamson @ 2008-03-20 18:06 UTC (permalink / raw)
To: Stefano Stabellini; +Cc: xen-devel
On Thu, 2008-03-20 at 11:31 -0600, Alex Williamson wrote:
> On Wed, 2008-03-19 at 17:24 +0000, Stefano Stabellini wrote:
> > Hi all,
> > the patch I am attaching enables buffer sharing for vnc when the
> > linesize != width * depth.
>
> Hi Stefano,
>
> I'm seeing some odd issues with this on ia64, see the attached
> screenshot. I'm using VNC, not SDL, and have specified opengl=0 in my
> domain config file. The left side of the screen is wrapped around
> overtop of the right side of the screen. The copy on the left side is
> not updated unless I change the resolution the guest is running or force
> the VNC client to manually refresh. Updates are normal on the copy on
> the right side of the screen. Any ideas? Thanks,
A quick self-followup, the same HVM domain configured for SDL instead
of VNC works fine. Thanks,
Alex
--
Alex Williamson HP Open Source & Linux Org.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] vnc linesize
2008-03-20 18:06 ` Alex Williamson
@ 2008-03-20 18:16 ` Keir Fraser
0 siblings, 0 replies; 8+ messages in thread
From: Keir Fraser @ 2008-03-20 18:16 UTC (permalink / raw)
To: Alex Williamson, Stefano Stabellini; +Cc: xen-devel
>> I'm seeing some odd issues with this on ia64, see the attached
>> screenshot. I'm using VNC, not SDL, and have specified opengl=0 in my
>> domain config file. The left side of the screen is wrapped around
>> overtop of the right side of the screen. The copy on the left side is
>> not updated unless I change the resolution the guest is running or force
>> the VNC client to manually refresh. Updates are normal on the copy on
>> the right side of the screen. Any ideas? Thanks,
>
> A quick self-followup, the same HVM domain configured for SDL instead
> of VNC works fine. Thanks,
It also breaks x86 WinXP guest installation. RealVNC client exits with
"connection reset by peer" at the start of the graphical stage of
installation (i.e., soon after the first reboot during installation). The
guest then hangs, consuming no CPU, and dom0 also is idle.
This changeset is out on its ear unless a quick fix is forthcoming. :-)
-- Keir
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] vnc linesize
2008-03-20 17:31 ` Alex Williamson
2008-03-20 18:06 ` Alex Williamson
@ 2008-03-20 18:14 ` Stefano Stabellini
2008-03-20 18:23 ` Alex Williamson
2008-03-20 18:23 ` Keir Fraser
1 sibling, 2 replies; 8+ messages in thread
From: Stefano Stabellini @ 2008-03-20 18:14 UTC (permalink / raw)
To: Alex Williamson; +Cc: xen-devel
[-- Attachment #1: Type: text/plain, Size: 994 bytes --]
Hi Alex,
I think I have found the bug that causes the strange behaviour you are
describing, but I have no way to be sure because I cannot test it on a
ia64 machine.
Could you please try the patch I am attaching (to be applied on top of
the other one)?
Best Regards,
Stefano Stabellini
Alex Williamson wrote:
> On Wed, 2008-03-19 at 17:24 +0000, Stefano Stabellini wrote:
>> Hi all,
>> the patch I am attaching enables buffer sharing for vnc when the
>> linesize != width * depth.
>
> Hi Stefano,
>
> I'm seeing some odd issues with this on ia64, see the attached
> screenshot. I'm using VNC, not SDL, and have specified opengl=0 in my
> domain config file. The left side of the screen is wrapped around
> overtop of the right side of the screen. The copy on the left side is
> not updated unless I change the resolution the guest is running or force
> the VNC client to manually refresh. Updates are normal on the copy on
> the right side of the screen. Any ideas? Thanks,
>
[-- Attachment #2: linesize2.patch --]
[-- Type: text/x-patch, Size: 1392 bytes --]
diff -r 491a3b62ae5b tools/ioemu/vnc.c
--- a/tools/ioemu/vnc.c Thu Mar 20 17:48:02 2008 +0000
+++ b/tools/ioemu/vnc.c Thu Mar 20 18:03:52 2008 +0000
@@ -370,16 +370,20 @@ static void vnc_dpy_resize(DisplayState
int o;
if (!ds->shared_buf) {
+ ds->linesize = w * vs->depth;
if (allocated)
- ds->data = realloc(ds->data, h * linesize);
+ ds->data = realloc(ds->data, h * ds->linesize);
else
- ds->data = malloc(h * linesize);
+ ds->data = malloc(h * ds->linesize);
allocated = 1;
- } else if (allocated) {
- free(ds->data);
- allocated = 0;
- }
- vs->old_data = realloc(vs->old_data, h * linesize);
+ } else {
+ ds->linesize = linesize;
+ if (allocated) {
+ free(ds->data);
+ allocated = 0;
+ }
+ }
+ vs->old_data = realloc(vs->old_data, h * ds->linesize);
vs->dirty_row = realloc(vs->dirty_row, h * sizeof(vs->dirty_row[0]));
vs->update_row = realloc(vs->update_row, h * sizeof(vs->dirty_row[0]));
@@ -396,7 +400,6 @@ static void vnc_dpy_resize(DisplayState
size_changed = ds->width != w || ds->height != h;
ds->width = w;
ds->height = h;
- ds->linesize = linesize;
if (vs->csock != -1 && vs->has_resize && size_changed) {
vs->width = ds->width;
vs->height = ds->height;
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCH] vnc linesize
2008-03-20 18:14 ` Stefano Stabellini
@ 2008-03-20 18:23 ` Alex Williamson
2008-03-20 18:26 ` Stefano Stabellini
2008-03-20 18:23 ` Keir Fraser
1 sibling, 1 reply; 8+ messages in thread
From: Alex Williamson @ 2008-03-20 18:23 UTC (permalink / raw)
To: Stefano Stabellini; +Cc: xen-devel
Hi Stefano,
On Thu, 2008-03-20 at 18:14 +0000, Stefano Stabellini wrote:
> Hi Alex,
> I think I have found the bug that causes the strange behaviour you are
> describing, but I have no way to be sure because I cannot test it on a
> ia64 machine.
> Could you please try the patch I am attaching (to be applied on top of
> the other one)?
Yes, this fixes it. Thanks!
Alex
--
Alex Williamson HP Open Source & Linux Org.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] vnc linesize
2008-03-20 18:23 ` Alex Williamson
@ 2008-03-20 18:26 ` Stefano Stabellini
0 siblings, 0 replies; 8+ messages in thread
From: Stefano Stabellini @ 2008-03-20 18:26 UTC (permalink / raw)
To: Alex Williamson; +Cc: xen-devel
[-- Attachment #1: Type: text/plain, Size: 545 bytes --]
Alex Williamson wrote:
> Hi Stefano,
>
> On Thu, 2008-03-20 at 18:14 +0000, Stefano Stabellini wrote:
>> Hi Alex,
>> I think I have found the bug that causes the strange behaviour you are
>> describing, but I have no way to be sure because I cannot test it on a
>> ia64 machine.
>> Could you please try the patch I am attaching (to be applied on top of
>> the other one)?
>
> Yes, this fixes it. Thanks!
great!
Sending the patch again more "officially" this time.
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
[-- Attachment #2: linesize2.patch --]
[-- Type: text/x-patch, Size: 1392 bytes --]
diff -r 491a3b62ae5b tools/ioemu/vnc.c
--- a/tools/ioemu/vnc.c Thu Mar 20 17:48:02 2008 +0000
+++ b/tools/ioemu/vnc.c Thu Mar 20 18:03:52 2008 +0000
@@ -370,16 +370,20 @@ static void vnc_dpy_resize(DisplayState
int o;
if (!ds->shared_buf) {
+ ds->linesize = w * vs->depth;
if (allocated)
- ds->data = realloc(ds->data, h * linesize);
+ ds->data = realloc(ds->data, h * ds->linesize);
else
- ds->data = malloc(h * linesize);
+ ds->data = malloc(h * ds->linesize);
allocated = 1;
- } else if (allocated) {
- free(ds->data);
- allocated = 0;
- }
- vs->old_data = realloc(vs->old_data, h * linesize);
+ } else {
+ ds->linesize = linesize;
+ if (allocated) {
+ free(ds->data);
+ allocated = 0;
+ }
+ }
+ vs->old_data = realloc(vs->old_data, h * ds->linesize);
vs->dirty_row = realloc(vs->dirty_row, h * sizeof(vs->dirty_row[0]));
vs->update_row = realloc(vs->update_row, h * sizeof(vs->dirty_row[0]));
@@ -396,7 +400,6 @@ static void vnc_dpy_resize(DisplayState
size_changed = ds->width != w || ds->height != h;
ds->width = w;
ds->height = h;
- ds->linesize = linesize;
if (vs->csock != -1 && vs->has_resize && size_changed) {
vs->width = ds->width;
vs->height = ds->height;
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] vnc linesize
2008-03-20 18:14 ` Stefano Stabellini
2008-03-20 18:23 ` Alex Williamson
@ 2008-03-20 18:23 ` Keir Fraser
1 sibling, 0 replies; 8+ messages in thread
From: Keir Fraser @ 2008-03-20 18:23 UTC (permalink / raw)
To: Stefano Stabellini, Alex Williamson; +Cc: xen-devel
On 20/3/08 18:14, "Stefano Stabellini" <stefano.stabellini@eu.citrix.com>
wrote:
> Hi Alex,
> I think I have found the bug that causes the strange behaviour you are
> describing, but I have no way to be sure because I cannot test it on a
> ia64 machine.
> Could you please try the patch I am attaching (to be applied on top of
> the other one)?
> Best Regards,
Fixes my problem!
Thanks,
Keir
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2008-03-20 18:26 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-19 17:24 [PATCH] vnc linesize Stefano Stabellini
2008-03-20 17:31 ` Alex Williamson
2008-03-20 18:06 ` Alex Williamson
2008-03-20 18:16 ` Keir Fraser
2008-03-20 18:14 ` Stefano Stabellini
2008-03-20 18:23 ` Alex Williamson
2008-03-20 18:26 ` Stefano Stabellini
2008-03-20 18:23 ` Keir Fraser
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.