|
|
719b13 |
From 004f7409312c45f17eaaceac697637d3da257964 Mon Sep 17 00:00:00 2001
|
|
|
719b13 |
From: Si-Wei Liu <si-wei.liu@oracle.com>
|
|
|
719b13 |
Date: Fri, 6 May 2022 19:28:14 -0700
|
|
|
719b13 |
Subject: [PATCH 3/7] vhost-vdpa: fix improper cleanup in net_init_vhost_vdpa
|
|
|
719b13 |
MIME-Version: 1.0
|
|
|
719b13 |
Content-Type: text/plain; charset=UTF-8
|
|
|
719b13 |
Content-Transfer-Encoding: 8bit
|
|
|
719b13 |
|
|
|
719b13 |
RH-Author: Cindy Lu <lulu@redhat.com>
|
|
|
719b13 |
RH-MergeRequest: 203: vdpa :sync the Multiqueue fixes for vhost-vDPA
|
|
|
719b13 |
RH-Commit: [3/7] 5f5e7577818744305f811667461e530acd9977d1
|
|
|
719b13 |
RH-Bugzilla: 2095794
|
|
|
719b13 |
RH-Acked-by: MST <mst@redhat.com>
|
|
|
719b13 |
RH-Acked-by: Eugenio PĂ©rez <eperezma@redhat.com>
|
|
|
719b13 |
RH-Acked-by: Jason Wang <jasowang@redhat.com>
|
|
|
719b13 |
|
|
|
719b13 |
... such that no memory leaks on dangling net clients in case of
|
|
|
719b13 |
error.
|
|
|
719b13 |
|
|
|
719b13 |
Signed-off-by: Si-Wei Liu <si-wei.liu@oracle.com>
|
|
|
719b13 |
Acked-by: Jason Wang <jasowang@redhat.com>
|
|
|
719b13 |
Message-Id: <1651890498-24478-4-git-send-email-si-wei.liu@oracle.com>
|
|
|
719b13 |
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
|
|
|
719b13 |
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
|
|
|
719b13 |
(cherry picked from commit 9bd055073e375c8a0d7ebce925e05d914d69fc7f)
|
|
|
719b13 |
Signed-off-by: Cindy Lu <lulu@redhat.com>
|
|
|
719b13 |
---
|
|
|
719b13 |
net/vhost-vdpa.c | 4 +++-
|
|
|
719b13 |
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
719b13 |
|
|
|
719b13 |
diff --git a/net/vhost-vdpa.c b/net/vhost-vdpa.c
|
|
|
719b13 |
index 25dd6dd975..814f704687 100644
|
|
|
719b13 |
--- a/net/vhost-vdpa.c
|
|
|
719b13 |
+++ b/net/vhost-vdpa.c
|
|
|
719b13 |
@@ -306,7 +306,9 @@ int net_init_vhost_vdpa(const Netdev *netdev, const char *name,
|
|
|
719b13 |
|
|
|
719b13 |
err:
|
|
|
719b13 |
if (i) {
|
|
|
719b13 |
- qemu_del_net_client(ncs[0]);
|
|
|
719b13 |
+ for (i--; i >= 0; i--) {
|
|
|
719b13 |
+ qemu_del_net_client(ncs[i]);
|
|
|
719b13 |
+ }
|
|
|
719b13 |
}
|
|
|
719b13 |
qemu_close(vdpa_device_fd);
|
|
|
719b13 |
g_free(ncs);
|
|
|
719b13 |
--
|
|
|
719b13 |
2.31.1
|
|
|
719b13 |
|