// rxcontx.h
VOID RxPrepareContextForReuse(
[in, out] IN OUT PRX_CONTEXT RxContext
);
View the official Windows Driver Kit DDI referenceNo description available.
RxPrepareContextForReuse prepares an RX_CONTEXT data structure for reuse by resetting all of the operation-specific allocations and acquisitions that have been made (the ReferenceCount member to the RX_CONTEXT structure is set to zero). Parameters that have been obtained from the IRP are not modified.
RxContext [in, out]A pointer to the RX_CONTEXT structure.
The RxPrepareContextForReuse routine checks that several operation-specific members in the RX_CONTEXT structure are NULL before setting the ReferenceCount member to zero. These operation-specific tests that must be met include the following:
If either of the above conditions are not met, RxPrepareContextForReuse causes the system to ASSERT on checked builds.
The RxPrepareContextForReuse routine would normally only be used by network mini-redirector drivers that reinitialize RX_CONTEXT structures directly.
RxDereferenceAndDeleteRxContext_Real
RxResumeBlockedOperations_Serially
__RxSynchronizeBlockingOperations
__RxSynchronizeBlockingOperationsMaybeDroppingFcbLock