Re: [PATCH v2 2/2] mac80211: improve minstrel_ht rate sorting by throughput & probability

2014-11-16 Thread Jouni Malinen
On Tue, Sep 09, 2014 at 11:22:14PM +0200, Thomas Huehn wrote: > This patch improves the way minstrel_ht sorts rates according to throughput > and success probability. 3 FOR-loops across the entire rate and mcs group set > in function minstrel_ht_update_stats() which where used to determine the > fa

Re: [PATCH v2 2/2] mac80211: improve minstrel_ht rate sorting by throughput & probability

2014-10-07 Thread Karl Beldan
Hi, On Tue, Sep 09, 2014 at 11:22:14PM +0200, Thomas Huehn wrote: > @@ -260,13 +399,14 @@ minstrel_ht_update_stats(struct minstrel_priv *mp, > struct minstrel_ht_sta *mi) > mi->sample_slow = 0; > mi->sample_count = 0; > > - for (group = 0; group < ARRAY_SIZE(minstrel_mcs_groups)

Re: [PATCH v2 2/2] mac80211: improve minstrel_ht rate sorting by throughput & probability

2014-09-28 Thread Karl Beldan
On Tue, Sep 09, 2014 at 11:22:14PM +0200, Thomas Huehn wrote: > This patch improves the way minstrel_ht sorts rates according to throughput > and success probability. 3 FOR-loops across the entire rate and mcs group set > in function minstrel_ht_update_stats() which where used to determine the > fa

Re: [PATCH v2 2/2] mac80211: improve minstrel_ht rate sorting by throughput & probability

2014-09-11 Thread Johannes Berg
On Tue, 2014-09-09 at 23:22 +0200, Thomas Huehn wrote: > This patch improves the way minstrel_ht sorts rates according to throughput > and success probability. 3 FOR-loops across the entire rate and mcs group set > in function minstrel_ht_update_stats() which where used to determine the > fastest,

[PATCH v2 2/2] mac80211: improve minstrel_ht rate sorting by throughput & probability

2014-09-09 Thread Thomas Huehn
This patch improves the way minstrel_ht sorts rates according to throughput and success probability. 3 FOR-loops across the entire rate and mcs group set in function minstrel_ht_update_stats() which where used to determine the fastest, second fastest and most robust rate are reduced to 2 FOR-loop.