diff options
author | Johannes Berg <johannes.berg@intel.com> | 2016-03-31 20:02:05 +0300 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2016-04-06 13:18:15 +0200 |
commit | 0be6ed133835b1a5e492f86099ce372b5a2e2296 (patch) | |
tree | 22100670875711abc06de00bb6cb05eeca4a2526 /net/mac80211/mesh_plink.c | |
parent | 8ebaa5b0a791631dddbb3a215b342fabb2a5307b (diff) | |
download | talos-obmc-linux-0be6ed133835b1a5e492f86099ce372b5a2e2296.tar.gz talos-obmc-linux-0be6ed133835b1a5e492f86099ce372b5a2e2296.zip |
mac80211: move averaged values out of rx_stats
Move the averaged values out of rx_stats and into rx_stats_avg,
to cleanly split them out. The averaged ones cannot be supported
for parallel RX in a per-CPU fashion, while the other values can
be collected per CPU and then combined/selected when needed.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/mesh_plink.c')
-rw-r--r-- | net/mac80211/mesh_plink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/mesh_plink.c b/net/mac80211/mesh_plink.c index ecfba8ad29e4..563bea050383 100644 --- a/net/mac80211/mesh_plink.c +++ b/net/mac80211/mesh_plink.c @@ -61,7 +61,7 @@ static bool rssi_threshold_check(struct ieee80211_sub_if_data *sdata, s32 rssi_threshold = sdata->u.mesh.mshcfg.rssi_threshold; return rssi_threshold == 0 || (sta && - (s8)-ewma_signal_read(&sta->rx_stats.avg_signal) > + (s8)-ewma_signal_read(&sta->rx_stats_avg.signal) > rssi_threshold); } |