[NTOS]: Kill some debug spew.
authorSir Richard <sir_richard@svn.reactos.org>
Sun, 6 Jun 2010 00:49:26 +0000 (00:49 +0000)
committerSir Richard <sir_richard@svn.reactos.org>
Sun, 6 Jun 2010 00:49:26 +0000 (00:49 +0000)
svn path=/trunk/; revision=47604

reactos/ntoskrnl/mm/ARM3/pagfault.c
reactos/ntoskrnl/mm/ARM3/pool.c
reactos/ntoskrnl/mm/mmfault.c

index 8fd0d15..68c1bfe 100644 (file)
@@ -107,7 +107,7 @@ MiResolveDemandZeroFault(IN PVOID Address,
     
     /* Get a page */
     PageFrameNumber = MiRemoveAnyPage(0);
     
     /* Get a page */
     PageFrameNumber = MiRemoveAnyPage(0);
-    DPRINT1("New pool page: %lx\n", PageFrameNumber);
+    DPRINT("New pool page: %lx\n", PageFrameNumber);
     
     /* Initialize it */
     MiInitializePfn(PageFrameNumber, PointerPte, TRUE);
     
     /* Initialize it */
     MiInitializePfn(PageFrameNumber, PointerPte, TRUE);
@@ -135,7 +135,7 @@ MiResolveDemandZeroFault(IN PVOID Address,
     //
     // It's all good now
     //
     //
     // It's all good now
     //
-    DPRINT1("Paged pool page has now been paged in\n");
+    DPRINT("Paged pool page has now been paged in\n");
     return STATUS_PAGE_FAULT_DEMAND_ZERO;
 }
 
     return STATUS_PAGE_FAULT_DEMAND_ZERO;
 }
 
index e3af2a6..37cb2e5 100644 (file)
@@ -422,7 +422,6 @@ MiAllocatePoolPages(IN POOL_TYPE PoolType,
         KeFlushEntireTb(TRUE, TRUE);
         
         /* Setup a demand-zero writable PTE */
         KeFlushEntireTb(TRUE, TRUE);
         
         /* Setup a demand-zero writable PTE */
-        DPRINT1("Setting up demand zero\n");
         MI_MAKE_SOFTWARE_PTE(&TempPte, MM_READWRITE);
         
         //
         MI_MAKE_SOFTWARE_PTE(&TempPte, MM_READWRITE);
         
         //
index 6f04e94..c4a8173 100644 (file)
@@ -290,7 +290,7 @@ MmAccessFault(IN BOOLEAN StoreInstruction,
         //
         // Hand it off to more competent hands...
         //
         //
         // Hand it off to more competent hands...
         //
-        DPRINT1("ARM3 fault %p\n", MemoryArea);
+        DPRINT("ARM3 fault %p\n", MemoryArea);
         return MmArmAccessFault(StoreInstruction, Address, Mode, TrapInformation);
     }   
 
         return MmArmAccessFault(StoreInstruction, Address, Mode, TrapInformation);
     }