[Qemu-devel] [PATCH 4/6] virtio-gpu: maintain command queue

2016-01-13 Thread Gerd Hoffmann
We'll go take out the commands we receive out of the virt queue and put them into a linked list, to decouple virtio queue handling from actual command processing. Also move cmd processing to new virtio_gpu_handle_ctrl func, so we can easily kick it from different places. Signed-off-by: Gerd

Re: [Qemu-devel] [PATCH 4/6] virtio-gpu: maintain command queue

2016-01-13 Thread Marc-André Lureau
Hi On Wed, Jan 13, 2016 at 1:02 PM, Gerd Hoffmann wrote: > We'll go take out the commands we receive out of the virt queue and put > them into a linked list, to decouple virtio queue handling from actual > command processing. > > Also move cmd processing to new