IOMMU_FLUSH_DOMAIN_VA_LIST - NtDoc

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

IOMMU_FLUSH_DOMAIN_VA_LIST IommuFlushDomainVaList;

NTSTATUS IommuFlushDomainVaList(
  [_In_] PIOMMU_DMA_DOMAIN Domain,
  [_In_] BOOLEAN LastLevel,
  [_In_] ULONG Number,
  [_In_] PVOID VaList
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

Description

Flushes the TLB for all entries that match the specified domain's ASID and one of the addresses in the provided list.

Parameters

Domain [_In_]

A pointer to the handle to the domain.

LastLevel [_In_]

A boolean value that indicates whether only entries pertaining to the last level of translation require flushing.

Number [_In_]

The number of entries in the VA list.

VaList [_In_]

A pointer to a list of flush addresses.

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