mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-10 19:14:58 -06:00
vfio: Make VFIOIOMMUClass::attach_device() and its wrapper return bool
Make VFIOIOMMUClass::attach_device() and its wrapper function vfio_attach_device() return bool. This is to follow the coding standand to return bool if 'Error **' is used to pass error. Suggested-by: Cédric Le Goater <clg@redhat.com> Signed-off-by: Zhenzhong Duan <zhenzhong.duan@intel.com> Reviewed-by: Cédric Le Goater <clg@redhat.com> Signed-off-by: Cédric Le Goater <clg@redhat.com>
This commit is contained in:
parent
f3758413b7
commit
b77548355a
9 changed files with 27 additions and 34 deletions
|
@ -154,7 +154,6 @@ static void vfio_ap_unregister_irq_notifier(VFIOAPDevice *vapdev,
|
||||||
static void vfio_ap_realize(DeviceState *dev, Error **errp)
|
static void vfio_ap_realize(DeviceState *dev, Error **errp)
|
||||||
{
|
{
|
||||||
ERRP_GUARD();
|
ERRP_GUARD();
|
||||||
int ret;
|
|
||||||
Error *err = NULL;
|
Error *err = NULL;
|
||||||
VFIOAPDevice *vapdev = VFIO_AP_DEVICE(dev);
|
VFIOAPDevice *vapdev = VFIO_AP_DEVICE(dev);
|
||||||
VFIODevice *vbasedev = &vapdev->vdev;
|
VFIODevice *vbasedev = &vapdev->vdev;
|
||||||
|
@ -163,9 +162,8 @@ static void vfio_ap_realize(DeviceState *dev, Error **errp)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = vfio_attach_device(vbasedev->name, vbasedev,
|
if (!vfio_attach_device(vbasedev->name, vbasedev,
|
||||||
&address_space_memory, errp);
|
&address_space_memory, errp)) {
|
||||||
if (ret) {
|
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -579,7 +579,6 @@ static void vfio_ccw_realize(DeviceState *dev, Error **errp)
|
||||||
S390CCWDeviceClass *cdc = S390_CCW_DEVICE_GET_CLASS(cdev);
|
S390CCWDeviceClass *cdc = S390_CCW_DEVICE_GET_CLASS(cdev);
|
||||||
VFIODevice *vbasedev = &vcdev->vdev;
|
VFIODevice *vbasedev = &vcdev->vdev;
|
||||||
Error *err = NULL;
|
Error *err = NULL;
|
||||||
int ret;
|
|
||||||
|
|
||||||
/* Call the class init function for subchannel. */
|
/* Call the class init function for subchannel. */
|
||||||
if (cdc->realize) {
|
if (cdc->realize) {
|
||||||
|
@ -593,9 +592,8 @@ static void vfio_ccw_realize(DeviceState *dev, Error **errp)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = vfio_attach_device(cdev->mdevid, vbasedev,
|
if (!vfio_attach_device(cdev->mdevid, vbasedev,
|
||||||
&address_space_memory, errp);
|
&address_space_memory, errp)) {
|
||||||
if (ret) {
|
|
||||||
goto out_attach_dev_err;
|
goto out_attach_dev_err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1523,8 +1523,8 @@ retry:
|
||||||
return info;
|
return info;
|
||||||
}
|
}
|
||||||
|
|
||||||
int vfio_attach_device(char *name, VFIODevice *vbasedev,
|
bool vfio_attach_device(char *name, VFIODevice *vbasedev,
|
||||||
AddressSpace *as, Error **errp)
|
AddressSpace *as, Error **errp)
|
||||||
{
|
{
|
||||||
const VFIOIOMMUClass *ops =
|
const VFIOIOMMUClass *ops =
|
||||||
VFIO_IOMMU_CLASS(object_class_by_name(TYPE_VFIO_IOMMU_LEGACY));
|
VFIO_IOMMU_CLASS(object_class_by_name(TYPE_VFIO_IOMMU_LEGACY));
|
||||||
|
|
|
@ -910,8 +910,8 @@ static int vfio_device_groupid(VFIODevice *vbasedev, Error **errp)
|
||||||
* @name and @vbasedev->name are likely to be different depending
|
* @name and @vbasedev->name are likely to be different depending
|
||||||
* on the type of the device, hence the need for passing @name
|
* on the type of the device, hence the need for passing @name
|
||||||
*/
|
*/
|
||||||
static int vfio_legacy_attach_device(const char *name, VFIODevice *vbasedev,
|
static bool vfio_legacy_attach_device(const char *name, VFIODevice *vbasedev,
|
||||||
AddressSpace *as, Error **errp)
|
AddressSpace *as, Error **errp)
|
||||||
{
|
{
|
||||||
int groupid = vfio_device_groupid(vbasedev, errp);
|
int groupid = vfio_device_groupid(vbasedev, errp);
|
||||||
VFIODevice *vbasedev_iter;
|
VFIODevice *vbasedev_iter;
|
||||||
|
@ -920,27 +920,27 @@ static int vfio_legacy_attach_device(const char *name, VFIODevice *vbasedev,
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (groupid < 0) {
|
if (groupid < 0) {
|
||||||
return groupid;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
trace_vfio_attach_device(vbasedev->name, groupid);
|
trace_vfio_attach_device(vbasedev->name, groupid);
|
||||||
|
|
||||||
group = vfio_get_group(groupid, as, errp);
|
group = vfio_get_group(groupid, as, errp);
|
||||||
if (!group) {
|
if (!group) {
|
||||||
return -ENOENT;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
QLIST_FOREACH(vbasedev_iter, &group->device_list, next) {
|
QLIST_FOREACH(vbasedev_iter, &group->device_list, next) {
|
||||||
if (strcmp(vbasedev_iter->name, vbasedev->name) == 0) {
|
if (strcmp(vbasedev_iter->name, vbasedev->name) == 0) {
|
||||||
error_setg(errp, "device is already attached");
|
error_setg(errp, "device is already attached");
|
||||||
vfio_put_group(group);
|
vfio_put_group(group);
|
||||||
return -EBUSY;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ret = vfio_get_device(group, name, vbasedev, errp);
|
ret = vfio_get_device(group, name, vbasedev, errp);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
vfio_put_group(group);
|
vfio_put_group(group);
|
||||||
return ret;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bcontainer = &group->container->bcontainer;
|
bcontainer = &group->container->bcontainer;
|
||||||
|
@ -948,7 +948,7 @@ static int vfio_legacy_attach_device(const char *name, VFIODevice *vbasedev,
|
||||||
QLIST_INSERT_HEAD(&bcontainer->device_list, vbasedev, container_next);
|
QLIST_INSERT_HEAD(&bcontainer->device_list, vbasedev, container_next);
|
||||||
QLIST_INSERT_HEAD(&vfio_device_list, vbasedev, global_next);
|
QLIST_INSERT_HEAD(&vfio_device_list, vbasedev, global_next);
|
||||||
|
|
||||||
return ret;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void vfio_legacy_detach_device(VFIODevice *vbasedev)
|
static void vfio_legacy_detach_device(VFIODevice *vbasedev)
|
||||||
|
|
|
@ -299,8 +299,8 @@ error:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int iommufd_cdev_attach(const char *name, VFIODevice *vbasedev,
|
static bool iommufd_cdev_attach(const char *name, VFIODevice *vbasedev,
|
||||||
AddressSpace *as, Error **errp)
|
AddressSpace *as, Error **errp)
|
||||||
{
|
{
|
||||||
VFIOContainerBase *bcontainer;
|
VFIOContainerBase *bcontainer;
|
||||||
VFIOIOMMUFDContainer *container;
|
VFIOIOMMUFDContainer *container;
|
||||||
|
@ -315,7 +315,7 @@ static int iommufd_cdev_attach(const char *name, VFIODevice *vbasedev,
|
||||||
if (vbasedev->fd < 0) {
|
if (vbasedev->fd < 0) {
|
||||||
devfd = iommufd_cdev_getfd(vbasedev->sysfsdev, errp);
|
devfd = iommufd_cdev_getfd(vbasedev->sysfsdev, errp);
|
||||||
if (devfd < 0) {
|
if (devfd < 0) {
|
||||||
return devfd;
|
return false;
|
||||||
}
|
}
|
||||||
vbasedev->fd = devfd;
|
vbasedev->fd = devfd;
|
||||||
} else {
|
} else {
|
||||||
|
@ -392,7 +392,6 @@ static int iommufd_cdev_attach(const char *name, VFIODevice *vbasedev,
|
||||||
memory_listener_register(&bcontainer->listener, bcontainer->space->as);
|
memory_listener_register(&bcontainer->listener, bcontainer->space->as);
|
||||||
|
|
||||||
if (bcontainer->error) {
|
if (bcontainer->error) {
|
||||||
ret = -1;
|
|
||||||
error_propagate_prepend(errp, bcontainer->error,
|
error_propagate_prepend(errp, bcontainer->error,
|
||||||
"memory listener initialization failed: ");
|
"memory listener initialization failed: ");
|
||||||
goto err_listener_register;
|
goto err_listener_register;
|
||||||
|
@ -431,7 +430,7 @@ found_container:
|
||||||
|
|
||||||
trace_iommufd_cdev_device_info(vbasedev->name, devfd, vbasedev->num_irqs,
|
trace_iommufd_cdev_device_info(vbasedev->name, devfd, vbasedev->num_irqs,
|
||||||
vbasedev->num_regions, vbasedev->flags);
|
vbasedev->num_regions, vbasedev->flags);
|
||||||
return 0;
|
return true;
|
||||||
|
|
||||||
err_listener_register:
|
err_listener_register:
|
||||||
iommufd_cdev_ram_block_discard_disable(false);
|
iommufd_cdev_ram_block_discard_disable(false);
|
||||||
|
@ -444,7 +443,7 @@ err_alloc_ioas:
|
||||||
iommufd_cdev_unbind_and_disconnect(vbasedev);
|
iommufd_cdev_unbind_and_disconnect(vbasedev);
|
||||||
err_connect_bind:
|
err_connect_bind:
|
||||||
close(vbasedev->fd);
|
close(vbasedev->fd);
|
||||||
return ret;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void iommufd_cdev_detach(VFIODevice *vbasedev)
|
static void iommufd_cdev_detach(VFIODevice *vbasedev)
|
||||||
|
|
|
@ -3027,9 +3027,8 @@ static void vfio_realize(PCIDevice *pdev, Error **errp)
|
||||||
name = g_strdup(vbasedev->name);
|
name = g_strdup(vbasedev->name);
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = vfio_attach_device(name, vbasedev,
|
if (!vfio_attach_device(name, vbasedev,
|
||||||
pci_device_iommu_address_space(pdev), errp);
|
pci_device_iommu_address_space(pdev), errp)) {
|
||||||
if (ret) {
|
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -552,10 +552,9 @@ static int vfio_base_device_init(VFIODevice *vbasedev, Error **errp)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = vfio_attach_device(vbasedev->name, vbasedev,
|
if (!vfio_attach_device(vbasedev->name, vbasedev,
|
||||||
&address_space_memory, errp);
|
&address_space_memory, errp)) {
|
||||||
if (ret) {
|
return -EINVAL;
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = vfio_populate_device(vbasedev, errp);
|
ret = vfio_populate_device(vbasedev, errp);
|
||||||
|
|
|
@ -222,8 +222,8 @@ void vfio_region_exit(VFIORegion *region);
|
||||||
void vfio_region_finalize(VFIORegion *region);
|
void vfio_region_finalize(VFIORegion *region);
|
||||||
void vfio_reset_handler(void *opaque);
|
void vfio_reset_handler(void *opaque);
|
||||||
struct vfio_device_info *vfio_get_device_info(int fd);
|
struct vfio_device_info *vfio_get_device_info(int fd);
|
||||||
int vfio_attach_device(char *name, VFIODevice *vbasedev,
|
bool vfio_attach_device(char *name, VFIODevice *vbasedev,
|
||||||
AddressSpace *as, Error **errp);
|
AddressSpace *as, Error **errp);
|
||||||
void vfio_detach_device(VFIODevice *vbasedev);
|
void vfio_detach_device(VFIODevice *vbasedev);
|
||||||
|
|
||||||
int vfio_kvm_device_add_fd(int fd, Error **errp);
|
int vfio_kvm_device_add_fd(int fd, Error **errp);
|
||||||
|
|
|
@ -117,8 +117,8 @@ struct VFIOIOMMUClass {
|
||||||
int (*dma_unmap)(const VFIOContainerBase *bcontainer,
|
int (*dma_unmap)(const VFIOContainerBase *bcontainer,
|
||||||
hwaddr iova, ram_addr_t size,
|
hwaddr iova, ram_addr_t size,
|
||||||
IOMMUTLBEntry *iotlb);
|
IOMMUTLBEntry *iotlb);
|
||||||
int (*attach_device)(const char *name, VFIODevice *vbasedev,
|
bool (*attach_device)(const char *name, VFIODevice *vbasedev,
|
||||||
AddressSpace *as, Error **errp);
|
AddressSpace *as, Error **errp);
|
||||||
void (*detach_device)(VFIODevice *vbasedev);
|
void (*detach_device)(VFIODevice *vbasedev);
|
||||||
|
|
||||||
/* migration feature */
|
/* migration feature */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue