[PATCH] ath11k: dont enable bss color collision detection on non-transmitting BSS
John Crispin
john at phrozen.org
Sat Aug 22 10:40:48 EDT 2020
A none transmitting BSS color collision detection should not be enabled.
This patch depends on the BSS coloring and multiple bssid series.
Signed-off-by: John Crispin <john at phrozen.org>
---
drivers/net/wireless/ath/ath11k/mac.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/net/wireless/ath/ath11k/mac.c b/drivers/net/wireless/ath/ath11k/mac.c
index 06cd61c5c681..c50e653df535 100644
--- a/drivers/net/wireless/ath/ath11k/mac.c
+++ b/drivers/net/wireless/ath/ath11k/mac.c
@@ -2119,7 +2119,8 @@ static void ath11k_mac_op_bss_info_changed(struct ieee80211_hw *hw,
ret = ath11k_wmi_send_obss_color_collision_cfg_cmd(
ar, arvif->vdev_id, info->he_bss_color.color,
ATH11K_BSS_COLOR_COLLISION_DETECTION_AP_PERIOD_MS,
- info->he_bss_color.enabled);
+ !arvif->vif->multiple_bssid.non_transmitted ?
+ info->he_bss_color.enabled : 0);
if (ret)
ath11k_warn(ar->ab, "failed to set bss color collision on vdev %i: %d\n",
arvif->vdev_id, ret);
--
2.25.1
More information about the ath11k
mailing list