// d3dkmddi.h
typedef struct _DXGKARGCB_MAPMDLTOIOMMU {
[in] PMDL pMdl;
[out] HANDLE hMemoryHandle;
} DXGKARGCB_MAPMDLTOIOMMU;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGKARGCB_MAPMDLTOIOMMU structure contains the arguments used by the DXGKCB_MAPMDLTOIOMMU callback function, to map a memory descriptor list (MDL) to the IOMMU.
pMdl [in]An MDL which must be populated with valid pages. The MDL and the pages it points to must remain unchanged until the corresponding unmap call is made.
hMemoryHandle [out]A Dxgkrnl tracking handle for the allocation. This value should be passed to the corresponding DXGKCB_UNMAPMDLFROMIOMMU function.
See IOMMU-based GPU isolation for more information.