]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
mac80211: Suppress NEW_PEER_CANDIDATE event if no room
authorMasashi Honma <masashi.honma@gmail.com>
Wed, 30 Nov 2016 00:06:04 +0000 (09:06 +0900)
committerJohannes Berg <johannes.berg@intel.com>
Tue, 13 Dec 2016 15:05:11 +0000 (16:05 +0100)
Previously, kernel sends NEW_PEER_CANDIDATE event to user land even if
the found peer does not have any room to accept other peer. This causes
continuous connection trials.

Signed-off-by: Masashi Honma <masashi.honma@gmail.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/mac80211/mesh_plink.c

index 7fcdcf622655286b01eb965acea7d631faf43c24..fcba70e57073f372793d69d247e78ea11f8c2597 100644 (file)
@@ -505,12 +505,14 @@ mesh_sta_info_alloc(struct ieee80211_sub_if_data *sdata, u8 *addr,
 
        /* Userspace handles station allocation */
        if (sdata->u.mesh.user_mpm ||
-           sdata->u.mesh.security & IEEE80211_MESH_SEC_AUTHED)
-               cfg80211_notify_new_peer_candidate(sdata->dev, addr,
-                                                  elems->ie_start,
-                                                  elems->total_len,
-                                                  GFP_KERNEL);
-       else
+           sdata->u.mesh.security & IEEE80211_MESH_SEC_AUTHED) {
+               if (mesh_peer_accepts_plinks(elems) &&
+                   mesh_plink_availables(sdata))
+                       cfg80211_notify_new_peer_candidate(sdata->dev, addr,
+                                                          elems->ie_start,
+                                                          elems->total_len,
+                                                          GFP_KERNEL);
+       } else
                sta = __mesh_sta_info_alloc(sdata, addr);
 
        return sta;