This function creates a buffer descriptor mapping a specified virtual ( sub )range within an already allocated, nonpaged memory block.
Header file: | Ndis.h |
Windows CE versions: | 2.0 and later |
VOID NdisAllocateBuffer( OUT PNDIS_STATUS Status,
OUT PNDIS_BUFFER *Buffer, IN NDIS_HANDLE PoolHandle,
IN PVOID VirtualAddress, IN UINT Length );
NDIS_STATUS_SUCCESS indicates success. NDIS_STATUS_FAILURE indicates failure.
This function allocates storage for and initializes a buffer descriptor to map a specified range of previously allocated memory, such as memory used for a packet header or an NIC receive buffer.
Buffer descriptor allocation draws on the buffer pool that NdisAllocateBufferPool creates. A driver can call this function as many times as necessary to allocate the buffer descriptors that it requires if it called NdisAllocateBufferPool during initialization.
The driver must release any spin lock that it is currently holding before calling this function.
All lower-level NDIS drivers must allocate all buffer descriptors that they chain to packets from a buffer pool. Only highest-level protocol drivers can be given OS-dependent descriptors mapping virtual memory ranges, and, if these memory descriptors are equivalent to NDIS buffer descriptors, a highest-level protocol can pass such descriptors as parameters to NDIS functions.
A driver that calls this function runs at IRQL <=DISPATCH_LEVEL.
NdisAllocateBufferPool, NdisAllocateMemory, NdisFreeBuffer