|
@@ -609,6 +609,13 @@ minstrel_ht_get_rate(void *priv, struct ieee80211_sta *sta, void *priv_sta,
|
|
|
|
|
|
info->flags |= mi->tx_flags;
|
|
|
sample_idx = minstrel_get_sample_rate(mp, mi);
|
|
|
+
|
|
|
+#ifdef CONFIG_MAC80211_DEBUGFS
|
|
|
+ /* use fixed index if set */
|
|
|
+ if (mp->fixed_rate_idx != -1)
|
|
|
+ sample_idx = mp->fixed_rate_idx;
|
|
|
+#endif
|
|
|
+
|
|
|
if (sample_idx >= 0) {
|
|
|
sample = true;
|
|
|
minstrel_ht_set_rate(mp, mi, &ar[0], sample_idx,
|