Commit bc96f242 authored by Felix Fietkau's avatar Felix Fietkau Committed by Johannes Berg

mac80211/minstrel_ht: avoid useless sampling of high-probability slower rates

Slow rates that have >95% success probability do not need to be
monitored continuously. When the channel conditions change rapidly, the
slow sampling results are useless anyway. When conditions change slowly,
they will be monitored by gradual downgrading of the actively used
rates. This patch slightly improves throughput under good conditions.
Signed-off-by: default avatarFelix Fietkau <nbd@openwrt.org>
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 3e8b1eb2
...@@ -653,10 +653,10 @@ minstrel_get_sample_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi) ...@@ -653,10 +653,10 @@ minstrel_get_sample_rate(struct minstrel_priv *mp, struct minstrel_ht_sta *mi)
if (sample_idx == mi->max_tp_rate) if (sample_idx == mi->max_tp_rate)
return -1; return -1;
/* /*
* When not using MRR, do not sample if the probability is already * Do not sample if the probability is already higher than 95%
* higher than 95% to avoid wasting airtime * to avoid wasting airtime.
*/ */
if (!mp->has_mrr && (mr->probability > MINSTREL_FRAC(95, 100))) if (mr->probability > MINSTREL_FRAC(95, 100))
return -1; return -1;
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment