You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.2 KiB
69 lines
2.2 KiB
2 years ago
|
From aa99cf129923e0203c0caeb3b4e94a0eb973746f Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Eugenio=20P=C3=A9rez?= <eperezma@redhat.com>
|
||
|
Date: Thu, 21 Jul 2022 15:36:38 +0200
|
||
|
Subject: [PATCH 04/32] vhost: Fix element in vhost_svq_add failure
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
RH-Author: Eugenio Pérez <eperezma@redhat.com>
|
||
|
RH-MergeRequest: 108: Net Control Virtqueue shadow Support
|
||
|
RH-Commit: [4/27] 96689c99a47dd49591c0d126cb1fbb975b2f79b4 (eperezmartin/qemu-kvm)
|
||
|
RH-Bugzilla: 1939363
|
||
|
RH-Acked-by: Stefano Garzarella <sgarzare@redhat.com>
|
||
|
RH-Acked-by: Cindy Lu <lulu@redhat.com>
|
||
|
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
|
||
|
|
||
|
Bugzilla: https://bugzilla.redhat.com/1939363
|
||
|
|
||
|
Upstream Status: git://git.qemu.org/qemu.git
|
||
|
|
||
|
commit 5181db132b587754dda3a520eec923b87a65bbb7
|
||
|
Author: Eugenio Pérez <eperezma@redhat.com>
|
||
|
Date: Thu May 12 19:57:47 2022 +0200
|
||
|
|
||
|
vhost: Fix element in vhost_svq_add failure
|
||
|
|
||
|
Coverity rightly reports that is not free in that case.
|
||
|
|
||
|
Fixes: Coverity CID 1487559
|
||
|
Fixes: 100890f7ca ("vhost: Shadow virtqueue buffers forwarding")
|
||
|
|
||
|
Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
|
||
|
Message-Id: <20220512175747.142058-7-eperezma@redhat.com>
|
||
|
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
|
||
|
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
|
||
|
|
||
|
Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
|
||
|
---
|
||
|
hw/virtio/vhost-shadow-virtqueue.c | 8 ++++++++
|
||
|
1 file changed, 8 insertions(+)
|
||
|
|
||
|
diff --git a/hw/virtio/vhost-shadow-virtqueue.c b/hw/virtio/vhost-shadow-virtqueue.c
|
||
|
index 31fc50907d..06d0bb39d9 100644
|
||
|
--- a/hw/virtio/vhost-shadow-virtqueue.c
|
||
|
+++ b/hw/virtio/vhost-shadow-virtqueue.c
|
||
|
@@ -199,11 +199,19 @@ static bool vhost_svq_add_split(VhostShadowVirtqueue *svq,
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
+/**
|
||
|
+ * Add an element to a SVQ.
|
||
|
+ *
|
||
|
+ * The caller must check that there is enough slots for the new element. It
|
||
|
+ * takes ownership of the element: In case of failure, it is free and the SVQ
|
||
|
+ * is considered broken.
|
||
|
+ */
|
||
|
static bool vhost_svq_add(VhostShadowVirtqueue *svq, VirtQueueElement *elem)
|
||
|
{
|
||
|
unsigned qemu_head;
|
||
|
bool ok = vhost_svq_add_split(svq, elem, &qemu_head);
|
||
|
if (unlikely(!ok)) {
|
||
|
+ g_free(elem);
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
--
|
||
|
2.31.1
|
||
|
|