Hi,
My NDIS miniport driver is always crashing under heavy load when
SendComplete is being called. What does SendComplete do?
NDIS called SendPackets()
Within SendPackets, I call transmit which tries to post packets to the
hardware. If I cant, I call SendComplete wth STATUS_PENDING and throw
the pkt onto a queue, otherwise I call SendComplete with
STATUS_SUCCESS.
What am I missing here?
Please help!