mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-20 02:43:38 +00:00
52 lines
1.6 KiB
Diff
52 lines
1.6 KiB
Diff
From 9a70441a25595254334ab45bd23690f78390402b Mon Sep 17 00:00:00 2001
|
|
From: Seevalamuthu Mariappan <seevalam@codeaurora.org>
|
|
Date: Wed, 7 Apr 2021 14:40:09 +0530
|
|
Subject: [PATCH] ath11k: send beacon template after vdev_start/restart during
|
|
csa
|
|
|
|
Firmware has added assert if beacon template is received after
|
|
vdev_down. Firmware expects beacon template after vdev_start
|
|
and before vdev_up. This change is needed to support MBSSID EMA
|
|
cases in firmware.
|
|
|
|
Hence, Change the sequence in ath11k as expected from firmware.
|
|
This new change is not causing any issues with older
|
|
firmware.
|
|
|
|
Signed-off-by: Seevalamuthu Mariappan <seevalam@codeaurora.org>
|
|
---
|
|
drivers/net/wireless/ath/ath11k/mac.c | 10 +++++-----
|
|
1 file changed, 5 insertions(+), 5 deletions(-)
|
|
|
|
diff --git a/drivers/net/wireless/ath/ath11k/mac.c b/drivers/net/wireless/ath/ath11k/mac.c
|
|
index 79d59a9..7b3ad57 100644
|
|
--- a/drivers/net/wireless/ath/ath11k/mac.c
|
|
+++ b/drivers/net/wireless/ath/ath11k/mac.c
|
|
@@ -7137,11 +7137,6 @@ ath11k_mac_update_vif_chan(struct ath11k *ar,
|
|
if (WARN_ON(!arvif->is_up))
|
|
continue;
|
|
|
|
- ret = ath11k_mac_setup_bcn_tmpl(arvif);
|
|
- if (ret)
|
|
- ath11k_warn(ab, "failed to update bcn tmpl during csa: %d\n",
|
|
- ret);
|
|
-
|
|
ret = ath11k_mac_vdev_restart(arvif, &vifs[i].new_ctx->def);
|
|
if (ret) {
|
|
ath11k_warn(ab, "failed to restart vdev %d: %d\n",
|
|
@@ -7149,6 +7144,11 @@ ath11k_mac_update_vif_chan(struct ath11k *ar,
|
|
continue;
|
|
}
|
|
|
|
+ ret = ath11k_mac_setup_bcn_tmpl(arvif);
|
|
+ if (ret)
|
|
+ ath11k_warn(ab, "failed to update bcn tmpl during csa: %d\n",
|
|
+ ret);
|
|
+
|
|
params.vdev_id = arvif->vdev_id,
|
|
params.bssid = arvif->bssid,
|
|
params.aid = arvif->aid,
|
|
--
|
|
2.7.4
|
|
|