IOMMU_UNMAP_IDENTITY_RANGE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdm.h

IOMMU_UNMAP_IDENTITY_RANGE IommuUnmapIdentityRange;

NTSTATUS IommuUnmapIdentityRange(
  [_In_] PIOMMU_DMA_DOMAIN Domain,
  [_In_] PMDL Mdl
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-wdm-iommu_unmap_identity_range)

Description

Deletes an identity mapping for the specified MDL.

Parameters

Domain [_In_]

A pointer to the handle to the domain.

Mdl [_In_]

A pointer to the MDL to unmap.

Return value

Return STATUS_SUCCESS if the operation succeeds. Otherwise, return an appropriate NTSTATUS Values error code. For more information, see NTSTATUS Values.

Remarks

See also