MmResetDriverPaging - NtDoc

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

VOID MmResetDriverPaging(
  [in] PVOID AddressWithinSection
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdm-mmresetdriverpaging)

MmResetDriverPaging function

Description

The MmResetDriverPaging routine resets the pageable status of a driver's sections to that specified when the driver was compiled.

Parameters

AddressWithinSection [in]

A pointer to a virtual address in the driver (for example, the address of the DriverEntry routine).

Remarks

MmResetDriverPaging causes those routines that would not normally be pageable, to be locked into memory. Hence, image sections such as .text and .data will be locked in memory if this routine is called.

A driver that calls this routine must do so before enabling interrupts on its device.

A call to MmPageEntireDriver is not a prerequisite to calling this routine. However, calls to MmResetDriverPaging do nothing if the driver's image-section attributes have never been overridden by a call to MmPageEntireDriver.

For more information about paging an entire driver, see Making Drivers Pageable.

See also

MmLockPagableCodeSection

MmLockPagableDataSection

MmLockPagableSectionByHandle

MmPageEntireDriver

MmUnlockPagableImageSection