|
@@ -2236,7 +2236,7 @@ static void iwl4965_rx_reply_tx(struct iwl_priv *priv,
|
|
|
tx_resp->failure_frame);
|
|
|
|
|
|
freed = iwl_tx_queue_reclaim(priv, txq_id, index);
|
|
|
- if (qc)
|
|
|
+ if (qc && likely(sta_id != IWL_INVALID_STATION))
|
|
|
priv->stations[sta_id].tid[tid].tfds_in_queue -= freed;
|
|
|
|
|
|
if (priv->mac80211_registered &&
|
|
@@ -2244,7 +2244,7 @@ static void iwl4965_rx_reply_tx(struct iwl_priv *priv,
|
|
|
ieee80211_wake_queue(priv->hw, txq_id);
|
|
|
}
|
|
|
|
|
|
- if (qc)
|
|
|
+ if (qc && likely(sta_id != IWL_INVALID_STATION))
|
|
|
iwl_txq_check_empty(priv, sta_id, tid, txq_id);
|
|
|
|
|
|
if (iwl_check_bits(status, TX_ABORT_REQUIRED_MSK))
|