DXGKARG_GPUP_RESTORE_IMMUTABLE_MIGRATION_DATA - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-d3dkmddi-dxgkarg_gpup_restore_immutable_migration_data)

Description

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.

Members

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.

Remarks

For more information, see Live migration on GPU-P devices.

See also

DxgkDdiRestoreImmutableMigrationData

DxgkDdiSaveImmutableMigrationData