From: Modestas Vainius <[EMAIL PROTECTED]> This patch correctly initializes the force_unicast_rateidx and max_ratectrl_rateidx. This was not done previously and caused a bug in rf80211_simple where when rate_control_simple_get_rate() was called, the incorrect rate was selected from the list.
Signed-off-by: Modestas Vainius <[EMAIL PROTECTED]> Signed-off-by: Ivo van Doorn <[EMAIL PROTECTED]> Signed-off-by: Jiri Benc <[EMAIL PROTECTED]> --- net/d80211/ieee80211.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) 0fbc8104060588dab4db93f37e3cdfb86ffed062 diff --git a/net/d80211/ieee80211.c b/net/d80211/ieee80211.c index 50b2b29..32a1ba7 100644 --- a/net/d80211/ieee80211.c +++ b/net/d80211/ieee80211.c @@ -4414,6 +4414,8 @@ struct net_device *ieee80211_alloc_hw(si sdata->dev = mdev; sdata->master = mdev; sdata->local = local; + sdata->u.ap.force_unicast_rateidx = -1; + sdata->u.ap.max_ratectrl_rateidx = -1; ieee80211_if_sdata_init(sdata); list_add_tail(&sdata->list, &local->sub_if_list); -- 1.3.0 - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html