Re: [PATCH] drm/virtio: add worker for object release

2019-09-03 Thread Chia-I Wu
On Thu, Aug 29, 2019 at 11:01 PM Gerd Hoffmann wrote: > > Move object release into a separate worker. Releasing objects requires > sending commands to the host. Doing that in the dequeue worker will > cause deadlocks in case the command queue gets filled up, because the > dequeue worker is also

[PATCH] drm/virtio: add worker for object release

2019-08-29 Thread Gerd Hoffmann
Move object release into a separate worker. Releasing objects requires sending commands to the host. Doing that in the dequeue worker will cause deadlocks in case the command queue gets filled up, because the dequeue worker is also the one which will free up slots in the command queue. Reported-