qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v2 17/20] virtio-gpu: avoid re-entering cmdq processing


From: Alexander Bulekov
Subject: Re: [PATCH v2 17/20] virtio-gpu: avoid re-entering cmdq processing
Date: Fri, 5 Feb 2021 03:09:36 -0500

On 210204 1452, marcandre.lureau@redhat.com wrote:
> From: Marc-André Lureau <marcandre.lureau@redhat.com>
> 
> The next patch will notify the GL context got flush, which will resume
> the queue processing. However, if this happens within the caller
> context, it will end up with a stack overflow flush/update loop.
> 
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>

I know this was pulled already, but FWIW I think this is
Buglink: https://bugs.launchpad.net/qemu/+bug/1888606

> ---
>  include/hw/virtio/virtio-gpu.h | 1 +
>  hw/display/virtio-gpu.c        | 5 +++++
>  2 files changed, 6 insertions(+)
> 
> diff --git a/include/hw/virtio/virtio-gpu.h b/include/hw/virtio/virtio-gpu.h
> index 4f3dbf79f9..0043268e90 100644
> --- a/include/hw/virtio/virtio-gpu.h
> +++ b/include/hw/virtio/virtio-gpu.h
> @@ -148,6 +148,7 @@ struct VirtIOGPU {
>  
>      uint64_t hostmem;
>  
> +    bool processing_cmdq;
>      bool renderer_inited;
>      bool renderer_reset;
>      QEMUTimer *fence_poll;
> diff --git a/hw/display/virtio-gpu.c b/hw/display/virtio-gpu.c
> index 0e833a462b..7eb4265a6d 100644
> --- a/hw/display/virtio-gpu.c
> +++ b/hw/display/virtio-gpu.c
> @@ -814,6 +814,10 @@ void virtio_gpu_process_cmdq(VirtIOGPU *g)
>  {
>      struct virtio_gpu_ctrl_command *cmd;
>  
> +    if (g->processing_cmdq) {
> +        return;
> +    }
> +    g->processing_cmdq = true;
>      while (!QTAILQ_EMPTY(&g->cmdq)) {
>          cmd = QTAILQ_FIRST(&g->cmdq);
>  
> @@ -843,6 +847,7 @@ void virtio_gpu_process_cmdq(VirtIOGPU *g)
>              g_free(cmd);
>          }
>      }
> +    g->processing_cmdq = false;
>  }
>  
>  static void virtio_gpu_gl_unblock(VirtIOGPUBase *b)
> -- 
> 2.29.0
> 
> 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]