NdisFreeToNPagedLookasideList (Compact 2013)
3/26/2014
This function returns an entry to the given lookaside list.
Syntax
VOID NdisFreeToNPagedLookasideList(
IN PNPAGED_LOOKASIDE_LIST Lookaside,
IN PVOID Entry
);
Parameters
- Lookaside
Pointer to the head of the lookaside list to which the entry will be returned.
- Entry
Pointer to the entry to be freed.
Return Value
None
Remarks
If the lookaside list has not reached the system-determined maximum number of entries, Entry is inserted at the front of the lookaside list. If the list has reached its maximum size, Entry is released to nonpaged pool. That is, NdisFreeToNPagedLookasideList either calls the driver's Free function if the driver provided one to NdisInitializeNPagedLookasideList, or it frees the given entry itself.
Requirements
Header |
ndis.h |
Library |
ndis.lib |
See Also
Reference
NDIS Lookaside Lists Interface
NdisAllocateFromNPagedLookasideList
NdisInitializeNPagedLookasideList
NdisDeleteNPagedLookasideList