// namcache.h
VOID RxNameCacheExpireEntry(
[in] IN PNAME_CACHE_CONTROL NameCacheCtl,
[in] IN PNAME_CACHE NameCache
);
View the official Windows Driver Kit DDI referenceNo description available.
RxNameCacheExpireEntry puts a NAME_CACHE entry on the free list for recycling.
NameCacheCtl [in]A pointer to the NAME_CACHE_CONTROL structure on which to expire the entry.
NameCache [in]A pointer to the NAME_CACHE structure to expire.
The RxNameCacheExpireEntry routine assumes that the name cache entry is not on the active or free list. This routine inserts the NameCache entry at the head of the free list and subtracts one from the NumberActivates member of the NAME_CACHE_CONTROL structure pointed to by NameCacheCtl to update statistics.
RxNameCacheExpireEntryWithShortName