mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
[NTOSKRNL]
Silence some annoying DPRINTs svn path=/trunk/; revision=64581
This commit is contained in:
@@ -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 */
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user