// wdm.h
IOMMU_UNMAP_LOGICAL_RANGE IommuUnmapLogicalRange;
NTSTATUS IommuUnmapLogicalRange(
[_In_] PIOMMU_DMA_DOMAIN Domain,
[_In_] ULONGLONG LogicalAddress,
[_In_] ULONGLONG NumberOfPages
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Unmaps a linear range from a domain.
Domain [_In_]A pointer to the handle to the domain.
LogicalAddress [_In_]The logical address at which unmapping begins. The address must be page aligned.
NumberOfPages [_In_]The number of pages to unmap.
Return STATUS_SUCCESS if the operation succeeds. Otherwise, return an appropriate NTSTATUS Values error code. For more information, see NTSTATUS Values.