]> Git Repo - linux.git/commitdiff
vhost-vdpa: call vhost_vdpa_cleanup during the release
authorStefano Garzarella <[email protected]>
Wed, 22 Jun 2022 15:14:07 +0000 (17:14 +0200)
committerMichael S. Tsirkin <[email protected]>
Mon, 27 Jun 2022 12:05:35 +0000 (08:05 -0400)
Before commit 3d5698793897 ("vhost-vdpa: introduce asid based IOTLB")
we call vhost_vdpa_iotlb_free() during the release to clean all regions
mapped in the iotlb.

That commit removed vhost_vdpa_iotlb_free() and added vhost_vdpa_cleanup()
to do some cleanup, including deleting all mappings, but we forgot to call
it in vhost_vdpa_release().

This causes that if an application does not remove all mappings explicitly
(or it crashes), the mappings remain in the iotlb and subsequent
applications may fail if they map the same addresses.

Calling vhost_vdpa_cleanup() also fixes a memory leak since we are not
freeing `v->vdev.vqs` during the release from the same commit.

Since vhost_vdpa_cleanup() calls vhost_dev_cleanup() we can remove its
call from vhost_vdpa_release().

Fixes: 3d5698793897 ("vhost-vdpa: introduce asid based IOTLB")
Cc: [email protected]
Signed-off-by: Stefano Garzarella <[email protected]>
Message-Id: <20220622151407[email protected]>
Signed-off-by: Michael S. Tsirkin <[email protected]>
Tested-by: Eugenio PĂ©rez <[email protected]>
Acked-by: Jason Wang <[email protected]>
drivers/vhost/vdpa.c

index 5ad2596c6e8a1631a249f7d61df4e8a53f401c64..23dcbfdfa13b19fb6f8ecfddd90769255ddf6902 100644 (file)
@@ -1209,7 +1209,7 @@ static int vhost_vdpa_release(struct inode *inode, struct file *filep)
        vhost_dev_stop(&v->vdev);
        vhost_vdpa_free_domain(v);
        vhost_vdpa_config_put(v);
-       vhost_dev_cleanup(&v->vdev);
+       vhost_vdpa_cleanup(v);
        mutex_unlock(&d->mutex);
 
        atomic_dec(&v->opened);
This page took 0.060762 seconds and 4 git commands to generate.