FltFastIoMdlReadComplete - NtDoc

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

BOOLEAN FLTAPI FltFastIoMdlReadComplete(
       PFLT_INSTANCE InitiatingInstance,
  [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-fltkernel-fltfastiomdlreadcomplete)

FltFastIoMdlReadComplete function

Description

The FltFastIoMdlReadComplete routine completes the read operation that the FltFastIoMdlRead routine initiated.

Parameters

InitiatingInstance

Opaque instance pointer for the caller. This parameter is required and cannot be NULL.

FileObject [in]

A pointer to the file object.

MdlChain [in]

A pointer to a linked list of memory descriptor lists (MDLs) that the FltFastIoMdlRead routine allocated.

Return value

None

Remarks

The FltFastIoMdlReadComplete routine unlocks the pages in cache memory that the FltFastIoMdlRead routine allocated.

See also

FltFastIoMdlRead