diff options
author | Pradeep Kumar Chitrapu <pradeepc@codeaurora.org> | 2018-03-22 22:18:03 +0300 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2018-03-23 15:23:17 +0300 |
commit | dcbe73ca55a42712bfd0e9966cd2d5a48355ace3 (patch) | |
tree | 686c400ce8dccb53f3c2c2c9172d58f0b4cde5cd /net/mac80211/mesh.c | |
parent | 13cf6dec93e021ebd297619ea1926aea31b6430b (diff) | |
download | linux-dcbe73ca55a42712bfd0e9966cd2d5a48355ace3.tar.xz |
mac80211: notify driver for change in multicast rates
With drivers implementing rate control in driver or firmware
rate_control_send_low() may not get called, and thus the
driver needs to know about changes in the multicast rate.
Add and use a new BSS change flag for this.
Signed-off-by: Pradeep Kumar Chitrapu <pradeepc@codeaurora.org>
[rewrite commit message]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/mesh.c')
-rw-r--r-- | net/mac80211/mesh.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/mac80211/mesh.c b/net/mac80211/mesh.c index 6a381cbe1e33..d51da26e9c18 100644 --- a/net/mac80211/mesh.c +++ b/net/mac80211/mesh.c @@ -880,7 +880,8 @@ int ieee80211_start_mesh(struct ieee80211_sub_if_data *sdata) BSS_CHANGED_BEACON_ENABLED | BSS_CHANGED_HT | BSS_CHANGED_BASIC_RATES | - BSS_CHANGED_BEACON_INT; + BSS_CHANGED_BEACON_INT | + BSS_CHANGED_MCAST_RATE; local->fif_other_bss++; /* mesh ifaces must set allmulti to forward mcast traffic */ |