Commit 75700ee1 authored by Miri Korenblit's avatar Miri Korenblit Committed by Johannes Berg

wifi: iwlwifi: mvm: fix crash on queue removal for MLD API too

The patch linked below fixes the crash on queue removal bug only
for the non-MLD API. Do the same for the MLD API.

Fixes: c5a976cf ("wifi: iwlwifi: modify new queue allocation command")
Signed-off-by: default avatarMiri Korenblit <miriam.rachel.korenblit@intel.com>
Signed-off-by: default avatarGregory Greenman <gregory.greenman@intel.com>
Link: https://lore.kernel.org/r/20230328104948.527dace26147.Ia215df5833634f95688a979f39fae70c1ac4e027@changeidSigned-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent cea05a86
...@@ -258,27 +258,19 @@ int iwl_mvm_mld_add_aux_sta(struct iwl_mvm *mvm, u32 lmac_id) ...@@ -258,27 +258,19 @@ int iwl_mvm_mld_add_aux_sta(struct iwl_mvm *mvm, u32 lmac_id)
IWL_MAX_TID_COUNT, NULL); IWL_MAX_TID_COUNT, NULL);
} }
static int iwl_mvm_mld_disable_txq(struct iwl_mvm *mvm, static int iwl_mvm_mld_disable_txq(struct iwl_mvm *mvm, int sta_id,
struct ieee80211_sta *sta,
u16 *queueptr, u8 tid) u16 *queueptr, u8 tid)
{ {
struct iwl_mvm_sta *mvmsta;
int queue = *queueptr; int queue = *queueptr;
int ret = 0; int ret = 0;
if (!sta)
return -EINVAL;
mvmsta = iwl_mvm_sta_from_mac80211(sta);
if (mvm->sta_remove_requires_queue_remove) { if (mvm->sta_remove_requires_queue_remove) {
u32 cmd_id = WIDE_ID(DATA_PATH_GROUP, u32 cmd_id = WIDE_ID(DATA_PATH_GROUP,
SCD_QUEUE_CONFIG_CMD); SCD_QUEUE_CONFIG_CMD);
struct iwl_scd_queue_cfg_cmd remove_cmd = { struct iwl_scd_queue_cfg_cmd remove_cmd = {
.operation = cpu_to_le32(IWL_SCD_QUEUE_REMOVE), .operation = cpu_to_le32(IWL_SCD_QUEUE_REMOVE),
.u.remove.tid = cpu_to_le32(tid), .u.remove.tid = cpu_to_le32(tid),
.u.remove.sta_mask = .u.remove.sta_mask = cpu_to_le32(BIT(sta_id)),
cpu_to_le32(BIT(mvmsta->deflink.sta_id)),
}; };
ret = iwl_mvm_send_cmd_pdu(mvm, cmd_id, 0, ret = iwl_mvm_send_cmd_pdu(mvm, cmd_id, 0,
...@@ -308,7 +300,7 @@ static int iwl_mvm_mld_rm_int_sta(struct iwl_mvm *mvm, ...@@ -308,7 +300,7 @@ static int iwl_mvm_mld_rm_int_sta(struct iwl_mvm *mvm,
if (flush) if (flush)
iwl_mvm_flush_sta(mvm, int_sta, true); iwl_mvm_flush_sta(mvm, int_sta, true);
iwl_mvm_mld_disable_txq(mvm, NULL, queuptr, tid); iwl_mvm_mld_disable_txq(mvm, int_sta->sta_id, queuptr, tid);
ret = iwl_mvm_mld_rm_sta_from_fw(mvm, int_sta->sta_id); ret = iwl_mvm_mld_rm_sta_from_fw(mvm, int_sta->sta_id);
if (ret) if (ret)
...@@ -536,8 +528,8 @@ static void iwl_mvm_mld_disable_sta_queues(struct iwl_mvm *mvm, ...@@ -536,8 +528,8 @@ static void iwl_mvm_mld_disable_sta_queues(struct iwl_mvm *mvm,
if (mvm_sta->tid_data[i].txq_id == IWL_MVM_INVALID_QUEUE) if (mvm_sta->tid_data[i].txq_id == IWL_MVM_INVALID_QUEUE)
continue; continue;
iwl_mvm_mld_disable_txq(mvm, sta, &mvm_sta->tid_data[i].txq_id, iwl_mvm_mld_disable_txq(mvm, mvm_sta->deflink.sta_id,
i); &mvm_sta->tid_data[i].txq_id, i);
mvm_sta->tid_data[i].txq_id = IWL_MVM_INVALID_QUEUE; mvm_sta->tid_data[i].txq_id = IWL_MVM_INVALID_QUEUE;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment