>-----Original Message----- >From: Cédric Le Goater <c...@redhat.com> >Subject: Re: [PATCH 2/4] vfio/container: fails mdev hotplug if add migration >blocker failed > >On 6/24/25 11:21, Cédric Le Goater wrote: >> On 6/23/25 12:22, Zhenzhong Duan wrote: >>> It's aggressive to abort a running QEMU process when hotplug a mdev >>> and it fails migration blocker adding. >>> >>> Fix by just failing mdev hotplug itself. >>> >>> Signed-off-by: Zhenzhong Duan <zhenzhong.d...@intel.com> >>> --- >>> hw/vfio/container.c | 8 ++++++-- >>> 1 file changed, 6 insertions(+), 2 deletions(-) >>> >>> diff --git a/hw/vfio/container.c b/hw/vfio/container.c >>> index 2853f6f08b..68b4fdb401 100644 >>> --- a/hw/vfio/container.c >>> +++ b/hw/vfio/container.c >>> @@ -992,12 +992,16 @@ static bool vfio_legacy_attach_device(const char >*name, VFIODevice *vbasedev, >>> if (vbasedev->mdev) { >>> error_setg(&vbasedev->cpr.mdev_blocker, >>> "CPR does not support vfio mdev %s", vbasedev->name); >>> - migrate_add_blocker_modes(&vbasedev->cpr.mdev_blocker, >&error_fatal, >>> - MIG_MODE_CPR_TRANSFER, -1); >>> + if (migrate_add_blocker_modes(&vbasedev->cpr.mdev_blocker, errp, >>> + MIG_MODE_CPR_TRANSFER, -1)) { >> >> migrate_add_blocker_modes() returns -errno. Testing with '< 0' would be >> better. >> > > >Reviewed-by: Cédric Le Goater <c...@redhat.com> >
Thanks Cédric. I ever planned to send an update after receiving comments for patch3,4. BRs, Zhenzhong