mirror of
https://github.com/reactos/reactos.git
synced 2025-05-31 23:18:39 +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.MappedLength = Length;
|
||||||
iBcb->PFCB.MappedFileOffset = *FileOffset;
|
iBcb->PFCB.MappedFileOffset = *FileOffset;
|
||||||
iBcb->Vacb = Vacb;
|
iBcb->Vacb = Vacb;
|
||||||
iBcb->Dirty = FALSE;
|
|
||||||
iBcb->PinCount = 0;
|
iBcb->PinCount = 0;
|
||||||
iBcb->RefCount = 1;
|
iBcb->RefCount = 1;
|
||||||
ExInitializeResourceLite(&iBcb->Lock);
|
ExInitializeResourceLite(&iBcb->Lock);
|
||||||
|
@ -579,7 +578,6 @@ CcSetDirtyPinnedData (
|
||||||
CCTRACE(CC_API_DEBUG, "Bcb=%p Lsn=%p\n",
|
CCTRACE(CC_API_DEBUG, "Bcb=%p Lsn=%p\n",
|
||||||
Bcb, Lsn);
|
Bcb, Lsn);
|
||||||
|
|
||||||
iBcb->Dirty = TRUE;
|
|
||||||
if (!iBcb->Vacb->Dirty)
|
if (!iBcb->Vacb->Dirty)
|
||||||
{
|
{
|
||||||
CcRosMarkDirtyVacb(iBcb->Vacb);
|
CcRosMarkDirtyVacb(iBcb->Vacb);
|
||||||
|
|
|
@ -233,7 +233,6 @@ typedef struct _INTERNAL_BCB
|
||||||
ERESOURCE Lock;
|
ERESOURCE Lock;
|
||||||
PUBLIC_BCB PFCB;
|
PUBLIC_BCB PFCB;
|
||||||
PROS_VACB Vacb;
|
PROS_VACB Vacb;
|
||||||
BOOLEAN Dirty;
|
|
||||||
ULONG PinCount;
|
ULONG PinCount;
|
||||||
CSHORT RefCount; /* (At offset 0x34 on WinNT4) */
|
CSHORT RefCount; /* (At offset 0x34 on WinNT4) */
|
||||||
LIST_ENTRY BcbEntry;
|
LIST_ENTRY BcbEntry;
|
||||||
|
|
Loading…
Reference in a new issue