[rdkb][common][bsp][Refactor and sync wifi from openwrt]
[Description]
ac60b1ff [MAC80211][misc][Add Filogic 880/860/830/820/630 Release Information]
7eb946a0 [MAC80211][WiFi7][hostapd][sync hostapd patches]
91638fc9 [MAC80211][WiFi7][mac80211][sync backports code]
8e45746b [MAC80211][WiFi7][mt76][sync mt76 patches]
1c564afa [MAC80211][WiFi7][mt76][Add Eagle BE19000 ifem default bin]
[Release-log]
Change-Id: I1d4218d3b1211700acb5937fe310cbd0bf219968
diff --git a/recipes-wifi/hostapd/files/patches-2.10.3/0015-hostapd-MLO-skip-assoc-link-processing-in-ML-info.patch b/recipes-wifi/hostapd/files/patches-2.10.3/0015-hostapd-MLO-skip-assoc-link-processing-in-ML-info.patch
new file mode 100644
index 0000000..3dd5690
--- /dev/null
+++ b/recipes-wifi/hostapd/files/patches-2.10.3/0015-hostapd-MLO-skip-assoc-link-processing-in-ML-info.patch
@@ -0,0 +1,36 @@
+From 6eeca68d65795783243d3634627b4ac8f79e3d15 Mon Sep 17 00:00:00 2001
+From: Aditya Kumar Singh <quic_adisi@quicinc.com>
+Date: Thu, 28 Mar 2024 23:46:45 +0530
+Subject: [PATCH 015/104] hostapd: MLO: skip assoc link processing in ML info
+
+Currently during processing ML info in association request, all links are
+iterated over. However, the assoc link info will not be present in the
+ML info hence following print is observed during ML association (assoc link
+is 1) -
+
+MLD: No link match for link_id=1
+
+Add changes to skip processing for the assoc link. No functionality
+changes.
+
+Signed-off-by: Aditya Kumar Singh <quic_adisi@quicinc.com>
+---
+ src/ap/ieee802_11.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/ap/ieee802_11.c b/src/ap/ieee802_11.c
+index 9f7e9afdd..39c63f29b 100644
+--- a/src/ap/ieee802_11.c
++++ b/src/ap/ieee802_11.c
+@@ -4586,7 +4586,7 @@ int hostapd_process_assoc_ml_info(struct hostapd_data *hapd,
+ struct mld_link_info *link = &sta->mld_info.links[i];
+ bool link_bss_found = false;
+
+- if (!link->valid)
++ if (!link->valid || i == sta->mld_assoc_link_id)
+ continue;
+
+ for_each_mld_link(bss, hapd) {
+--
+2.39.2
+