[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH V2 05/18] vhost-vdpa: don't cleanup twice in vhost_vdpa_add()
From: |
Jason Wang |
Subject: |
[PATCH V2 05/18] vhost-vdpa: don't cleanup twice in vhost_vdpa_add() |
Date: |
Tue, 6 Jul 2021 16:27:04 +0800 |
The previous vhost_net_cleanup is sufficient for freeing, calling
vhost_vdpa_del() in this case will lead an extra round of free. Note
that this kind of "double free" is safe since vhost_dev_cleanup() zero
the whole structure.
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
---
net/vhost-vdpa.c | 11 -----------
1 file changed, 11 deletions(-)
diff --git a/net/vhost-vdpa.c b/net/vhost-vdpa.c
index 728e63ff54..f5689a7c32 100644
--- a/net/vhost-vdpa.c
+++ b/net/vhost-vdpa.c
@@ -82,16 +82,6 @@ static int vhost_vdpa_net_check_device_id(struct vhost_net
*net)
return ret;
}
-static void vhost_vdpa_del(NetClientState *ncs)
-{
- VhostVDPAState *s;
- assert(ncs->info->type == NET_CLIENT_DRIVER_VHOST_VDPA);
- s = DO_UPCAST(VhostVDPAState, nc, ncs);
- if (s->vhost_net) {
- vhost_net_cleanup(s->vhost_net);
- }
-}
-
static int vhost_vdpa_add(NetClientState *ncs, void *be)
{
VhostNetOptions options;
@@ -122,7 +112,6 @@ err:
if (net) {
vhost_net_cleanup(net);
}
- vhost_vdpa_del(ncs);
return -1;
}
--
2.25.1
- [PATCH V2 00/18] vhost-vDPA multiqueue, Jason Wang, 2021/07/06
- [PATCH V2 01/18] vhost_net: remove the meaningless assignment in vhost_net_start_one(), Jason Wang, 2021/07/06
- [PATCH V2 02/18] vhost: use unsigned int for nvqs, Jason Wang, 2021/07/06
- [PATCH V2 03/18] vhost_net: do not assume nvqs is always 2, Jason Wang, 2021/07/06
- [PATCH V2 04/18] vhost-vdpa: remove the unnecessary check in vhost_vdpa_add(), Jason Wang, 2021/07/06
- [PATCH V2 06/18] vhost-vdpa: fix leaking of vhost_net in vhost_vdpa_add(), Jason Wang, 2021/07/06
- [PATCH V2 05/18] vhost-vdpa: don't cleanup twice in vhost_vdpa_add(),
Jason Wang <=
- [PATCH V2 07/18] vhost-vdpa: tweak the error label in vhost_vdpa_add(), Jason Wang, 2021/07/06
- [PATCH V2 08/18] vhost-vdpa: fix the wrong assertion in vhost_vdpa_init(), Jason Wang, 2021/07/06
- [PATCH V2 09/18] vhost-vdpa: remove the unncessary queue_index assignment, Jason Wang, 2021/07/06
- [PATCH V2 10/18] vhost-vdpa: open device fd in net_init_vhost_vdpa(), Jason Wang, 2021/07/06
- [PATCH V2 11/18] vhost-vdpa: classify one time request, Jason Wang, 2021/07/06
- [PATCH V2 13/18] vhost-vdpa: let net_vhost_vdpa_init() returns NetClientState *, Jason Wang, 2021/07/06
- [PATCH V2 14/18] net: introduce control client, Jason Wang, 2021/07/06
- [PATCH V2 12/18] vhost-vdpa: prepare for the multiqueue support, Jason Wang, 2021/07/06
- [PATCH V2 15/18] vhost-net: control virtqueue support, Jason Wang, 2021/07/06
- [PATCH V2 16/18] virito-net: use "qps" instead of "queues" when possible, Jason Wang, 2021/07/06