All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Daniel P. Berrangé" <berrange@redhat.com>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] vnc: detect and optimize pageflips
Date: Wed, 16 Jan 2019 10:22:44 +0000	[thread overview]
Message-ID: <20190116102244.GJ20275@redhat.com> (raw)
In-Reply-To: <20190116101049.8929-1-kraxel@redhat.com>

On Wed, Jan 16, 2019 at 11:10:49AM +0100, Gerd Hoffmann wrote:
> When size and format of the display surface stays the same we can just
> tag the guest display as dirty and be done with it.
> 
> There is no need need to resize the vnc server display or to touch the
> vnc client dirty bits.  On the next refresh cycle
> vnc_refresh_server_surface() will check for actual display content
> changes and update the client dirty bits as needed.
> 
> The desktop resize and framebuffer format notifications to the vnc
> client will be skipped too.
> 
> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
> ---
>  ui/vnc.c | 25 ++++++++++++++++++++++---
>  1 file changed, 22 insertions(+), 3 deletions(-)

Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


> 
> diff --git a/ui/vnc.c b/ui/vnc.c
> index 9e4b2beb71..6002d09407 100644
> --- a/ui/vnc.c
> +++ b/ui/vnc.c
> @@ -742,6 +742,17 @@ static void vnc_update_server_surface(VncDisplay *vd)
>                         width, height);
>  }
>  
> +static bool vnc_check_pageflip(DisplaySurface *s1,
> +                               DisplaySurface *s2)
> +{
> +    return (s1 != NULL &&
> +            s2 != NULL &&
> +            surface_width(s1) == surface_width(s2) &&
> +            surface_height(s1) == surface_height(s2) &&
> +            surface_format(s1) == surface_format(s2));
> +
> +}
> +
>  static void vnc_dpy_switch(DisplayChangeListener *dcl,
>                             DisplaySurface *surface)
>  {
> @@ -749,6 +760,7 @@ static void vnc_dpy_switch(DisplayChangeListener *dcl,
>          "Display output is not active.";
>      static DisplaySurface *placeholder;
>      VncDisplay *vd = container_of(dcl, VncDisplay, dcl);
> +    bool pageflip = vnc_check_pageflip(vd->ds, surface);
>      VncState *vs;
>  
>      if (surface == NULL) {
> @@ -761,14 +773,21 @@ static void vnc_dpy_switch(DisplayChangeListener *dcl,
>      vnc_abort_display_jobs(vd);
>      vd->ds = surface;
>  
> -    /* server surface */
> -    vnc_update_server_surface(vd);
> -
>      /* guest surface */
>      qemu_pixman_image_unref(vd->guest.fb);
>      vd->guest.fb = pixman_image_ref(surface->image);
>      vd->guest.format = surface->format;
>  
> +    if (pageflip) {
> +        vnc_set_area_dirty(vd->guest.dirty, vd, 0, 0,
> +                           surface_width(surface),
> +                           surface_height(surface));
> +        return;
> +    }
> +
> +    /* server surface */
> +    vnc_update_server_surface(vd);
> +
>      QTAILQ_FOREACH(vs, &vd->clients, next) {
>          vnc_colordepth(vs);
>          vnc_desktop_resize(vs);
> -- 
> 2.9.3
> 
> 

Regards,
Daniel
-- 
|: https://berrange.com      -o-    https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org         -o-            https://fstop138.berrange.com :|
|: https://entangle-photo.org    -o-    https://www.instagram.com/dberrange :|

  reply	other threads:[~2019-01-16 10:31 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-16 10:10 [Qemu-devel] [PATCH] vnc: detect and optimize pageflips Gerd Hoffmann
2019-01-16 10:22 ` Daniel P. Berrangé [this message]
2019-01-21 10:31 ` no-reply

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=20190116102244.GJ20275@redhat.com \
    --to=berrange@redhat.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 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.