https://git.reactos.org/?p=reactos.git;a=commitdiff;h=4663d02cd7d55e41a320cffb6655afae36ab07ef

commit 4663d02cd7d55e41a320cffb6655afae36ab07ef
Author: Pierre Schweitzer <[email protected]>
AuthorDate: Fri Dec 29 20:33:42 2017 +0100

    [NTOSKRNL] In the memory dumper, print in the direct order to make 
!poolused TAG usage easier
---
 ntoskrnl/mm/ARM3/expool.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ntoskrnl/mm/ARM3/expool.c b/ntoskrnl/mm/ARM3/expool.c
index e42d7e8c4e..89103807a6 100644
--- a/ntoskrnl/mm/ARM3/expool.c
+++ b/ntoskrnl/mm/ARM3/expool.c
@@ -562,11 +562,11 @@ MiDumpPoolConsumers(BOOLEAN CalledFromDbg, ULONG Tag, 
ULONG Mask, ULONG Flags)
                 if (ExpTagAllowPrint(Tag[0]) && ExpTagAllowPrint(Tag[1]) && 
ExpTagAllowPrint(Tag[2]) && ExpTagAllowPrint(Tag[3]))
                 {
                     //
-                    // Print in reversed order to match what is in source code
+                    // Print in direct order to make !poolused TAG usage easier
                     //
                     if (Verbose)
                     {
-                        MiDumperPrint(CalledFromDbg, 
"'%c%c%c%c'\t\t%ld\t\t%ld\t\t%ld\t\t%ld\t\t%ld\t\t%ld\t\t%ld\t\t%ld\n", Tag[3], 
Tag[2], Tag[1], Tag[0],
+                        MiDumperPrint(CalledFromDbg, 
"'%c%c%c%c'\t\t%ld\t\t%ld\t\t%ld\t\t%ld\t\t%ld\t\t%ld\t\t%ld\t\t%ld\n", Tag[0], 
Tag[1], Tag[2], Tag[3],
                                       TableEntry->NonPagedAllocs, 
TableEntry->NonPagedFrees,
                                       (TableEntry->NonPagedAllocs - 
TableEntry->NonPagedFrees), TableEntry->NonPagedBytes,
                                       TableEntry->PagedAllocs, 
TableEntry->PagedFrees,
@@ -574,7 +574,7 @@ MiDumpPoolConsumers(BOOLEAN CalledFromDbg, ULONG Tag, ULONG 
Mask, ULONG Flags)
                     }
                     else
                     {
-                        MiDumperPrint(CalledFromDbg, 
"'%c%c%c%c'\t\t%ld\t\t%ld\t\t%ld\t\t%ld\n", Tag[3], Tag[2], Tag[1], Tag[0],
+                        MiDumperPrint(CalledFromDbg, 
"'%c%c%c%c'\t\t%ld\t\t%ld\t\t%ld\t\t%ld\n", Tag[0], Tag[1], Tag[2], Tag[3],
                                       TableEntry->NonPagedAllocs, 
TableEntry->NonPagedBytes,
                                       TableEntry->PagedAllocs, 
TableEntry->PagedBytes);
                     }

Reply via email to