Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
vfio/migration: Store VFIO migration flags in VFIOMigration
VFIO migration flags are queried once in vfio_migration_init(). Store
them in VFIOMigration so they can be used later to check the device's
migration capabilities without re-querying them.

This will be used in the next patch to check if the device supports
precopy migration.

Signed-off-by: Avihai Horon <avihaih@nvidia.com>
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Tested-by: YangHang Liu <yanghliu@redhat.com>
Acked-by: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Cédric Le Goater <clg@redhat.com>
  • Loading branch information
avihai1122 authored and legoater committed Jun 30, 2023
1 parent cf53efb commit 6cd1fe1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions hw/vfio/migration.c
Expand Up @@ -603,6 +603,7 @@ static int vfio_migration_init(VFIODevice *vbasedev)
migration->vbasedev = vbasedev;
migration->device_state = VFIO_DEVICE_STATE_RUNNING;
migration->data_fd = -1;
migration->mig_flags = mig_flags;

vbasedev->dirty_pages_supported = vfio_dma_logging_supported(vbasedev);

Expand Down
1 change: 1 addition & 0 deletions include/hw/vfio/vfio-common.h
Expand Up @@ -66,6 +66,7 @@ typedef struct VFIOMigration {
int data_fd;
void *data_buffer;
size_t data_buffer_size;
uint64_t mig_flags;
} VFIOMigration;

typedef struct VFIOAddressSpace {
Expand Down

0 comments on commit 6cd1fe1

Please sign in to comment.