[KMTESTS:MM]
[reactos.git] / rostests / kmtests / ntos_mm / NtCreateSection_drv.c
index dbbe7c9..f5082b2 100644 (file)
@@ -381,6 +381,14 @@ TestIrpHandler(
             }
             else
             {
+                PMDL Mdl;
+
+                Mdl = Irp->MdlAddress;
+                ok(Mdl != NULL, "Null pointer for MDL!\n");
+                ok((Mdl->MdlFlags & MDL_PAGES_LOCKED) != 0, "MDL not locked\n");
+                ok((Mdl->MdlFlags & MDL_SOURCE_IS_NONPAGED_POOL) == 0, "MDL from non paged\n");
+                ok((Irp->Flags & IRP_PAGING_IO) != 0, "Non paging IO\n");
+
                 Status = STATUS_SUCCESS;
             }