NetDmaIsr function (netdma.h)
in Windows 8 and later.
Syntax
NET_DMA_EXPORT VOID NetDmaIsr(
[in] PVOID NetDmaChannelHandle,
[in] PHYSICAL_ADDRESS DmaDescriptor,
[out] PULONG pCpuNumber
);
Parameters
[in] NetDmaChannelHandle
A handle that identifies the DMA channel. The DMA provider driver received this handle from the NetDMA interface in a call to the ProviderAllocateDmaChannel function.
[in] DmaDescriptor
The physical address of the DMA descriptor that is associated with the interrupt.
[out] pCpuNumber
The number of the CPU that is associated with the interrupt DPC. The NetDMA interface writes this CPU number at the provided address before NetDmaIsr returns.
Return value
None
Remarks
DMA provider drivers call the NetDmaIsr function in their interrupt service routine (ISR).
If the NET_DMA_INTERRUPT_ON_COMPLETION flag in the ControlFlags member of the NET_DMA_DESCRIPTOR structure is set, the DMA engine should generate an interrupt for the DMA channel after it processes the DMA descriptor. When this flag is cleared, the DMA engine does not generate an interrupt.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Supported for NetDMA 1.0 drivers in Windows Vista. |
Target Platform | Universal |
Header | netdma.h (include Netdma.h) |
IRQL | DEVICE_LEVEL |