// wdm.h
IOMMU_DEVICE_FAULT_HANDLER IommuDeviceFaultHandler;
VOID IommuDeviceFaultHandler(
PVOID Context,
PFAULT_INFORMATION FaultInformation
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Reports fault from a specific device and domain.
ContextA pointer to the opaque driver-supplied fault context.
FaultInformationA pointer to a FAULT_INFORMATION structure that contains fault information.
Register your implementation of this callback function by setting the FaultHandler member of DEVICE_FAULT_CONFIGURATION.