Skip to content

Commit 1f16ea2

Browse files
jmberg-intelegrumbach
authored andcommitted
iwlwifi: mvm: remove WARN_ON for invalid BA notification
The firmware frequently manages to trigger this, and there's no known driver workaround, so stop warning. Signed-off-by: Johannes Berg <[email protected]> Signed-off-by: Emmanuel Grumbach <[email protected]>
1 parent 132fee0 commit 1f16ea2

File tree

1 file changed

+4
-2
lines changed
  • drivers/net/wireless/iwlwifi/mvm

1 file changed

+4
-2
lines changed

drivers/net/wireless/iwlwifi/mvm/tx.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -949,8 +949,10 @@ int iwl_mvm_rx_ba_notif(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb,
949949
mvmsta = iwl_mvm_sta_from_mac80211(sta);
950950
tid_data = &mvmsta->tid_data[tid];
951951

952-
if (WARN_ONCE(tid_data->txq_id != scd_flow, "Q %d, tid %d, flow %d",
953-
tid_data->txq_id, tid, scd_flow)) {
952+
if (tid_data->txq_id != scd_flow) {
953+
IWL_ERR(mvm,
954+
"invalid BA notification: Q %d, tid %d, flow %d\n",
955+
tid_data->txq_id, tid, scd_flow);
954956
rcu_read_unlock();
955957
return 0;
956958
}

0 commit comments

Comments
 (0)