diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2008-09-10 21:04:36 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-09-15 16:48:24 -0400 |
commit | ae17e986091637e7ef5a8224c7b689029b105131 (patch) | |
tree | 184fb207b36348f4ac989831b3425d9d67221e02 /net/mac80211/wext.c | |
parent | 323ce79a9cdbf838ea577677b1ddace8e0b4d4c6 (diff) |
mac80211: move txrate_idx into RC algorithms
The sta_info->txrate_idx member isn't used by all RC algorithms
in the way it was intended to be used, move it into those that
require it (only PID) and keep track in the core code of which
rate was last used for reporting to userspace and the mesh MLME.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/wext.c')
-rw-r--r-- | net/mac80211/wext.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/wext.c b/net/mac80211/wext.c index aef9707700fd..7e0d53abde24 100644 --- a/net/mac80211/wext.c +++ b/net/mac80211/wext.c | |||
@@ -636,8 +636,8 @@ static int ieee80211_ioctl_giwrate(struct net_device *dev, | |||
636 | 636 | ||
637 | sta = sta_info_get(local, sdata->u.sta.bssid); | 637 | sta = sta_info_get(local, sdata->u.sta.bssid); |
638 | 638 | ||
639 | if (sta && sta->txrate_idx < sband->n_bitrates) | 639 | if (sta && sta->last_txrate_idx < sband->n_bitrates) |
640 | rate->value = sband->bitrates[sta->txrate_idx].bitrate; | 640 | rate->value = sband->bitrates[sta->last_txrate_idx].bitrate; |
641 | else | 641 | else |
642 | rate->value = 0; | 642 | rate->value = 0; |
643 | 643 | ||