NdisFreeToNPagedLookasideList - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ndis.h

void NdisFreeToNPagedLookasideList(
  _L,
  _E
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ndis-ndisfreetonpagedlookasidelist)

NdisFreeToNPagedLookasideList macro

Description

The NdisFreeToNPagedLookasideList function returns an entry to the given lookaside list.

Parameters

_L

A pointer to the head of the lookaside list to which the entry will be returned.

_E

A pointer to the entry to be freed.

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, specified in the Free parameter if the driver provided one to the NdisInitializeNPagedLookasideList function, or it frees the given entry itself.

See also

NdisAllocateFromNPagedLookasideList

NdisDeleteNPagedLookasideList

NdisInitializeNPagedLookasideList