NDIS_RSS_PROCESSOR_INFO struttura (ntddndis.h)
La struttura NDIS_RSS_PROCESSOR_INFO specifica informazioni sul processore di ricezione lato CPU (RSS) impostato nel computer locale.
Sintassi
typedef struct _NDIS_RSS_PROCESSOR_INFO {
NDIS_OBJECT_HEADER Header;
ULONG Flags;
PROCESSOR_NUMBER RssBaseProcessor;
ULONG MaxNumRssProcessors;
USHORT PreferredNumaNode;
ULONG RssProcessorArrayOffset;
ULONG RssProcessorCount;
ULONG RssProcessorEntrySize;
PROCESSOR_NUMBER RssMaxProcessor;
NDIS_RSS_PROFILE RssProfile;
} NDIS_RSS_PROCESSOR_INFO, *PNDIS_RSS_PROCESSOR_INFO;
Members
Header
Struttura NDIS_OBJECT_HEADER per la struttura NDIS_RSS_PROCESSOR_INFO . NDIS imposta il membro Type della struttura specificata da Header per NDIS_OBJECT_TYPE_RSS_PROCESSOR_INFO. NDIS imposta anche i membri Revision e Size sui valori visualizzati nella tabella seguente.
Versione NDIS | Valore di revisione | Valore dimensione |
---|---|---|
NDIS 6.20 | NDIS_RSS_PROCESSOR_INFO_REVISION_1 | NDIS_SIZEOF_RSS_PROCESSOR_INFO_REVISION_1 |
NDIS 6.30 | NDIS_RSS_PROCESSOR_INFO_REVISION_2 | NDIS_SIZEOF_RSS_PROCESSOR_INFO_REVISION_2 |
Flags
Riservato. NDIS imposta questo membro su zero.
RssBaseProcessor
Numero di processore iniziale utilizzato per RSS.
MaxNumRssProcessors
Numero massimo di processori usati per RSS
PreferredNumaNode
Nodo NUMA preferito, che è il nodo più vicino alla scheda di interfaccia di rete
RssProcessorArrayOffset
Offset, in byte, dall'inizio della struttura a una matrice di strutture NDIS_RSS_PROCESSOR , con ogni voce che descrive un processore RSS nel sistema. Il membro RssProcessorCount contiene il numero di strutture NDIS_RSS_PROCESSOR nella matrice. Il membro RssProcessorEntrySize contiene le dimensioni delle strutture NDIS_RSS_PROCESSOR nella matrice.
RssProcessorCount
Numero di elementi nella matrice di strutture NDIS_RSS_PROCESSOR che seguono questa struttura.
RssProcessorEntrySize
Dimensioni, in byte, di elementi nella matrice di strutture NDIS_RSS_PROCESSOR che seguono questa struttura.
RssMaxProcessor
Numero massimo di processore utilizzato per RSS.
RssProfile
Riservato.
Commenti
I driver di rete NDIS usano la struttura di NDIS_RSS_PROCESSOR_INFO nelle chiamate Funzione NdisGetRssProcessorInformation . Dopo che NdisGetRssProcessorInformation restituisce, questa struttura contiene informazioni sul set di processori che verranno usati per il ridimensionamento lato ricezione (RSS).
Requisiti
Requisito | Valore |
---|---|
Client minimo supportato | Supportato in NDIS 6.20 e versioni successive. |
Intestazione | ntddndis.h (include Ndis.h) |