// ntifs.h
VOID CcMdlReadComplete(
[in] PFILE_OBJECT FileObject,
[in] PMDL MdlChain
);
View the official Windows Driver Kit DDI referenceNo description available.
The CcMdlReadComplete routine frees the memory descriptor lists (MDL) created by CcMdlRead for a cached file.
FileObject [in]File object pointer that was passed to CcMdlRead.
MdlChain [in]Address of the MDL chain returned by CcMdlRead.
CcMdlReadComplete frees the memory descriptor lists (MDL) created by CcMdlRead for a cached file. All physical pages that were locked down are unlocked. Any pages that were mapped are unmapped.
Each call to CcMdlRead must be followed by a call to CcMdlReadComplete.