[Spice-devel] [PATCH spice-server 2/2] red-qxl: Reuse red_qxl_async_complete

Frediano Ziglio fziglio at redhat.com
Mon Sep 18 07:11:39 UTC 2017


ping

> 
> Now that the function is a wrapper reuse it.
> 
> Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
> ---
>  server/red-qxl.c | 7 ++-----
>  1 file changed, 2 insertions(+), 5 deletions(-)
> 
> diff --git a/server/red-qxl.c b/server/red-qxl.c
> index 5815e4406..ef1f662df 100644
> --- a/server/red-qxl.c
> +++ b/server/red-qxl.c
> @@ -861,10 +861,8 @@ void spice_qxl_gl_draw_async(QXLInstance *qxl,
>      spice_return_if_fail(qxl != NULL);
>      qxl_state = qxl->st;
>      if (qxl_state->scanout.drm_dma_buf_fd == -1) {
> -        QXLInterface *interface = qxl_get_interface(qxl);
> -
>          spice_warning("called spice_qxl_gl_draw_async without a buffer");
> -        interface->async_complete(qxl, cookie);
> +        red_qxl_async_complete(qxl, cookie);
>          return;
>      }
>      spice_return_if_fail(qxl_state->gl_draw_cookie ==
>      GL_DRAW_COOKIE_INVALID);
> @@ -875,11 +873,10 @@ void spice_qxl_gl_draw_async(QXLInstance *qxl,
>  
>  void red_qxl_gl_draw_async_complete(QXLInstance *qxl)
>  {
> -    QXLInterface *interface = qxl_get_interface(qxl);
>      /* this reset before usage prevent a possible race condition */
>      uint64_t cookie = qxl->st->gl_draw_cookie;
>      qxl->st->gl_draw_cookie = GL_DRAW_COOKIE_INVALID;
> -    interface->async_complete(qxl, cookie);
> +    red_qxl_async_complete(qxl, cookie);
>  }
>  
>  void red_qxl_init(RedsState *reds, QXLInstance *qxl)


More information about the Spice-devel mailing list