MINIPORT_SYNCHRONOUS_OID_REQUEST function (ndis.h)
NDIS calls a miniport driver's MiniportSynchronousOidRequest callback function to issue a Synchronous OID request.
Syntax
NDIS_STATUS MINIPORT_SYNCHRONOUS_OID_REQUEST(
[in] NDIS_HANDLE MiniportAdapterContext,
[in] NDIS_OID_REQUEST *OidRequest
);
Parameters
[in] MiniportAdapterContext
A handle to a context area that the miniport driver allocated in its MiniportInitializeEx function. The miniport driver uses this context area to maintain state information for a miniport adapter.
[in] OidRequest
A pointer to an NDIS_OID_REQUEST structure that contains both the buffer and the request packet for the miniport driver to handle. Depending on the request, the driver returns requested information in the structure that is provided.
Return value
MiniportSynchronousOidRequest can return one of the following status values:
Return code | Description |
---|---|
|
The miniport driver set or obtained the data as requested. |
|
The request that OidRequest specified was invalid or not recognized. |
|
The request that OidRequest specified was recognized, but the miniport driver does not support it. |
|
The buffer that OidRequest supplies was too small to hold the requested data. |
|
The value that was specified in the InformationBufferLength member of the NDIS_OID_REQUEST structure at OidRequest is incorrect for the specified OID_Xxx code. |
|
One or more of the parameters that were specified for the request at OidRequest were invalid. |
|
The miniport driver will provide an OID completion status with a subsequent status indication. A miniport driver cannot return NDIS_STATUS_INDICATION_REQUIRED unless the particular OID allows it. To determine if this status is allowed, see the OID reference page. For more information about NDIS_STATUS_INDICATION_REQUIRED, see NDIS_OID_REQUEST and NDIS_STATUS_INDICATION. |
|
After calling the
MiniportDevicePnPEventNotify function to indicate a surprise removal, NDIS called the driver's
MiniportHaltEx function. If the
driver received any OID requests before NDIS calls
MiniportHaltEx, it should immediately complete such requests with a status value of
NDIS_STATUS_NOT_ACCEPTED.
Miniport drivers are not always required to return NDIS_STATUS_NOT_ACCEPTED for all OIDs after a surprise removal, but doing so helps explain why the call failed. |
Remarks
MiniportSynchronousOidRequest is an optional function. A miniport driver registers this function if it handles Synchronous OID requests. The driver specifies the MiniportSynchronousOidRequest entry point when it calls the NdisMRegisterMiniportDriver function, using the SynchronousOidRequestHandler member of the NDIS_MINIPORT_DRIVER_CHARACTERISTICS structure.
Miniport drivers must not return NDIS_STATUS_PENDING or NDIS_STATUS_REQUEST_ABORTED from MiniportSynchronousOidRequest. Synchronous OID requests cannot be pended or cancelled.
Miniport drivers may return NDIS_STATUS_NOT_ACCEPTED after NDIS calls MiniportDevicePnPEventNotify to notify the driver of the device’s surprise removal. However, miniport drivers may still complete the OID request with a different status code, if it is possible to do so. For more info, see each OID’s specific documentation.
Miniport drivers are expected to complete Synchronous OID requests quickly without blocking, waiting, or sleeping. Synchronous OID requests are only used for low-latency operations, and miniport drivers should strive to complete them within several milliseconds. Most OID requests are delivered to MiniportOidRequest, which is permitted to pend or wait for longer durations.
NDIS does not serialize Synchronous OID requests against each other, against other OID requests, against MiniportPause, against MiniportResetEx, or against power transitions. It is the responsibility of the miniport driver to implement its own synchronization and to fail requests that are delivered at a time when the request cannot be handled successfully.
NDIS does serialize Synchronous OID requests against MiniportHaltEx; NDIS guarantees that no Synchronous OID requests will be active once MiniportHaltEx is invoked.
Miniport drivers that implement NDIS Selective Suspend are incompatible with Synchronous OIDs and must not register a MiniportSynchronousOidRequest handler.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 10, version 1709 |
Target Platform | Windows |
Header | ndis.h (include Ndis.h) |
IRQL | <= DISPATCH_LEVEL |