// d3dkmddi.h
typedef struct _DXGKARG_GPUP_RESTORE_IMMUTABLE_MIGRATION_DATA {
UINT vfIndex;
UINT64 DataSize;
BYTE *Data;
} DXGKARG_GPUP_RESTORE_IMMUTABLE_MIGRATION_DATA;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGKARG_GPUP_RESTORE_IMMUTABLE_MIGRATION_DATA structure is used in a call to DxgkDdiRestoreImmutableMigrationData to restore immutable data that was saved by the sending-side driver in a previous call to its DxgkDdiSaveImmutableMigrationData.
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 immutable 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.
DxgkDdiRestoreImmutableMigrationData
DxgkDdiSaveImmutableMigrationData