Re: [PATCH 3/4] drm/virtio: simplify cursor updates

2019-06-18 Thread Gerd Hoffmann
> Even nicer would be to add the fence using > drm_atomic_set_fence_for_plane() in the prepare_fb hook. Assuming this > isn't necessary for correctness (but then I kinda have questions about > races and stuff). I'll have a look. Maybe this way I can drop struct virtio_gpu_framebuffer (where the

Re: [PATCH 3/4] drm/virtio: simplify cursor updates

2019-06-17 Thread Daniel Vetter
On Mon, Jun 17, 2019 at 01:14:05PM +0200, Gerd Hoffmann wrote: > No need to do the reservation dance, > we can just wait on the fence directly. > > Signed-off-by: Gerd Hoffmann > --- > drivers/gpu/drm/virtio/virtgpu_plane.c | 13 +++-- > 1 file changed, 3 insertions(+), 10 deletions(-)

[PATCH 3/4] drm/virtio: simplify cursor updates

2019-06-17 Thread Gerd Hoffmann
No need to do the reservation dance, we can just wait on the fence directly. Signed-off-by: Gerd Hoffmann --- drivers/gpu/drm/virtio/virtgpu_plane.c | 13 +++-- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/drivers/gpu/drm/virtio/virtgpu_plane.c