Re: [Qemu-devel] [PATCH v2 2/2] virtio: make virtqueue_alloc_element static

2016-11-04 Thread Cornelia Huck
On Thu, 3 Nov 2016 09:55:50 +0100 Ladi Prosek wrote: > The function does not fully initialize the returned VirtQueueElement and > should > be used only internally from the virtio module. > > Signed-off-by: Ladi Prosek > --- > hw/virtio/virtio.c | 2 +- > include/hw/virtio/virtio.h |

[Qemu-devel] [PATCH v2 2/2] virtio: make virtqueue_alloc_element static

2016-11-03 Thread Ladi Prosek
The function does not fully initialize the returned VirtQueueElement and should be used only internally from the virtio module. Signed-off-by: Ladi Prosek --- hw/virtio/virtio.c | 2 +- include/hw/virtio/virtio.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/hw/vir