// rxprocs.h
NTSTATUS RxCompleteRequest(
PRX_CONTEXT pContext,
NTSTATUS Status
);
View the official Windows Driver Kit DDI referenceNo description available.
RxCompleteRequest completes the IRP request associated with an RX_CONTEXT structure.
pContextA pointer to the RX_CONTEXT. This parameter contains the IRP requesting the operation to complete.
StatusThe status value to return when the IRP request is complete. This is the value that will be stored in the IoStatus.Status member of the associated IRP on completion.
RxCompleteRequest returns the value of the Status parameter.
The RxCompleteRequest routine is not normally called by network mini-redirector drivers directly. RDBSS calls this routine internally to complete an I/O request packet.
RxCompleteRequest internally calls RxCompleteRequest_Real to complete the request. Before calling RxCompleteRequest_Real, the RxCompleteRequest routine checks the value of the LoudCompletionString member in the RX_CONTEXT structure pointed to by the RxContext parameter and prints extra debugging information if Status is not equal to STATUS_SUCCESS.
RxDereferenceAndDeleteRxContext_Real
RxResumeBlockedOperations_Serially
__RxSynchronizeBlockingOperations
__RxSynchronizeBlockingOperationsMaybeDroppingFcbLock