[NTOSKRNL] Store the total dirty pages per shared cache map in it.

This commit is contained in:
Pierre Schweitzer 2018-01-26 10:40:05 +01:00
parent 2362e0faae
commit 5cc0668b21
No known key found for this signature in database
GPG key ID: 7545556C3D585B0B
3 changed files with 9 additions and 1 deletions

View file

@ -159,8 +159,9 @@ typedef struct _ROS_SHARED_CACHE_MAP
PVOID LazyWriteContext;
KSPIN_LOCK CacheMapLock;
ULONG OpenCount;
ULONG DirtyPageThreshold;
ULONG DirtyPages;
LIST_ENTRY SharedCacheMapLinks;
ULONG DirtyPageThreshold;
#if DBG
BOOLEAN Trace; /* enable extra trace output for this cache map and it's VACBs */
#endif