What does NTSTATUS 0xC023000D (STATUS_NDIS_RESET_IN_PROGRESS) mean?

 
Previous Next
STATUS_NDIS_REQUEST_ABORTED STATUS_NDIS_INVALID_PACKET

STATUS_NDIS_RESET_IN_PROGRESS

The request arrived during a reset window

STATUS_NDIS_RESET_IN_PROGRESS is a temporal state. NDIS resets a miniport to recover hardware or driver operation, and a request can be rejected while that work is in progress even though the adapter later resumes normal service.

The miniport adapter state machine and reset work are related but not identical: NDIS can process pause or other lifecycle operations while reset handling is active. Treat the status as evidence to trace ordering, not as a final diagnosis of the hardware.

Evidence that narrows it

  • Capture reset start and completion records, affected OIDs or sends, and the adapter state at each timestamp.
  • Avoid issuing duplicate state-changing requests until the reset outcome is known.
  • Investigate the cause of repeated reset cycles separately from the request that first observed this status.

References


Looking for a different code? Search another status or error code.