diff options
author | Zhenzhong Duan <zhenzhong.duan@intel.com> | 2024-05-07 14:42:51 +0800 |
---|---|---|
committer | Cédric Le Goater <clg@redhat.com> | 2024-05-16 16:59:20 +0200 |
commit | f38f5dd1d454e41def9cdba899d0b059dd8855d9 (patch) | |
tree | 220675eaf048af582b40b3ee581a76d9a21133ae /hw | |
parent | 45d0d8c4044d330225ef684894e2cdcc05ec0823 (diff) | |
download | qemu-f38f5dd1d454e41def9cdba899d0b059dd8855d9.zip qemu-f38f5dd1d454e41def9cdba899d0b059dd8855d9.tar.gz qemu-f38f5dd1d454e41def9cdba899d0b059dd8855d9.tar.bz2 |
vfio/cpr: Make vfio_cpr_register_container() 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>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/vfio/container.c | 3 | ||||
-rw-r--r-- | hw/vfio/cpr.c | 4 | ||||
-rw-r--r-- | hw/vfio/iommufd.c | 3 |
3 files changed, 4 insertions, 6 deletions
diff --git a/hw/vfio/container.c b/hw/vfio/container.c index 53649e3..096cc97 100644 --- a/hw/vfio/container.c +++ b/hw/vfio/container.c @@ -618,8 +618,7 @@ static bool vfio_connect_container(VFIOGroup *group, AddressSpace *as, goto free_container_exit; } - ret = vfio_cpr_register_container(bcontainer, errp); - if (ret) { + if (!vfio_cpr_register_container(bcontainer, errp)) { goto free_container_exit; } diff --git a/hw/vfio/cpr.c b/hw/vfio/cpr.c index 392c2dd..87e51fc 100644 --- a/hw/vfio/cpr.c +++ b/hw/vfio/cpr.c @@ -25,12 +25,12 @@ static int vfio_cpr_reboot_notifier(NotifierWithReturn *notifier, return 0; } -int vfio_cpr_register_container(VFIOContainerBase *bcontainer, Error **errp) +bool vfio_cpr_register_container(VFIOContainerBase *bcontainer, Error **errp) { migration_add_notifier_mode(&bcontainer->cpr_reboot_notifier, vfio_cpr_reboot_notifier, MIG_MODE_CPR_REBOOT); - return 0; + return true; } void vfio_cpr_unregister_container(VFIOContainerBase *bcontainer) diff --git a/hw/vfio/iommufd.c b/hw/vfio/iommufd.c index 84c86b9..6a446b1 100644 --- a/hw/vfio/iommufd.c +++ b/hw/vfio/iommufd.c @@ -396,8 +396,7 @@ found_container: goto err_listener_register; } - ret = vfio_cpr_register_container(bcontainer, errp); - if (ret) { + if (!vfio_cpr_register_container(bcontainer, errp)) { goto err_listener_register; } |