What does NTSTATUS 0xC0232004 (STATUS_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL) mean?

 
Previous Next
STATUS_NDIS_PM_WOL_PATTERN_LIST_FULL STATUS_NDIS_DOT11_AP_CHANNEL_CURRENTLY_NOT_AVAILABLE

STATUS_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL

The adapter has exhausted low-power protocol offload slots

STATUS_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL belongs to NDIS power management, not TCP Chimney. NDIS 6.20 and later protocol drivers can use OID_PM_ADD_PROTOCOL_OFFLOAD to let an adapter answer selected protocol traffic while it is in a low-power state. Each offload consumes adapter or firmware capacity.

Common examples include ARP or Neighbor Solicitation response offloads. If the list is full, inspect all components that add offloads before sleep. Repeating the same request will not help unless a stale offload is removed or the requested low-power behavior is simplified.

Evidence that narrows it

  • Record the offload type, identifier, and owning protocol for every installed offload.
  • Compare requested offloads with NDIS_PM_PROTOCOL_OFFLOAD capability limits.
  • Check whether sleep/resume cleanup leaks protocol offload entries.

References


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