MmUnlockPages

VOID
    MmUnlockPages(

        IN PMDL  MemoryDescriptorList
        );

MmUnlockPages unlocks physical pages described by a given MDL.

Parameters

MemoryDescriptorList
Points to an MDL.

Comments

The memory described by the specified MDL must have been locked previously by a call to MmProbeAndLockPages. As the pages are unlocked, the MDL is updated.

Callers of MmUnlockPages must be running at IRQL <= DISPATCH_LEVEL.

See Also

MmProbeAndLockPages