mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[SCSIPORT] Addendum to 58ad5d9e02
This commit is contained in:
parent
58ad5d9e02
commit
b089903520
1 changed files with 12 additions and 3 deletions
|
@ -400,6 +400,9 @@ SpiGetNextRequestFromLun(
|
|||
else
|
||||
{
|
||||
/* Release the spinlock, without clearing any flags and exit */
|
||||
if (OldIrql != NULL)
|
||||
KeReleaseSpinLock(&DeviceExtension->SpinLock, *OldIrql);
|
||||
else
|
||||
KeReleaseSpinLockFromDpcLevel(&DeviceExtension->SpinLock);
|
||||
|
||||
return;
|
||||
|
@ -429,6 +432,9 @@ SpiGetNextRequestFromLun(
|
|||
LunExtension->SortKey++;
|
||||
|
||||
/* Release the spinlock */
|
||||
if (OldIrql != NULL)
|
||||
KeReleaseSpinLock(&DeviceExtension->SpinLock, *OldIrql);
|
||||
else
|
||||
KeReleaseSpinLockFromDpcLevel(&DeviceExtension->SpinLock);
|
||||
|
||||
/* Start the next pending request */
|
||||
|
@ -437,6 +443,9 @@ SpiGetNextRequestFromLun(
|
|||
else
|
||||
{
|
||||
/* Release the spinlock */
|
||||
if (OldIrql != NULL)
|
||||
KeReleaseSpinLock(&DeviceExtension->SpinLock, *OldIrql);
|
||||
else
|
||||
KeReleaseSpinLockFromDpcLevel(&DeviceExtension->SpinLock);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue