This function allocates and initializes a block of storage for a pool of packet descriptors.
Header file: | Ndis.h |
Windows CE versions: | 2.0 and later |
VOID NdisAllocatePacketPool( OUT PNDIS_STATUS Status,
OUT PNDIS_HANDLE PoolHandle, IN UINT NumberOfDescriptors,
IN UINT ProtocolReservedLength );
A handle to the packet pool indicates success.
The caller should save the handle returned by this function. Usually, the driver next calls the NdisAllocatePacket function one or more times with this handle to allocate a set of packet descriptors. The NumberofDescriptors specified in the call to this function is the effective limit on how many times the driver can call NdisAllocatePacket before it must call the NdisFreePacket function to return a packet descriptor to the free list for the packet pool.
Since packets sent or indicated are returned to the allocating driver, it can reuse each packet descriptor after calling the NdisReinitializePacket function and setting it up again with a chain of buffer descriptors, or the driver can call the NdisFreePacket function to return that packet to the free list. Reinitializing and reusing packets allocated from the packet pool is far faster than freeing and reallocating them. Before a driver calls NdisReinitializePacket with a packet descriptor, it must save the pointers to buffer descriptors that are chained to the packet descriptor since NdisReinitializePacket sets the head of the buffer chain to NULL.
When the driver no longer needs the packet pool, it calls the NdisFreePacketPool function to release the packet pool storage.
The driver must release any spin lock that it is holding before calling this function.
A driver that calls this function runs at IRQL <=DISPATCH_LEVEL.
NdisAllocatePacket, NdisFreePacketPool, NdisMIndicateReceivePacket, NdisReinitializePacket, NdisUnchainBufferAtBack, NdisUnchainBufferAtFront