CcMdlReadComplete - NtDoc

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

VOID CcMdlReadComplete(
  [in] PFILE_OBJECT FileObject,
  [in] PMDL         MdlChain
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ntifs-ccmdlreadcomplete)

CcMdlReadComplete function

Description

The CcMdlReadComplete routine frees the memory descriptor lists (MDL) created by CcMdlRead for a cached file.

Parameters

FileObject [in]

File object pointer that was passed to CcMdlRead.

MdlChain [in]

Address of the MDL chain returned by CcMdlRead.

Remarks

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.

See also

CcMdlRead