https://git.reactos.org/?p=reactos.git;a=commitdiff;h=9c27193a43535f0387a09…
commit 9c27193a43535f0387a09ad9873b7ca2b387f255
Author: Pierre Schweitzer <pierre(a)reactos.org>
AuthorDate: Thu Jan 25 13:47:00 2018 +0100
Commit: Pierre Schweitzer <pierre(a)reactos.org>
CommitDate: Thu Jan 25 13:47:00 2018 +0100
[NTOSKRNL] Contrary to WinDBG !filecache, we don't display CONTROL_AREA but shared
cache map
---
ntoskrnl/cc/view.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/ntoskrnl/cc/view.c b/ntoskrnl/cc/view.c
index f58fa5d3cc..6f4457f5bf 100644
--- a/ntoskrnl/cc/view.c
+++ b/ntoskrnl/cc/view.c
@@ -1500,7 +1500,8 @@ ExpKdbgExtFileCache(ULONG Argc, PCHAR Argv[])
PLIST_ENTRY ListEntry;
UNICODE_STRING NoName = RTL_CONSTANT_STRING(L"No name for File");
- KdbpPrint("Control\t\tValid\tDirty\tName\n");
+ KdbpPrint(" Usage Summary (in kb)\n");
+ KdbpPrint("Shared\t\tValid\tDirty\tName\n");
/* No need to lock the spin lock here, we're in DBG */
for (ListEntry = CcCleanSharedCacheMapList.Flink;
ListEntry != &CcCleanSharedCacheMapList;