[Qemu-devel] Re: [PATCH RESEND v3] fix vnc regression

2011-03-22 Thread Anthony Liguori
On 03/11/2011 03:10 AM, Wen Congyang wrote: This patch fix the following regression: 1. we should use bitmap_set() and bitmap_clear() to replace vnc_set_bits(). Signed-off-by: Wen Congyang Applied (version that used VNC_DIRTY_BITS). Thanks. Regards, Anthony Liguori --- ui/vnc.c |8 +

Re: [Qemu-devel] Re: [PATCH RESEND v3] fix vnc regression

2011-03-22 Thread Anthony Liguori
On 03/22/2011 09:04 AM, Corentin Chary wrote: 16); +bitmap_set(vs->dirty[y_position + i], 0, width); +bitmap_clear(vs->dirty[y_position + i], width, + VNC_DIRTY_WORDS * BITS_PER_LONG - width); } VNC_DIRTY_WORDS in not a valid symbol in th

[Qemu-devel] Re: [PATCH RESEND v3] fix vnc regression

2011-03-22 Thread Corentin Chary
>> 16); >> +            bitmap_set(vs->dirty[y_position + i], 0, width); >> +            bitmap_clear(vs->dirty[y_position + i], width, >> +                         VNC_DIRTY_WORDS * BITS_PER_LONG - width); >>          } > > VNC_DIRTY_WORDS in not a valid symbol in the latest tip. > > Regards, Pat

[Qemu-devel] Re: [PATCH RESEND v3] fix vnc regression

2011-03-22 Thread Anthony Liguori
On 03/11/2011 03:10 AM, Wen Congyang wrote: This patch fix the following regression: 1. we should use bitmap_set() and bitmap_clear() to replace vnc_set_bits(). Signed-off-by: Wen Congyang --- ui/vnc.c |8 ++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ui/vnc.c b