NET_ADAPTER_RECEIVE_SCALING_INDIRECTION_ENTRIES - NtDoc

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

typedef struct _NET_ADAPTER_RECEIVE_SCALING_INDIRECTION_ENTRIES {
  NET_ADAPTER_RECEIVE_SCALING_INDIRECTION_ENTRY *Entries;
  SIZE_T                                        Length;
} NET_ADAPTER_RECEIVE_SCALING_INDIRECTION_ENTRIES;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-netreceivescaling-_net_adapter_receive_scaling_indirection_entries)

_NET_ADAPTER_RECEIVE_SCALING_INDIRECTION_ENTRIES structure

Description

The NET_ADAPTER_RECEIVE_SCALING_INDIRECTION_ENTRIES structure represents a series of move operations for all entries in the receive side scaling (RSS) indirection table.

Members

Entries

An array of NET_ADAPTER_RECEIVE_SCALING_INDIRECTION_ENTRY structures, each representing a move for an entry in the indirection table.

Length

The number of elements in Entries.

Remarks

NetAdapterCx passes a pointer to this structure as input to a NIC client driver's EvtNetAdapterReceiveScalingSetIndirectionEntries event callback function.

See also

EvtNetAdapterReceiveScalingSetIndirectionEntries

NET_ADAPTER_RECEIVE_SCALING_INDIRECTION_ENTRY

NetAdapterCx Receive Side Scaling