Message ID | 1485893272-6893-3-git-send-email-rmanohar@qca.qualcomm.com (mailing list archive) |
---|---|
State | Changes Requested |
Delegated to: | Johannes Berg |
Headers | show |
diff --git a/net/mac80211/mesh_pathtbl.c b/net/mac80211/mesh_pathtbl.c index f0e6175a9821..bab443e5284d 100644 --- a/net/mac80211/mesh_pathtbl.c +++ b/net/mac80211/mesh_pathtbl.c @@ -537,6 +537,7 @@ void mesh_plink_broken(struct sta_info *sta) WLAN_REASON_MESH_PATH_DEST_UNREACHABLE, bcast); } } + sta->mesh->fail_avg = 0; out: rhashtable_walk_stop(&iter); rhashtable_walk_exit(&iter);
Mesh moving average should be cleared, whenever mesh paths to the given station are deactivated due to bad link. It makes path deactivation logic more robust by considering more tx status before terminating mesh link. Signed-off-by: Rajkumar Manoharan <rmanohar@qca.qualcomm.com> --- v2: * removed paths_deactivated check * updated commit log net/mac80211/mesh_pathtbl.c | 1 + 1 file changed, 1 insertion(+)