AP MLD: Skip association link processing in ML info
All links were iterated over during processing ML info in Association Request frame. However, the association link info will not be present in the ML info and hence the following debug print is observed during ML association (assoc link is 1): MLD: No link match for link_id=1 Skip processing for the association link to avoid this. Signed-off-by: Aditya Kumar Singh <quic_adisi@quicinc.com>
This commit is contained in:
parent
4a1197acde
commit
19fdcf511b
1 changed files with 1 additions and 1 deletions
|
@ -4575,7 +4575,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) {
|
||||
|
|
Loading…
Reference in a new issue