mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 19:26:16 +00:00
[NTOSKRNL]
- Always use push locks within a critical region svn path=/trunk/; revision=54692
This commit is contained in:
@@ -240,6 +240,7 @@ CcUnpinRepinnedBcb (
|
||||
IoStatus->Information = 0;
|
||||
if (WriteThrough)
|
||||
{
|
||||
KeEnterCriticalRegion();
|
||||
ExAcquirePushLockExclusive(&iBcb->CacheSegment->Lock);
|
||||
if (iBcb->CacheSegment->Dirty)
|
||||
{
|
||||
@@ -250,6 +251,7 @@ CcUnpinRepinnedBcb (
|
||||
IoStatus->Status = STATUS_SUCCESS;
|
||||
}
|
||||
ExReleasePushLockExclusive(&iBcb->CacheSegment->Lock);
|
||||
KeLeaveCriticalRegion();
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@@ -448,6 +448,7 @@ CcRosReleaseCacheSegment(PBCB Bcb,
|
||||
KeReleaseSpinLock(&Bcb->BcbLock, oldIrql);
|
||||
KeReleaseGuardedMutex(&ViewLock);
|
||||
ExReleasePushLock(&CacheSeg->Lock);
|
||||
KeLeaveCriticalRegion();
|
||||
|
||||
return(STATUS_SUCCESS);
|
||||
}
|
||||
@@ -476,6 +477,7 @@ CcRosLookupCacheSegment(PBCB Bcb, ULONG FileOffset)
|
||||
{
|
||||
CcRosCacheSegmentIncRefCount(current);
|
||||
KeReleaseSpinLock(&Bcb->BcbLock, oldIrql);
|
||||
KeEnterCriticalRegion();
|
||||
ExAcquirePushLockExclusive(¤t->Lock);
|
||||
return(current);
|
||||
}
|
||||
@@ -525,6 +527,7 @@ CcRosMarkDirtyCacheSegment(PBCB Bcb, ULONG FileOffset)
|
||||
|
||||
CacheSeg->Dirty = TRUE;
|
||||
ExReleasePushLock(&CacheSeg->Lock);
|
||||
KeLeaveCriticalRegion();
|
||||
|
||||
return(STATUS_SUCCESS);
|
||||
}
|
||||
@@ -574,6 +577,8 @@ CcRosUnmapCacheSegment(PBCB Bcb, ULONG FileOffset, BOOLEAN NowDirty)
|
||||
KeReleaseSpinLock(&Bcb->BcbLock, oldIrql);
|
||||
|
||||
ExReleasePushLock(&CacheSeg->Lock);
|
||||
KeLeaveCriticalRegion();
|
||||
|
||||
return(STATUS_SUCCESS);
|
||||
}
|
||||
|
||||
@@ -621,6 +626,7 @@ CcRosCreateCacheSegment(PBCB Bcb,
|
||||
current->DirtySegmentListEntry.Blink = NULL;
|
||||
current->ReferenceCount = 1;
|
||||
ExInitializePushLock(¤t->Lock);
|
||||
KeEnterCriticalRegion();
|
||||
ExAcquirePushLockExclusive(¤t->Lock);
|
||||
KeAcquireGuardedMutex(&ViewLock);
|
||||
|
||||
@@ -655,7 +661,8 @@ CcRosCreateCacheSegment(PBCB Bcb,
|
||||
KeReleaseGuardedMutex(&ViewLock);
|
||||
ExFreeToNPagedLookasideList(&CacheSegLookasideList, *CacheSeg);
|
||||
*CacheSeg = current;
|
||||
ExAcquirePushLockExclusive(¤t->Lock);
|
||||
/* We're still in the critical region from above */
|
||||
ExAcquirePushLockExclusive(¤t->Lock);
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
if (current->FileOffset < FileOffset)
|
||||
@@ -1040,8 +1047,9 @@ CcFlushCache(IN PSECTION_OBJECT_POINTERS SectionObjectPointers,
|
||||
IoStatus->Status = Status;
|
||||
}
|
||||
}
|
||||
KeAcquireSpinLock(&Bcb->BcbLock, &oldIrql);
|
||||
ExReleasePushLock(¤t->Lock);
|
||||
KeLeaveCriticalRegion();
|
||||
KeAcquireSpinLock(&Bcb->BcbLock, &oldIrql);
|
||||
CcRosCacheSegmentDecRefCount(current);
|
||||
KeReleaseSpinLock(&Bcb->BcbLock, oldIrql);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user