diff options
author | Chun-Yeow Yeoh <yeohchunyeow@gmail.com> | 2015-06-09 13:35:33 +0800 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2015-06-09 22:04:25 +0200 |
commit | 8df734e865b74d9f273216482a45a38269dc767a (patch) | |
tree | 3666e36c18c3565b9474ce4f97e11e58176dd920 /net/mac80211/ibss.c | |
parent | afd2efb91990667cd4d9171a743f8a89e19d5ef1 (diff) | |
download | op-kernel-dev-8df734e865b74d9f273216482a45a38269dc767a.zip op-kernel-dev-8df734e865b74d9f273216482a45a38269dc767a.tar.gz |
mac80211: fix the beacon csa counter for mesh and ibss
The csa counter has moved from sdata to beacon/presp but
it is not updated accordingly for mesh and ibss. Fix this.
Fixes: af296bdb8da4 ("mac80211: move csa counters from sdata to beacon/presp")
Signed-off-by: Chun-Yeow Yeoh <yeohchunyeow@gmail.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/ibss.c')
-rw-r--r-- | net/mac80211/ibss.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mac80211/ibss.c b/net/mac80211/ibss.c index 21716af..7f72bc9 100644 --- a/net/mac80211/ibss.c +++ b/net/mac80211/ibss.c @@ -146,6 +146,7 @@ ieee80211_ibss_build_presp(struct ieee80211_sub_if_data *sdata, csa_settings->chandef.chan->center_freq); presp->csa_counter_offsets[0] = (pos - presp->head); *pos++ = csa_settings->count; + presp->csa_current_counter = csa_settings->count; } /* put the remaining rates in WLAN_EID_EXT_SUPP_RATES */ |