mesh: Do not clear link state on driver event if exchange was started
If the local driver event for a new peer candidate arrived only after the peer had already initiated the peering exchange, we used to clear the link state. This resulted in the already completed (or in progress) exchange getting abandoned and a new exchange initiated. This is not desirable since the already started (or even completed) exchange can be used. Clear the link state only when adding the new STA entry for the first time, i.e., use the same !sta->my_lid condition in handling the driver event similarly to how the peer initiated cases were already handled. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
b5f5c32412
commit
cc64fe7b9e
1 changed files with 2 additions and 1 deletions
|
@ -576,7 +576,8 @@ static struct sta_info * mesh_mpm_add_peer(struct wpa_supplicant *wpa_s,
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
mesh_mpm_init_link(wpa_s, sta);
|
if (!sta->my_lid)
|
||||||
|
mesh_mpm_init_link(wpa_s, sta);
|
||||||
|
|
||||||
#ifdef CONFIG_IEEE80211N
|
#ifdef CONFIG_IEEE80211N
|
||||||
copy_sta_ht_capab(data, sta, elems->ht_capabilities);
|
copy_sta_ht_capab(data, sta, elems->ht_capabilities);
|
||||||
|
|
Loading…
Reference in a new issue