Author: akhaldi
Date: Wed Sep 11 19:59:59 2013
New Revision: 60043
URL:
http://svn.reactos.org/svn/reactos?rev=60043&view=rev
Log:
[NTOSKRNL]
* Silence some debug prints.
Modified:
trunk/reactos/ntoskrnl/mm/ARM3/expool.c
trunk/reactos/ntoskrnl/mm/ARM3/mminit.c
trunk/reactos/ntoskrnl/mm/ARM3/pagfault.c
trunk/reactos/ntoskrnl/mm/ARM3/pool.c
trunk/reactos/ntoskrnl/po/events.c
Modified: trunk/reactos/ntoskrnl/mm/ARM3/expool.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/mm/ARM3/expool.c?…
==============================================================================
--- trunk/reactos/ntoskrnl/mm/ARM3/expool.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/mm/ARM3/expool.c [iso-8859-1] Wed Sep 11 19:59:59 2013
@@ -1008,9 +1008,9 @@
//
// During development, print this out so we can see what's happening
//
- DPRINT1("EXPOOL: Pool Tracker Table at: 0x%p with 0x%lx bytes\n",
+ DPRINT("EXPOOL: Pool Tracker Table at: 0x%p with 0x%lx bytes\n",
PoolTrackTable, PoolTrackTableSize * sizeof(POOL_TRACKER_TABLE));
- DPRINT1("EXPOOL: Big Pool Tracker Table at: 0x%p with 0x%lx bytes\n",
+ DPRINT("EXPOOL: Big Pool Tracker Table at: 0x%p with 0x%lx bytes\n",
PoolBigPageTable, PoolBigPageTableSize *
sizeof(POOL_TRACKER_BIG_PAGES));
//
Modified: trunk/reactos/ntoskrnl/mm/ARM3/mminit.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/mm/ARM3/mminit.c?…
==============================================================================
--- trunk/reactos/ntoskrnl/mm/ARM3/mminit.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/mm/ARM3/mminit.c [iso-8859-1] Wed Sep 11 19:59:59 2013
@@ -1180,7 +1180,7 @@
}
/* Release the PFN lock and flush the TLB */
- DPRINT1("Loader pages freed: %lx\n", LoaderPages);
+ DPRINT("Loader pages freed: %lx\n", LoaderPages);
KeReleaseQueuedSpinLock(LockQueuePfnLock, OldIrql);
KeFlushCurrentTb();
Modified: trunk/reactos/ntoskrnl/mm/ARM3/pagfault.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/mm/ARM3/pagfault.…
==============================================================================
--- trunk/reactos/ntoskrnl/mm/ARM3/pagfault.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/mm/ARM3/pagfault.c [iso-8859-1] Wed Sep 11 19:59:59 2013
@@ -56,7 +56,7 @@
StackBase = Teb->NtTib.StackBase;
DeallocationStack = Teb->DeallocationStack;
GuranteedSize = Teb->GuaranteedStackBytes;
- DPRINT1("Handling guard page fault with Stacks Addresses 0x%p and 0x%p,
guarantee: %lx\n",
+ DPRINT("Handling guard page fault with Stacks Addresses 0x%p and 0x%p,
guarantee: %lx\n",
StackBase, DeallocationStack, GuranteedSize);
/* Guarantees make this code harder, for now, assume there aren't any */
@@ -101,7 +101,7 @@
if ((NT_SUCCESS(Status) || (Status == STATUS_ALREADY_COMMITTED)))
{
/* We did it! */
- DPRINT1("Guard page handled successfully for %p\n", Address);
+ DPRINT("Guard page handled successfully for %p\n", Address);
return STATUS_PAGE_FAULT_GUARD_PAGE;
}
Modified: trunk/reactos/ntoskrnl/mm/ARM3/pool.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/mm/ARM3/pool.c?re…
==============================================================================
--- trunk/reactos/ntoskrnl/mm/ARM3/pool.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/mm/ARM3/pool.c [iso-8859-1] Wed Sep 11 19:59:59 2013
@@ -482,7 +482,7 @@
// Get the page bit count
//
i = ((SizeInPages - 1) / PTE_COUNT) + 1;
- DPRINT1("Paged pool expansion: %lu %x\n", i, SizeInPages);
+ DPRINT("Paged pool expansion: %lu %x\n", i, SizeInPages);
//
// Check if there is enougn paged pool expansion space left
Modified: trunk/reactos/ntoskrnl/po/events.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/po/events.c?rev=6…
==============================================================================
--- trunk/reactos/ntoskrnl/po/events.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/po/events.c [iso-8859-1] Wed Sep 11 19:59:59 2013
@@ -264,11 +264,11 @@
/* FIXME: What do do with the capabilities? */
{
- DPRINT1("Device capabilities: 0x%x (", Caps);
- if (Caps & SYS_BUTTON_POWER) DbgPrint(" POWER");
- if (Caps & SYS_BUTTON_SLEEP) DbgPrint(" SLEEP");
- if (Caps & SYS_BUTTON_LID) DbgPrint(" LID");
- DbgPrint(" )\n");
+ DPRINT("Device capabilities: 0x%x (", Caps);
+ if (Caps & SYS_BUTTON_POWER) DPRINT(" POWER");
+ if (Caps & SYS_BUTTON_SLEEP) DPRINT(" SLEEP");
+ if (Caps & SYS_BUTTON_LID) DPRINT(" LID");
+ DPRINT(" )\n");
}
SysButtonContext = ExAllocatePool(NonPagedPool, sizeof(SYS_BUTTON_CONTEXT));