mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[NTOSKRNL] Drop the no longer needed Dirty field
CORE-15954
This commit is contained in:
parent
8b6696fcdb
commit
bd75947372
2 changed files with 0 additions and 3 deletions
|
@ -216,7 +216,6 @@ CcpGetAppropriateBcb(
|
|||
iBcb->PFCB.MappedLength = Length;
|
||||
iBcb->PFCB.MappedFileOffset = *FileOffset;
|
||||
iBcb->Vacb = Vacb;
|
||||
iBcb->Dirty = FALSE;
|
||||
iBcb->PinCount = 0;
|
||||
iBcb->RefCount = 1;
|
||||
ExInitializeResourceLite(&iBcb->Lock);
|
||||
|
@ -579,7 +578,6 @@ CcSetDirtyPinnedData (
|
|||
CCTRACE(CC_API_DEBUG, "Bcb=%p Lsn=%p\n",
|
||||
Bcb, Lsn);
|
||||
|
||||
iBcb->Dirty = TRUE;
|
||||
if (!iBcb->Vacb->Dirty)
|
||||
{
|
||||
CcRosMarkDirtyVacb(iBcb->Vacb);
|
||||
|
|
|
@ -233,7 +233,6 @@ typedef struct _INTERNAL_BCB
|
|||
ERESOURCE Lock;
|
||||
PUBLIC_BCB PFCB;
|
||||
PROS_VACB Vacb;
|
||||
BOOLEAN Dirty;
|
||||
ULONG PinCount;
|
||||
CSHORT RefCount; /* (At offset 0x34 on WinNT4) */
|
||||
LIST_ENTRY BcbEntry;
|
||||
|
|
Loading…
Reference in a new issue