// d3dkmddi.h
typedef struct _DXGKARG_GPUP_RESTORE_MUTABLE_MIGRATION_DATA {
UINT vfIndex;
UINT64 DataSize;
BYTE *Data;
} DXGKARG_GPUP_RESTORE_MUTABLE_MIGRATION_DATA;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGKARG_GPUP_RESTORE_MUTABLE_MIGRATION_DATA structure is used in a call to DxgkDdiRestoreMutableMigrationData to restore mutable data that was saved by the sending-side driver in a previous call to its DxgkDdiSaveMutableMigrationData.
vfIndex[in] Identifies the virtual function / vDEV being referenced. This index value localizes to the specific virtual device.
DataSize[in] Size of the buffer that Data points to, in bytes.
Data[in] Pointer to the buffer containing the mutable migration data collected and sent from the source system that is to be restored on the target.
For more information, see Live migration on GPU-P devices.
DxgkDdiRestoreMutableMigrationData
DxgkDdiSaveMutableMigrationData