NdisFreePacket

This function releases a packet that was allocated from a packet pool with the NdisAllocatePacket function and returns it to the free list.

VOID NdisFreePacket(
  PNDIS_PACKET Packet
);

Parameters

  • Packet
    [in] Pointer to the packet descriptor returned by the NdisAllocatePacket or the NdisDprAllocatePacket function.

Return Values

None.

Remarks

Before calling this function, the driver must either call the NdisFreeBuffer function as many times as necessary to release all buffer descriptors chained to the packet, or call an NdisUnchainBufferAtXXX function as many times as necessary to save all pointers to buffer descriptors. Otherwise, memory associated with buffer descriptors in the chain remains unusable by the driver and by NDIS until the system is rebooted.

The driver must release any spin lock that it is holding before calling this function.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Ndis.h.

See Also

NdisAllocatePacket | NdisDprAllocatePacket | NdisFreeBuffer | NdisReleaseSpinLock | NdisUnchainBufferAtBack | NdisUnchainBufferAtFront

 Last updated on Tuesday, May 18, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.