mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 06:25:49 +00:00
[NTOSKRNL] Implement write behind in Cc
For now, this is just a split between scan and flush that were both done during lazy scan previously. Lazy scan shouldn't perform any write operation, but only queue a write behind operation. Our implementation is far from the original, as it seems our lazy scan should queue a write behind operation per shared cache map. Right now, we only perform global operation.
This commit is contained in:
parent
d5c74ae6fe
commit
7e97071c8b
2 changed files with 51 additions and 12 deletions
|
@ -278,7 +278,7 @@ typedef enum _WORK_QUEUE_FUNCTIONS
|
|||
{
|
||||
ReadAhead = 1,
|
||||
WriteBehind = 2,
|
||||
LazyWrite = 3,
|
||||
LazyScan = 3,
|
||||
SetDone = 4,
|
||||
} WORK_QUEUE_FUNCTIONS, *PWORK_QUEUE_FUNCTIONS;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue