Re: HT rate set in net80211 not changeable for STA

2010-02-23 Thread Alexander Egorenkov
The problem is not on the AP side, the client sends with MCS32 because it's the last MCS in ni_htrates array of AP and the connection is good. AMRR increases the Tx rate to AP till MCS32 and then the client sends with MCS32. I changed AMRR a bit so it would skip MCS32 and it works fine now. I had t

Re: HT rate set in net80211 not changeable for STA

2010-02-23 Thread Rui Paulo
On 21 Feb 2010, at 10:35, Alexander Egorenkov wrote: > This MCS32 HT rate causes problems with AMRR. If the connection between a > client and an AP is very good and the AP supports MCS32, the client keeps > increasing the Tx rate upto MCS32 and then the problems begin because the > client starts t

Re: HT rate set in net80211 not changeable for STA

2010-02-21 Thread Alexander Egorenkov
This MCS32 HT rate causes problems with AMRR. If the connection between a client and an AP is very good and the AP supports MCS32, the client keeps increasing the Tx rate upto MCS32 and then the problems begin because the client starts to send with MCS32. Alex. On Sun, Feb 7, 2010 at 10:01 PM, Sa

Re: HT rate set in net80211 not changeable for STA

2010-02-07 Thread Sam Leffler
Alexander Egorenkov wrote: On Sat, Feb 6, 2010 at 10:52 PM, Sam Leffler > wrote: The advertised rate set should be initially set according to the capabilities of the device. There were no devices > 2x2 when I wrote the code so MCS15 is the max. To support

Re: HT rate set in net80211 not changeable for STA

2010-02-07 Thread Rui Paulo
On 7 Feb 2010, at 08:41, Alexander Egorenkov wrote: > But my device is a 2T2R device and supports MCS32 (HT duplicate mode). I wouldn't worry about MCS 32 for now. If you can get your device to do MCS 15, you're probably in a good shape already. MCS 32 would just come as a bonus and I'm not su

Re: HT rate set in net80211 not changeable for STA

2010-02-07 Thread Alexander Egorenkov
On Sat, Feb 6, 2010 at 10:52 PM, Sam Leffler wrote: > The advertised rate set should be initially set according to the > capabilities of the device. There were no devices > 2x2 when I wrote the > code so MCS15 is the max. To support such devices you need to do more than > just grow the rateset.

Re: HT rate set in net80211 not changeable for STA

2010-02-06 Thread Sam Leffler
Alexander Egorenkov wrote: And is any API in planning that would make it possible to change the advertised HT rate set by STA during run time and not at compile time ? E.g. ieee80211_set_ht_rateset :-) On Sat, Feb 6, 2010 at 3:44 PM, Rui Paulo wrote: On 6 Feb 2010, at 08:28, Alexander Egorenk

Re: HT rate set in net80211 not changeable for STA

2010-02-06 Thread Alexander Egorenkov
And is any API in planning that would make it possible to change the advertised HT rate set by STA during run time and not at compile time ? E.g. ieee80211_set_ht_rateset :-) On Sat, Feb 6, 2010 at 3:44 PM, Rui Paulo wrote: > On 6 Feb 2010, at 08:28, Alexander Egorenkov wrote: > > > Hi, > > > >

Re: HT rate set in net80211 not changeable for STA

2010-02-06 Thread Rui Paulo
On 6 Feb 2010, at 08:28, Alexander Egorenkov wrote: > Hi, > > the HT rate set advertized by a STA is hardcoded in net80211 > and the maximum MCS is 15, but my device also supports MCS32 (HT duplicate > mode). > Is there a possibility to change the HT rates set advertized by a STA > except changi

HT rate set in net80211 not changeable for STA

2010-02-06 Thread Alexander Egorenkov
Hi, the HT rate set advertized by a STA is hardcoded in net80211 and the maximum MCS is 15, but my device also supports MCS32 (HT duplicate mode). Is there a possibility to change the HT rates set advertized by a STA except changing the code and recompiling net80211 stack ? Thanks. Alex. __