[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 42/47] vfio/platform: Move VFIODevice initializations in vfio_plat
From: |
Cédric Le Goater |
Subject: |
[PULL 42/47] vfio/platform: Move VFIODevice initializations in vfio_platform_instance_init |
Date: |
Tue, 19 Dec 2023 19:56:38 +0100 |
From: Zhenzhong Duan <zhenzhong.duan@intel.com>
Some of the VFIODevice initializations is in vfio_platform_realize,
move all of them in vfio_platform_instance_init.
No functional change intended.
Suggested-by: Cédric Le Goater <clg@redhat.com>
Signed-off-by: Zhenzhong Duan <zhenzhong.duan@intel.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Tested-by: Nicolin Chen <nicolinc@nvidia.com>
Signed-off-by: Cédric Le Goater <clg@redhat.com>
---
hw/vfio/platform.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/hw/vfio/platform.c b/hw/vfio/platform.c
index
a97d9c6234ccac0ba26b44d3e2290616eda5debd..506eb8193f2b047bc810e50236ae82fb7dfc7693
100644
--- a/hw/vfio/platform.c
+++ b/hw/vfio/platform.c
@@ -581,10 +581,6 @@ static void vfio_platform_realize(DeviceState *dev, Error
**errp)
VFIODevice *vbasedev = &vdev->vbasedev;
int i, ret;
- vbasedev->type = VFIO_DEVICE_TYPE_PLATFORM;
- vbasedev->dev = dev;
- vbasedev->ops = &vfio_platform_ops;
-
qemu_mutex_init(&vdev->intp_mutex);
trace_vfio_platform_realize(vbasedev->sysfsdev ?
@@ -659,8 +655,12 @@ static Property vfio_platform_dev_properties[] = {
static void vfio_platform_instance_init(Object *obj)
{
VFIOPlatformDevice *vdev = VFIO_PLATFORM_DEVICE(obj);
+ VFIODevice *vbasedev = &vdev->vbasedev;
- vdev->vbasedev.fd = -1;
+ vbasedev->type = VFIO_DEVICE_TYPE_PLATFORM;
+ vbasedev->ops = &vfio_platform_ops;
+ vbasedev->dev = DEVICE(vdev);
+ vbasedev->fd = -1;
}
#ifdef CONFIG_IOMMUFD
--
2.43.0
- [PULL 37/47] vfio: Make VFIOContainerBase poiner parameter const in VFIOIOMMUOps callbacks, (continued)
- [PULL 37/47] vfio: Make VFIOContainerBase poiner parameter const in VFIOIOMMUOps callbacks, Cédric Le Goater, 2023/12/19
- [PULL 36/47] vfio/ccw: Make vfio cdev pre-openable by passing a file handle, Cédric Le Goater, 2023/12/19
- [PULL 27/47] vfio/pci: Introduce a vfio pci hot reset interface, Cédric Le Goater, 2023/12/19
- [PULL 29/47] vfio/pci: Allow the selection of a given iommu backend, Cédric Le Goater, 2023/12/19
- [PULL 34/47] vfio/ap: Make vfio cdev pre-openable by passing a file handle, Cédric Le Goater, 2023/12/19
- [PULL 35/47] vfio/ccw: Allow the selection of a given iommu backend, Cédric Le Goater, 2023/12/19
- [PULL 38/47] hw/arm: Activate IOMMUFD for virt machines, Cédric Le Goater, 2023/12/19
- [PULL 32/47] vfio/platform: Make vfio cdev pre-openable by passing a file handle, Cédric Le Goater, 2023/12/19
- [PULL 45/47] vfio: Introduce a helper function to initialize VFIODevice, Cédric Le Goater, 2023/12/19
- [PULL 46/47] docs/devel: Add VFIO iommufd backend documentation, Cédric Le Goater, 2023/12/19
- [PULL 42/47] vfio/platform: Move VFIODevice initializations in vfio_platform_instance_init,
Cédric Le Goater <=
- [PULL 44/47] vfio/ccw: Move VFIODevice initializations in vfio_ccw_instance_init, Cédric Le Goater, 2023/12/19
- [PULL 39/47] kconfig: Activate IOMMUFD for s390x machines, Cédric Le Goater, 2023/12/19
- [PULL 41/47] vfio/pci: Move VFIODevice initializations in vfio_instance_init, Cédric Le Goater, 2023/12/19
- [PULL 43/47] vfio/ap: Move VFIODevice initializations in vfio_ap_instance_init, Cédric Le Goater, 2023/12/19
- [PULL 47/47] hw/ppc/Kconfig: Imply VFIO_PCI, Cédric Le Goater, 2023/12/19
- [PULL 40/47] hw/i386: Activate IOMMUFD for q35 machines, Cédric Le Goater, 2023/12/19
- Re: [PULL 00/47] vfio queue, Stefan Hajnoczi, 2023/12/20