vfio: Remove vfio_free_device
authorEric Farman <farman@linux.ibm.com>
Fri, 4 Nov 2022 14:20:07 +0000 (15:20 +0100)
committerAlex Williamson <alex.williamson@redhat.com>
Thu, 10 Nov 2022 18:30:23 +0000 (11:30 -0700)
With the "mess" sorted out, we should be able to inline the
vfio_free_device call introduced by commit cb9ff3f3b84c
("vfio: Add helpers for unifying vfio_device life cycle")
and remove them from driver release callbacks.

Signed-off-by: Eric Farman <farman@linux.ibm.com>
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Reviewed-by: Kevin Tian <kevin.tian@intel.com>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: Tony Krowiak <akrowiak@linux.ibm.com> # vfio-ap part
Reviewed-by: Matthew Rosato <mjrosato@linux.ibm.com>
Link: https://lore.kernel.org/r/20221104142007.1314999-8-farman@linux.ibm.com
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
12 files changed:
drivers/gpu/drm/i915/gvt/kvmgt.c
drivers/s390/cio/vfio_ccw_ops.c
drivers/s390/crypto/vfio_ap_ops.c
drivers/vfio/fsl-mc/vfio_fsl_mc.c
drivers/vfio/pci/vfio_pci_core.c
drivers/vfio/platform/vfio_amba.c
drivers/vfio/platform/vfio_platform.c
drivers/vfio/vfio_main.c
include/linux/vfio.h
samples/vfio-mdev/mbochs.c
samples/vfio-mdev/mdpy.c
samples/vfio-mdev/mtty.c

index 7a45e5360caf2df17e8be371dcb9d5e2adecc74c..eee6805e67ded2e5947015708b2ded42786a9887 100644 (file)
@@ -1461,7 +1461,6 @@ static void intel_vgpu_release_dev(struct vfio_device *vfio_dev)
        struct intel_vgpu *vgpu = vfio_dev_to_vgpu(vfio_dev);
 
        intel_gvt_destroy_vgpu(vgpu);
-       vfio_free_device(vfio_dev);
 }
 
 static const struct vfio_device_ops intel_vgpu_dev_ops = {
index 1155f8bcedd9939ad30343fc27487cb467cfafca..598a3814d4282b742c45f9f3af1b27d4c404e7d3 100644 (file)
@@ -143,8 +143,6 @@ static void vfio_ccw_mdev_release_dev(struct vfio_device *vdev)
        kmem_cache_free(vfio_ccw_io_region, private->io_region);
        kfree(private->cp.guest_cp);
        mutex_destroy(&private->io_mutex);
-
-       vfio_free_device(vdev);
 }
 
 static void vfio_ccw_mdev_remove(struct mdev_device *mdev)
index 0b4cc8c597ae67845c8d01c434e93ec05c3a5195..f108c0f1471252e3247e48ef92f6b45792e25df4 100644 (file)
@@ -765,11 +765,6 @@ static void vfio_ap_mdev_unlink_fr_queues(struct ap_matrix_mdev *matrix_mdev)
        }
 }
 
-static void vfio_ap_mdev_release_dev(struct vfio_device *vdev)
-{
-       vfio_free_device(vdev);
-}
-
 static void vfio_ap_mdev_remove(struct mdev_device *mdev)
 {
        struct ap_matrix_mdev *matrix_mdev = dev_get_drvdata(&mdev->dev);
@@ -1784,7 +1779,6 @@ static const struct attribute_group vfio_queue_attr_group = {
 
 static const struct vfio_device_ops vfio_ap_matrix_dev_ops = {
        .init = vfio_ap_mdev_init_dev,
-       .release = vfio_ap_mdev_release_dev,
        .open_device = vfio_ap_mdev_open_device,
        .close_device = vfio_ap_mdev_close_device,
        .ioctl = vfio_ap_mdev_ioctl,
index b16874e913e4f527457f5864be5b942d60729a16..7b8889f550076195d73f7602f830d305198d7d90 100644 (file)
@@ -568,7 +568,6 @@ static void vfio_fsl_mc_release_dev(struct vfio_device *core_vdev)
 
        vfio_fsl_uninit_device(vdev);
        mutex_destroy(&vdev->igate);
-       vfio_free_device(core_vdev);
 }
 
 static int vfio_fsl_mc_remove(struct fsl_mc_device *mc_dev)
index badc9d828cac201c3d2a0a9c28ebf971056c89c7..9be2d5be5d959cb53bf3acbd2aaabaaf58103b66 100644 (file)
@@ -2109,7 +2109,6 @@ void vfio_pci_core_release_dev(struct vfio_device *core_vdev)
        mutex_destroy(&vdev->vma_lock);
        kfree(vdev->region);
        kfree(vdev->pm_save);
-       vfio_free_device(core_vdev);
 }
 EXPORT_SYMBOL_GPL(vfio_pci_core_release_dev);
 
index eaea63e5294c58d9874d5526d3921d0bfc88874d..18faf2678b9984f635065cddd2e103b5a91e41f5 100644 (file)
@@ -95,7 +95,6 @@ static void vfio_amba_release_dev(struct vfio_device *core_vdev)
 
        vfio_platform_release_common(vdev);
        kfree(vdev->name);
-       vfio_free_device(core_vdev);
 }
 
 static void vfio_amba_remove(struct amba_device *adev)
index 82cedcebfd9022ca7e08fe920b01ebc5e3cfa62e..9910451dc3415ff9b61d759e1254f89a65d6cf16 100644 (file)
@@ -83,7 +83,6 @@ static void vfio_platform_release_dev(struct vfio_device *core_vdev)
                container_of(core_vdev, struct vfio_platform_device, vdev);
 
        vfio_platform_release_common(vdev);
-       vfio_free_device(core_vdev);
 }
 
 static int vfio_platform_remove(struct platform_device *pdev)
index 2901b8ad5be9258ac10f1115d9a576deb79c08a8..9835757e2bee40dcac858aba11e8f1a21739d10e 100644 (file)
@@ -339,13 +339,10 @@ static void vfio_device_release(struct device *dev)
        vfio_release_device_set(device);
        ida_free(&vfio.device_ida, device->index);
 
-       /*
-        * kvfree() cannot be done here due to a life cycle mess in
-        * vfio-ccw. Before the ccw part is fixed all drivers are
-        * required to support @release and call vfio_free_device()
-        * from there.
-        */
-       device->ops->release(device);
+       if (device->ops->release)
+               device->ops->release(device);
+
+       kvfree(device);
 }
 
 static int vfio_init_device(struct vfio_device *device, struct device *dev,
@@ -424,17 +421,6 @@ out_uninit:
        return ret;
 }
 
-/*
- * The helper called by driver @release callback to free the device
- * structure. Drivers which don't have private data to clean can
- * simply use this helper as its @release.
- */
-void vfio_free_device(struct vfio_device *device)
-{
-       kvfree(device);
-}
-EXPORT_SYMBOL_GPL(vfio_free_device);
-
 static struct vfio_group *vfio_noiommu_group_alloc(struct device *dev,
                enum vfio_group_type type)
 {
index ba809268a48e074d18dba91fe542f5a546826e3d..e7480154825ece86fdd6769100538ea4df23cb98 100644 (file)
@@ -176,7 +176,6 @@ struct vfio_device *_vfio_alloc_device(size_t size, struct device *dev,
                                        dev, ops),                              \
                     struct dev_struct, member)
 
-void vfio_free_device(struct vfio_device *device);
 static inline void vfio_put_device(struct vfio_device *device)
 {
        put_device(&device->device);
index 117a8d799f711205e550d512c5ee41bcbbe8f698..8b5a3a778a257c9a16119da1e8af3c7132414e9e 100644 (file)
@@ -594,7 +594,6 @@ static void mbochs_release_dev(struct vfio_device *vdev)
        atomic_add(mdev_state->type->mbytes, &mbochs_avail_mbytes);
        kfree(mdev_state->pages);
        kfree(mdev_state->vconfig);
-       vfio_free_device(vdev);
 }
 
 static void mbochs_remove(struct mdev_device *mdev)
index 946e8cfde6fdd649cb01b8eea63cdc0ae76a5848..721fb06c6413fdb9f46c5bf2c1f624126bac999e 100644 (file)
@@ -283,7 +283,6 @@ static void mdpy_release_dev(struct vfio_device *vdev)
 
        vfree(mdev_state->memblk);
        kfree(mdev_state->vconfig);
-       vfio_free_device(vdev);
 }
 
 static void mdpy_remove(struct mdev_device *mdev)
index e72085fc1376318a7fc0dc4f6db724dd4dd80092..3c2a421b9b696f23dab0f4d972aa2b17ee0331a6 100644 (file)
@@ -784,7 +784,6 @@ static void mtty_release_dev(struct vfio_device *vdev)
 
        atomic_add(mdev_state->nr_ports, &mdev_avail_ports);
        kfree(mdev_state->vconfig);
-       vfio_free_device(vdev);
 }
 
 static void mtty_remove(struct mdev_device *mdev)