[NTOSKRNL]

Silence some annoying DPRINTs

svn path=/trunk/; revision=64581
This commit is contained in:
Timo Kreuzer
2014-10-07 22:02:12 +00:00
parent a78a879f54
commit 10b789e07a
2 changed files with 3 additions and 4 deletions
+2 -2
View File
@@ -714,7 +714,7 @@ MiInsertStandbyListAtFront(IN PFN_NUMBER PageFrameIndex)
PMMPFN Pfn1, Pfn2;
/* Make sure the lock is held */
DPRINT1("Inserting page: %lx into standby list !\n", PageFrameIndex);
DPRINT("Inserting page: %lx into standby list !\n", PageFrameIndex);
ASSERT(KeGetCurrentIrql() == DISPATCH_LEVEL);
/* Make sure the PFN is valid */
@@ -1171,7 +1171,7 @@ MiDecrementShareCount(IN PMMPFN Pfn1,
TempPte.u.Soft.Prototype = 0;
TempPte.u.Soft.Protection = Pfn1->OriginalPte.u.Soft.Protection;
MI_WRITE_INVALID_PTE(PointerPte, TempPte);
DPRINT1("Marking PTE: %p as transition (%p - %lx)\n", PointerPte, Pfn1, MiGetPfnEntryIndex(Pfn1));
DPRINT("Marking PTE: %p as transition (%p - %lx)\n", PointerPte, Pfn1, MiGetPfnEntryIndex(Pfn1));
}
/* Put the page in transition */
+1 -2
View File
@@ -676,7 +676,7 @@ MiSegmentDelete(IN PSEGMENT Segment)
if (TempPte.u.Soft.Transition == 1)
{
/* We can give the page back for other use */
DPRINT1("Releasing page for transition PTE %p\n", PointerPte);
DPRINT("Releasing page for transition PTE %p\n", PointerPte);
PageFrameIndex = PFN_FROM_PTE(&TempPte);
Pfn1 = MI_PFN_ELEMENT(PageFrameIndex);
@@ -1675,7 +1675,6 @@ MmGetImageInformation (OUT PSECTION_IMAGE_INFORMATION ImageInformation)
ASSERT(MiIsRosSectionObject(SectionObject) == TRUE);
/* Return the image information */
DPRINT1("HERE!\n");
*ImageInformation = ((PROS_SECTION_OBJECT)SectionObject)->ImageSection->ImageInformation;
}