From: Kalle Valo <kvalo@qca.qualcomm.com>
To: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Cc: <linux-wireless@vger.kernel.org>, <ath6kl-devel@qualcomm.com>
Subject: Re: [PATCH V2 2/2] ath6kl: Fix unstable downlink throughput
Date: Tue, 29 May 2012 14:15:40 +0300 [thread overview]
Message-ID: <4FC4AFDC.7030907@qca.qualcomm.com> (raw)
In-Reply-To: <1337941158-14895-2-git-send-email-vthiagar@qca.qualcomm.com>
On 05/25/2012 01:19 PM, Vasanthakumar Thiagarajan wrote:
> There is frequent downlink throughput drop to 0 when operating
> at the signal level between -42dBm to -53dBm. This has been root
> caused to the delay in releasing pending a-mpdu subframes in
> reorder buffer. Right now the timeout value is 400ms, there
> is also a race condition where timeout handler can be delayed
> to run at an extra timeout interval. This patch reduces the
> timout interval to reasonable 100ms and makes sure releasing
> pending frames are not skipped in the timeout handler by removing
> the flag (rxtid->progress) which can delay the timeout logic.
>
> Reported-by: Yu Yanzhi <yanzhiy@qca.qualcomm.com>
> Signed-off-by: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
[..]
> + for (idx = 0 ; idx < rxtid->hold_q_sz; idx++) {
> + spin_lock_bh(&rxtid->lock);
> + if (rxtid->hold_q[idx].skb) {
> + /*
> + * There is a frame in the queue and no
> + * timer so start a timer to ensure that
> + * the frame doesn't remain stuck
> + * forever.
> + */
> + agg_conn->timer_scheduled = true;
> + mod_timer(&agg_conn->timer,
> + (jiffies + HZ * (AGGR_RX_TIMEOUT) / 1000));
> + rxtid->timer_mon = true;
> spin_unlock_bh(&rxtid->lock);
> + break;
> }
> + spin_unlock_bh(&rxtid->lock);
> + }
Same question about the loop here as well.
Kalle
next prev parent reply other threads:[~2012-05-29 11:15 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-25 10:19 [PATCH V2 1/2] ath6kl: Fix race in aggregation reorder logic Vasanthakumar Thiagarajan
2012-05-25 10:19 ` [PATCH V2 2/2] ath6kl: Fix unstable downlink throughput Vasanthakumar Thiagarajan
2012-05-29 11:15 ` Kalle Valo [this message]
2012-05-29 11:13 ` [PATCH V2 1/2] ath6kl: Fix race in aggregation reorder logic Kalle Valo
2012-05-29 11:21 ` Vasanthakumar Thiagarajan
2012-05-29 11:31 ` Kalle Valo
2012-05-30 6:59 ` Vasanthakumar Thiagarajan
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=4FC4AFDC.7030907@qca.qualcomm.com \
--to=kvalo@qca.qualcomm.com \
--cc=ath6kl-devel@qualcomm.com \
--cc=linux-wireless@vger.kernel.org \
--cc=vthiagar@qca.qualcomm.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).