RxCompleteRequest - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// rxprocs.h

NTSTATUS RxCompleteRequest(
  PRX_CONTEXT pContext,
  NTSTATUS    Status
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-rxprocs-rxcompleterequest)

RxCompleteRequest function

Description

RxCompleteRequest completes the IRP request associated with an RX_CONTEXT structure.

Parameters

pContext

A pointer to the RX_CONTEXT. This parameter contains the IRP requesting the operation to complete.

Status

The 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.

Return value

RxCompleteRequest returns the value of the Status parameter.

Remarks

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.

See also

RxCompleteRequest_Real

RxCreateRxContext

RxDereference

RxDereferenceAndDeleteRxContext_Real

RxInitializeContext

RxPrepareContextForReuse

RxResumeBlockedOperations_Serially

__RxSynchronizeBlockingOperations

__RxSynchronizeBlockingOperationsMaybeDroppingFcbLock