mirror of
https://github.com/reactos/reactos.git
synced 2026-05-26 02:45:02 +08:00
[NTOSKRNL] Fix lazy writer for in-use VACB.
Adjusting refcount and enabling lazy-write for pinned VACB makes it actually more efficient, often purging data to disk, reducing memory stress for the system. This is required for defering writes. This commit unfortunately (?) reverts a previous revert. CORE-12081 CORE-14582 CORE-14313
This commit is contained in:
@@ -275,6 +275,10 @@ CcSetDirtyPinnedData (
|
||||
Bcb, Lsn);
|
||||
|
||||
iBcb->Dirty = TRUE;
|
||||
if (!iBcb->Vacb->Dirty)
|
||||
{
|
||||
CcRosMarkDirtyVacb(iBcb->Vacb);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -205,6 +205,8 @@ CcRosFlushDirtyPages (
|
||||
|
||||
while ((current_entry != &DirtyVacbListHead) && (Target > 0))
|
||||
{
|
||||
ULONG Refs;
|
||||
|
||||
current = CONTAINING_RECORD(current_entry,
|
||||
ROS_VACB,
|
||||
DirtyVacbListEntry);
|
||||
@@ -231,7 +233,9 @@ CcRosFlushDirtyPages (
|
||||
ASSERT(current->Dirty);
|
||||
|
||||
/* One reference is added above */
|
||||
if (CcRosVacbGetRefCount(current) > 2)
|
||||
Refs = CcRosVacbGetRefCount(current);
|
||||
if ((Refs > 3 && current->PinCount == 0) ||
|
||||
(Refs > 4 && current->PinCount > 1))
|
||||
{
|
||||
current->SharedCacheMap->Callbacks->ReleaseFromLazyWrite(
|
||||
current->SharedCacheMap->LazyWriteContext);
|
||||
|
||||
Reference in New Issue
Block a user