From: "Cédric Le Goater" <clg@redhat.com>
To: Zhenzhong Duan <zhenzhong.duan@intel.com>, qemu-devel@nongnu.org
Cc: alex.williamson@redhat.com, joao.m.martins@oracle.com,
avihaih@nvidia.com, chao.p.peng@intel.com
Subject: Re: [PATCH v6 4/7] vfio/migration: Change vIOMMU blocker from global to per device
Date: Mon, 3 Jul 2023 16:57:42 +0200 [thread overview]
Message-ID: <2fe67037-e6ae-7cea-d1ab-462e7789bc2e@redhat.com> (raw)
In-Reply-To: <20230703071510.160712-3-zhenzhong.duan@intel.com>
On 7/3/23 09:15, Zhenzhong Duan wrote:
> Contrary to multiple device blocker which needs to consider already-attached
> devices to unblock/block dynamically, the vIOMMU migration blocker is a device
> specific config. Meaning it only needs to know whether the device is bypassing
> or not the vIOMMU (via machine property, or per pxb-pcie::bypass_iommu), and
> does not need the state of currently present devices. For this reason, the
> vIOMMU global migration blocker can be consolidated into the per-device
> migration blocker, allowing us to remove some unnecessary code.
>
> This change also makes vfio_mig_active() more accurate as it doesn't check for
> global blocker.
>
> Signed-off-by: Zhenzhong Duan <zhenzhong.duan@intel.com>
> Reviewed-by: Joao Martins <joao.m.martins@oracle.com>
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Thanks,
C.
> ---
> hw/vfio/common.c | 51 ++---------------------------------
> hw/vfio/migration.c | 7 ++---
> hw/vfio/pci.c | 1 -
> include/hw/vfio/vfio-common.h | 3 +--
> 4 files changed, 7 insertions(+), 55 deletions(-)
>
> diff --git a/hw/vfio/common.c b/hw/vfio/common.c
> index 77e2ee0e5c6e..9aac21abb76e 100644
> --- a/hw/vfio/common.c
> +++ b/hw/vfio/common.c
> @@ -362,7 +362,6 @@ bool vfio_mig_active(void)
> }
>
> static Error *multiple_devices_migration_blocker;
> -static Error *giommu_migration_blocker;
>
> static unsigned int vfio_migratable_device_num(void)
> {
> @@ -420,55 +419,9 @@ void vfio_unblock_multiple_devices_migration(void)
> multiple_devices_migration_blocker = NULL;
> }
>
> -static bool vfio_viommu_preset(void)
> +bool vfio_viommu_preset(VFIODevice *vbasedev)
> {
> - VFIOAddressSpace *space;
> -
> - QLIST_FOREACH(space, &vfio_address_spaces, list) {
> - if (space->as != &address_space_memory) {
> - return true;
> - }
> - }
> -
> - return false;
> -}
> -
> -int vfio_block_giommu_migration(VFIODevice *vbasedev, Error **errp)
> -{
> - int ret;
> -
> - if (giommu_migration_blocker ||
> - !vfio_viommu_preset()) {
> - return 0;
> - }
> -
> - if (vbasedev->enable_migration == ON_OFF_AUTO_ON) {
> - error_setg(errp,
> - "Migration is currently not supported with vIOMMU enabled");
> - return -EINVAL;
> - }
> -
> - error_setg(&giommu_migration_blocker,
> - "Migration is currently not supported with vIOMMU enabled");
> - ret = migrate_add_blocker(giommu_migration_blocker, errp);
> - if (ret < 0) {
> - error_free(giommu_migration_blocker);
> - giommu_migration_blocker = NULL;
> - }
> -
> - return ret;
> -}
> -
> -void vfio_migration_finalize(void)
> -{
> - if (!giommu_migration_blocker ||
> - vfio_viommu_preset()) {
> - return;
> - }
> -
> - migrate_del_blocker(giommu_migration_blocker);
> - error_free(giommu_migration_blocker);
> - giommu_migration_blocker = NULL;
> + return vbasedev->group->container->space->as != &address_space_memory;
> }
>
> static void vfio_set_migration_error(int err)
> diff --git a/hw/vfio/migration.c b/hw/vfio/migration.c
> index 1db7d52ab2c1..e6e5e85f7580 100644
> --- a/hw/vfio/migration.c
> +++ b/hw/vfio/migration.c
> @@ -878,9 +878,10 @@ int vfio_migration_realize(VFIODevice *vbasedev, Error **errp)
> return ret;
> }
>
> - ret = vfio_block_giommu_migration(vbasedev, errp);
> - if (ret) {
> - return ret;
> + if (vfio_viommu_preset(vbasedev)) {
> + error_setg(&err, "%s: Migration is currently not supported "
> + "with vIOMMU enabled", vbasedev->name);
> + return vfio_block_migration(vbasedev, err, errp);
> }
>
> trace_vfio_migration_realize(vbasedev->name);
> diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c
> index 31c4ab250fbe..c2cf7454ece6 100644
> --- a/hw/vfio/pci.c
> +++ b/hw/vfio/pci.c
> @@ -3255,7 +3255,6 @@ static void vfio_instance_finalize(Object *obj)
> */
> vfio_put_device(vdev);
> vfio_put_group(group);
> - vfio_migration_finalize();
> }
>
> static void vfio_exitfn(PCIDevice *pdev)
> diff --git a/include/hw/vfio/vfio-common.h b/include/hw/vfio/vfio-common.h
> index 93429b9abba0..45167c8a8a54 100644
> --- a/include/hw/vfio/vfio-common.h
> +++ b/include/hw/vfio/vfio-common.h
> @@ -227,7 +227,7 @@ extern VFIOGroupList vfio_group_list;
> bool vfio_mig_active(void);
> int vfio_block_multiple_devices_migration(VFIODevice *vbasedev, Error **errp);
> void vfio_unblock_multiple_devices_migration(void);
> -int vfio_block_giommu_migration(VFIODevice *vbasedev, Error **errp);
> +bool vfio_viommu_preset(VFIODevice *vbasedev);
> int64_t vfio_mig_bytes_transferred(void);
> void vfio_reset_bytes_transferred(void);
>
> @@ -254,6 +254,5 @@ int vfio_spapr_remove_window(VFIOContainer *container,
>
> int vfio_migration_realize(VFIODevice *vbasedev, Error **errp);
> void vfio_migration_exit(VFIODevice *vbasedev);
> -void vfio_migration_finalize(void);
>
> #endif /* HW_VFIO_VFIO_COMMON_H */
next prev parent reply other threads:[~2023-07-03 14:58 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-03 7:15 [PATCH v6 0/7] VFIO migration related refactor and bug fix Zhenzhong Duan
2023-07-03 7:15 ` [PATCH v6 3/7] vfio/pci: Disable INTx in vfio_realize error path Zhenzhong Duan
2023-07-03 7:15 ` [PATCH v6 4/7] vfio/migration: Change vIOMMU blocker from global to per device Zhenzhong Duan
2023-07-03 14:57 ` Cédric Le Goater [this message]
2023-07-03 7:15 ` [PATCH v6 5/7] vfio/migration: Free resources when vfio_migration_realize fails Zhenzhong Duan
2023-07-03 15:23 ` Joao Martins
2023-07-03 15:34 ` Avihai Horon
2023-07-03 15:41 ` Cédric Le Goater
2023-07-03 15:44 ` Cédric Le Goater
2023-07-04 1:56 ` Duan, Zhenzhong
2023-07-04 1:33 ` Duan, Zhenzhong
2023-07-03 7:15 ` [PATCH v6 6/7] vfio/migration: Remove print of "Migration disabled" Zhenzhong Duan
2023-07-03 14:58 ` Cédric Le Goater
2023-07-03 7:15 ` [PATCH v6 7/7] vfio/migration: Return bool type for vfio_migration_realize() Zhenzhong Duan
2023-07-03 14:58 ` Cédric Le Goater
2023-07-03 15:24 ` Joao Martins
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2fe67037-e6ae-7cea-d1ab-462e7789bc2e@redhat.com \
--to=clg@redhat.com \
--cc=alex.williamson@redhat.com \
--cc=avihaih@nvidia.com \
--cc=chao.p.peng@intel.com \
--cc=joao.m.martins@oracle.com \
--cc=qemu-devel@nongnu.org \
--cc=zhenzhong.duan@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).