NetRxQueueGetRingCollection - NtDoc

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

const NET_RING_COLLECTION * NetRxQueueGetRingCollection(
  [_In_] NETPACKETQUEUE PacketQueue
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-netrxqueue-netrxqueuegetringcollection)

NetRxQueueGetRingCollection function

Description

The NetRxQueueGetRingCollection function retrieves the NET_RING_COLLECTION structure for a receive (Rx) queue.

Parameters

PacketQueue [_In_]

A NETPACKETQUEUE structure. The client driver receives a pointer to this NETPACKETQUEUE structure in its EVT_NET_ADAPTER_CREATE_RXQUEUE callback function.

Return value

Returns a pointer to the queue's NET_RING_COLLECTION structure.

Remarks

Use the NET_RING_COLLECTION structure returned by this function to access a receive queue's net rings.

See also