VerifierPortIoAllocateMdl

_MDL *__stdcall VerifierPortIoAllocateMdl(
        VOID *VirtualAddress,
        UINT64 Length,
        UINT8 SecondaryBuffer,
        UINT8 ChargeQuota,
        _IRP *Irp,
        VOID *CallerAddress){
  if( (MmVerifierData & 0x400000) == 0 || (MmVerifierData & 1) != 0 || (MmVerifierData & 8) != 0 )
    return(_MDL *)pXdvIoAllocateMdl(
                     (int)VirtualAddress,
                     Length,
                     SecondaryBuffer,
                     ChargeQuota,
                     (__int64)Irp,
                     (__int64)CallerAddress,
                     (__int64)IovAllocateMdl);
  else
    return IoAllocateMdl(VirtualAddress, Length, SecondaryBuffer, ChargeQuota, Irp);
}

Referenced by:

No references.