blob: 331153f184072b4ec28ff7ad4fb6b89cce269aaf [file] [log] [blame]
developer66e89bc2024-04-23 14:50:01 +08001From eb0640a1313c7f6a3fd579d2e0ad4209808440db Mon Sep 17 00:00:00 2001
2From: Rex Lu <rex.lu@mediatek.com>
3Date: Thu, 18 Apr 2024 14:19:21 +0800
4Subject: [PATCH 005/116] mtk: wifi: mt76: mt7996: fix MBSS
5
6Refactor 11v mbss unicmd flow
7case1(disable->enable) : when we enable 11v MBSS, we have to add 11v mbss tlv(UNI_BSS_INFO_11V_MBSSID)
8case2(enable->disable) : when we diable 11v MBSS, we should clear 11v mbss tlv (UNI_BSS_INFO_11V_MBSSID-> all value to zero) first,
9otherwise it will cause PSE opration ERR and trigger L1SER. After clear 11v mbss tlv,we have to reset UNI_BSS_INFO_BASIC(from 11v MBSS mode to legacy mode)
10
11Signed-off-by: Rex Lu <rex.lu@mediatek.com>
12---
13 mt7996/mcu.c | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/mt7996/mcu.c b/mt7996/mcu.c
17index e426d0737..f23801901 100644
18--- a/mt7996/mcu.c
19+++ b/mt7996/mcu.c
20@@ -822,7 +822,7 @@ mt7996_mcu_bss_mbssid_tlv(struct sk_buff *skb, struct ieee80211_vif *vif,
21 struct bss_info_uni_mbssid *mbssid;
22 struct tlv *tlv;
23
24- if (!vif->bss_conf.bssid_indicator)
25+ if (!vif->bss_conf.bssid_indicator && enable)
26 return;
27
28 tlv = mt7996_mcu_add_uni_tlv(skb, UNI_BSS_INFO_11V_MBSSID, sizeof(*mbssid));
29--
302.39.2
31