From: "Zhang Haoyu" <zhanghy@sangfor.com>
To: Gerd Hoffmann <kraxel@redhat.com>, qemu-devel <qemu-devel@nongnu.org>
Cc: Anthony Liguori <aliguori@amazon.com>
Subject: Re: [Qemu-devel] [PULL 3/3] vnc: fix screen updates
Date: Wed, 27 Aug 2014 12:39:19 +0800 [thread overview]
Message-ID: <201408271239176137280@sangfor.com> (raw)
In-Reply-To: 1403175829-24595-4-git-send-email-kraxel@redhat.com
>Bug was added by 38ee14f4f33f8836fc0e209ca59c6ae8c6edf380.
>vnc_jobs_join call is missing in one code path.
>
>Reported-by: Anthony PERARD <anthony.perard@citrix.com>
>Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
>---
> ui/vnc.c | 3 +++
> 1 file changed, 3 insertions(+)
>
>diff --git a/ui/vnc.c b/ui/vnc.c
>index 6c9d4f3..aac93f0 100644
>--- a/ui/vnc.c
>+++ b/ui/vnc.c
>@@ -935,6 +935,9 @@ static int vnc_update_client(VncState *vs, int has_dirty, bool sync)
> }
>
> vnc_job_push(job);
>+ if (sync) {
>+ vnc_jobs_join(vs);
>+ }
> vs->force_update = 0;
> return n;
> }
>--
>1.8.3.1
What about below raw patch,
@@ -935,14 +935,13 @@ static int vnc_update_client(VncState *vs, int has_dirty, bool sync)
}
vnc_job_push(job);
vs->force_update = 0;
- return n;
}
if (vs->csock == -1) {
vnc_disconnect_finish(vs);
} else if (sync) {
vnc_jobs_join(vs);
}
- return 0;
+ return n;
Thanks,
Zhang Haoyu
next prev parent reply other threads:[~2014-08-27 4:41 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-19 11:03 [Qemu-devel] [PULL 0/3] vnc: cleanups and fixes Gerd Hoffmann
2014-06-19 11:03 ` [Qemu-devel] [PULL 1/3] vnc: Drop superfluous conditionals around g_free() Gerd Hoffmann
2014-06-19 11:03 ` [Qemu-devel] [PULL 2/3] vnc: Drop superfluous conditionals around g_strdup() Gerd Hoffmann
2014-06-19 11:03 ` [Qemu-devel] [PULL 3/3] vnc: fix screen updates Gerd Hoffmann
2014-08-27 4:39 ` Zhang Haoyu [this message]
2014-06-20 16:40 ` [Qemu-devel] [PULL 0/3] vnc: cleanups and fixes Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=201408271239176137280@sangfor.com \
--to=zhanghy@sangfor.com \
--cc=aliguori@amazon.com \
--cc=kraxel@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).