All of lore.kernel.org
 help / color / mirror / Atom feed
From: Christian Lamparter <chunkeey@googlemail.com>
To: Felix Fietkau <nbd@openwrt.org>
Cc: linux-wireless <linux-wireless@vger.kernel.org>,
	"Derek Smithies" <derek@indranet.co.nz>,
	"Benoit PAPILLAULT" <benoit.papillault@free.fr>,
	"Luis R. Rodriguez" <lrodriguez@atheros.com>,
	"Björn Smedman" <bjorn.smedman@venatech.se>,
	"Bob Copeland" <me@bobcopeland.com>
Subject: Re: [RFC v2] minstrel_ht: new rate control module for 802.11n
Date: Sun, 7 Mar 2010 18:59:25 +0100	[thread overview]
Message-ID: <201003071859.25848.chunkeey@googlemail.com> (raw)
In-Reply-To: <4B93D6D3.80702@openwrt.org>

On Sunday 07 March 2010 17:39:47 Felix Fietkau wrote:
> here is an updated version of my minstrel_ht code. Since the last
> version, I've added the following improvements:
> 
> - Use accurate A-MPDU statistics from tx feedback
> - Rewrite the sampling algorithm to optimize for good A-MPDU lengths
>   and faster throughput recovery
> - Implement .rate_update to handle changes in HT capabilities or 
>   channel bandwidth
> - Remove the private tx flags hack
> 
> With the new version, performance has improved visibly for HT40 in all
> of my tests. I think it's getting closer to being ready for inclusion.
> ---
Just released carl9170 1.0.3.1 which now uses minstrel_ht.

I found a few things, not sure if they are bugs in the driver
or minstrel_ht code. (Patch attached, but added the comments
as a response to the code) 

> --- /dev/null
> +++ b/net/mac80211/rc80211_minstrel_ht.c
> @@ -0,0 +1,800 @@
> [...]
> +
> +static void
> +minstrel_ht_tx_status(void *priv, struct ieee80211_supported_band *sband,
> +                      struct ieee80211_sta *sta, void *priv_sta,
> +                      struct sk_buff *skb)
> +{
> [...]
> +
> +	for (i = 0; !last; i++) {
> +		last = (i == IEEE80211_TX_MAX_RATES - 1) ||
> +		       !minstrel_ht_txstat_valid(&ar[i + 1]);
> +
> +		if (!minstrel_ht_txstat_valid(&ar[i]))
> +			break;
> +
> +		group = minstrel_ht_get_group_idx(&ar[i]);
> +		rate = &mi->groups[group].rates[ar[i].idx % 8];
> +
> +		if (last && (info->flags & IEEE80211_TX_STAT_ACK))
> +			rate->success += info->status.ampdu_ack_len;
> +
> +		rate->attempts += ar[i].count * info->status.ampdu_len;
> +	}
> +
> +	/*
> +	 * check for sudden death of spatial multiplexing,
> +	 * downgrade to a lower number of streams if necessary.
> +	 */
> +	rate = minstrel_get_ratestats(mi, mi->max_tp_rate);
> +	if (MINSTREL_FRAC(rate->success, rate->attempts) <
> +	    MINSTREL_FRAC(20, 100) && rate->attempts > 30)
BUGGED right here. Due to rate->attempts being 0.
so, what about this instead and move the attemps > 30:

	if (rate->attempts > 30 &&
	    MINSTREL_FRAC(rate->success, rate->attempts) <
	    MINSTREL_FRAC(20, 100))

> +		minstrel_downgrade_rate(mi, &mi->max_tp_rate, true);
> +
> +	rate2 = minstrel_get_ratestats(mi, mi->max_tp_rate2);
> +	if (MINSTREL_FRAC(rate->success, rate->attempts) <
> +	    MINSTREL_FRAC(20, 100) && rate->attempts > 30)
(same as above, put "rate->attempts > 30" in front of MINSTREL_FRAC

> [...]
> +static void
> +minstrel_ht_get_rate(void *priv, struct ieee80211_sta *sta, void *priv_sta,
> +                     struct ieee80211_tx_rate_control *txrc)
> +{
> +	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(txrc->skb);
> +	struct ieee80211_tx_rate *ar = info->status.rates;
> +	struct minstrel_ht_sta_priv *msp = priv_sta;
> +	struct minstrel_ht_sta *mi = &msp->ht;
> +	struct minstrel_priv *mp = priv;
> +	int sample_idx;
> +
> +	if (rate_control_send_low(sta, priv_sta, txrc))
> +		return;
> +
> +	if (!msp->is_ht)
> +		return mac80211_minstrel.get_rate(priv, sta, &msp->legacy, txrc);
> +
> +	minstrel_aggr_check(mp, sta, txrc->skb);

on startup, carl9170 complains about non-aggregated
(CTL_AMPDU not set) MCS frames. I had to add an
alternative path for these _early_ frames. They are
now send with the "lowest" legacy rate and aren't
rejected by the driver/HW.

> +
> +	sample_idx = minstrel_get_sample_rate(mp, mi);
> +	if (sample_idx >= 0) {
> +		minstrel_ht_set_rate(mp, mi, &ar[0], sample_idx,
> +			txrc, true, false);
> +		minstrel_ht_set_rate(mp, mi, &ar[1], mi->max_tp_rate,
> +			txrc, false, true);
> +		info->flags |= IEEE80211_TX_CTL_RATE_CTRL_PROBE;
> +	} else {
> +		minstrel_ht_set_rate(mp, mi, &ar[0], mi->max_tp_rate,
> +			txrc, false, false);
> +		minstrel_ht_set_rate(mp, mi, &ar[1], mi->max_tp_rate2,
> +			txrc, false, true);
> +	}
> +	minstrel_ht_set_rate(mp, mi, &ar[2], mi->max_prob_rate, txrc, false, true);
> +
> +	ar[3].count = 0;
> +	ar[3].idx = -1;
> +
> +	mi->total_packets++;
> +
> +	/* wraparound */
> +	if (mi->total_packets == ~0) {
> +		mi->total_packets = 0;
> +		mi->sample_packets = 0;
> +	}
> +}
> +

> --- /dev/null
> +++ b/net/mac80211/rc80211_minstrel_ht_debugfs.c
> @@ -0,0 +1,120 @@
> [...]
> +static int
> +minstrel_ht_stats_open(struct inode *inode, struct file *file)
> +{
> [...]
> +
> +		for (j = 0; j < MCS_GROUP_RATES; j++) {
> +			struct minstrel_rate_stats *mr = &mi->groups[i].rates[j];
> +			int idx = i * MCS_GROUP_RATES + j;
> +
> +			if (!mi->groups[i].supported & BIT(j))
> +				continue;
> +
gcc complains about !a & b.

> +			p += sprintf(p, "HT%c0/%cGI ", htmode, gimode);
> +
[...]
---
From: Christian Lamparter <chunkeey@googlemail.com>
Subject: mac80211: carl9170 specific minstrel_ht fixes

diff --git a/net/mac80211/rc80211_minstrel_ht.c b/net/mac80211/rc80211_minstrel_ht.c
index 8b60bd8..ef98ccf 100644
--- a/net/mac80211/rc80211_minstrel_ht.c
+++ b/net/mac80211/rc80211_minstrel_ht.c
@@ -407,13 +407,15 @@ minstrel_ht_tx_status(void *priv, struct ieee80211_supported_band *sband,
 	 * downgrade to a lower number of streams if necessary.
 	 */
 	rate = minstrel_get_ratestats(mi, mi->max_tp_rate);
-	if (MINSTREL_FRAC(rate->success, rate->attempts) <
-	    MINSTREL_FRAC(20, 100) && rate->attempts > 30)
+	if (rate->attempts > 30 &&
+	    MINSTREL_FRAC(rate->success, rate->attempts) <
+	    MINSTREL_FRAC(20, 100))
 		minstrel_downgrade_rate(mi, &mi->max_tp_rate, true);
 
 	rate2 = minstrel_get_ratestats(mi, mi->max_tp_rate2);
-	if (MINSTREL_FRAC(rate->success, rate->attempts) <
-	    MINSTREL_FRAC(20, 100) && rate->attempts > 30)
+	if (rate->attempts > 30 &&
+	    MINSTREL_FRAC(rate->success, rate->attempts) <
+	    MINSTREL_FRAC(20, 100))
 		minstrel_downgrade_rate(mi, &mi->max_tp_rate2, false);
 
 	if (time_after(jiffies, mi->stats_update + (mp->update_interval / 2 * HZ) / 1000))
@@ -574,6 +576,12 @@ minstrel_ht_get_rate(void *priv, struct ieee80211_sta *sta, void *priv_sta,
 
 	minstrel_aggr_check(mp, sta, txrc->skb);
 
+	if (!(info->flags & IEEE80211_TX_CTL_AMPDU)) {
+		ar[0].count = mp->hw->max_rate_tries;
+		ar[0].idx = rate_lowest_index(txrc->sband, sta);
+		goto rate_out;
+	}
+
 	sample_idx = minstrel_get_sample_rate(mp, mi);
 	if (sample_idx >= 0) {
 		minstrel_ht_set_rate(mp, mi, &ar[0], sample_idx,
@@ -589,6 +597,7 @@ minstrel_ht_get_rate(void *priv, struct ieee80211_sta *sta, void *priv_sta,
 	}
 	minstrel_ht_set_rate(mp, mi, &ar[2], mi->max_prob_rate, txrc, false, true);
 
+rate_out:
 	ar[3].count = 0;
 	ar[3].idx = -1;
 
diff --git a/net/mac80211/rc80211_minstrel_ht_debugfs.c b/net/mac80211/rc80211_minstrel_ht_debugfs.c
index 4689aac..4fb3ccb 100644
--- a/net/mac80211/rc80211_minstrel_ht_debugfs.c
+++ b/net/mac80211/rc80211_minstrel_ht_debugfs.c
@@ -57,7 +57,7 @@ minstrel_ht_stats_open(struct inode *inode, struct file *file)
 			struct minstrel_rate_stats *mr = &mi->groups[i].rates[j];
 			int idx = i * MCS_GROUP_RATES + j;
 
-			if (!mi->groups[i].supported & BIT(j))
+			if (!(mi->groups[i].supported & BIT(j)))
 				continue;
 
 			p += sprintf(p, "HT%c0/%cGI ", htmode, gimode);
---

Regards,
	Chr

  reply	other threads:[~2010-03-07 17:59 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-03-07 16:39 [RFC v2] minstrel_ht: new rate control module for 802.11n Felix Fietkau
2010-03-07 17:59 ` Christian Lamparter [this message]
2010-03-07 18:31   ` Felix Fietkau
2010-03-08 14:31     ` Christian Lamparter

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201003071859.25848.chunkeey@googlemail.com \
    --to=chunkeey@googlemail.com \
    --cc=benoit.papillault@free.fr \
    --cc=bjorn.smedman@venatech.se \
    --cc=derek@indranet.co.nz \
    --cc=linux-wireless@vger.kernel.org \
    --cc=lrodriguez@atheros.com \
    --cc=me@bobcopeland.com \
    --cc=nbd@openwrt.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.