Author: tkreuzer
Date: Tue Oct  7 22:02:12 2014
New Revision: 64581

URL: http://svn.reactos.org/svn/reactos?rev=64581&view=rev
Log:
[NTOSKRNL]
Silence some annoying DPRINTs

Modified:
    trunk/reactos/ntoskrnl/mm/ARM3/pfnlist.c
    trunk/reactos/ntoskrnl/mm/ARM3/section.c

Modified: trunk/reactos/ntoskrnl/mm/ARM3/pfnlist.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/mm/ARM3/pfnlist.c?rev=64581&r1=64580&r2=64581&view=diff
==============================================================================
--- trunk/reactos/ntoskrnl/mm/ARM3/pfnlist.c    [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/mm/ARM3/pfnlist.c    [iso-8859-1] Tue Oct  7 
22:02:12 2014
@@ -714,7 +714,7 @@
     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 @@
             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 */

Modified: trunk/reactos/ntoskrnl/mm/ARM3/section.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/mm/ARM3/section.c?rev=64581&r1=64580&r2=64581&view=diff
==============================================================================
--- trunk/reactos/ntoskrnl/mm/ARM3/section.c    [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/mm/ARM3/section.c    [iso-8859-1] Tue Oct  7 
22:02:12 2014
@@ -676,7 +676,7 @@
             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 @@
     ASSERT(MiIsRosSectionObject(SectionObject) == TRUE);
 
     /* Return the image information */
-    DPRINT1("HERE!\n");
     *ImageInformation = 
((PROS_SECTION_OBJECT)SectionObject)->ImageSection->ImageInformation;
 }
 


Reply via email to