// ntifs.h
VOID FsRtlDeleteTunnelCache(
[in] TUNNEL *Cache
);
View the official Windows Driver Kit DDI referenceNo description available.
The FsRtlDeleteTunnelCache routine deletes a tunnel cache.
Cache [in]Pointer to the tunnel cache structure to delete. The tunnel cache must have been initialized by calling FsRtlInitializeTunnelCache.
FsRtlDeleteTunnelCache deletes all information contained in the tunnel cache. After the call to FsRtlDeleteTunnelCache, the tunnel cache is no longer valid.
Callers are responsible for synchronizing access to the FsRtlDeleteTunnelCache call. In other words, a file system must ensure that it does not call FsRtlDeleteTunnelCache at the same time it is calling another tunnel cache routine from a different thread.
For more information about file name tunneling, see Microsoft Knowledge Base Article 172190.