What does NTSTATUS 0xC023002A (STATUS_NDIS_PAUSED) mean?

 
Previous Next
STATUS_NDIS_INVALID_ADDRESS STATUS_NDIS_INTERFACE_NOT_FOUND

STATUS_NDIS_PAUSED

The offload path is not running while the adapter or offload state is paused

STATUS_NDIS_PAUSED is most useful when the failing operation is an offload operation. NDIS miniports and filters have lifecycle states, and a pause operation temporarily stops normal data path activity so the stack can reconfigure, power down, detach filters, or stop the device.

The right diagnosis is timing. A retry after the adapter restarts may be valid, but repeated failures mean the caller is issuing offload work outside the allowed lifecycle window. Capture whether the pause was caused by PnP, power management, filter reconfiguration, or driver restart.

Evidence that narrows it

  • Record the miniport and filter state at the time the offload request is submitted.
  • Check for overlapping pause, restart, low-power transition, or stack stop operations.
  • Do not confuse this with STATUS_NDIS_LOW_POWER_STATE; paused and powered-down states have different recovery paths.

References


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