mirror of
https://github.com/reactos/reactos.git
synced 2025-07-04 09:51:22 +00:00
- Queue the packet again if we currently don't have enough resources to process it
svn path=/branches/aicom-network-fixes/; revision=36336
This commit is contained in:
parent
5620a8ecff
commit
d8dfacc28d
1 changed files with 4 additions and 1 deletions
|
@ -818,7 +818,10 @@ VOID NTAPI MiniportWorker(IN PVOID WorkItem)
|
||||||
KeLowerIrql(RaiseOldIrql);
|
KeLowerIrql(RaiseOldIrql);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if( NdisStatus != NDIS_STATUS_PENDING ) {
|
|
||||||
|
if( NdisStatus == NDIS_STATUS_RESOURCES )
|
||||||
|
MiniQueueWorkItem(Adapter, WorkItemType, WorkItemContext);
|
||||||
|
else if( NdisStatus != NDIS_STATUS_PENDING ) {
|
||||||
NdisMSendComplete
|
NdisMSendComplete
|
||||||
( Adapter, (PNDIS_PACKET)WorkItemContext, NdisStatus );
|
( Adapter, (PNDIS_PACKET)WorkItemContext, NdisStatus );
|
||||||
Adapter->MiniportBusy = FALSE;
|
Adapter->MiniportBusy = FALSE;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue