linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Christian Lamparter <chunkeey@web.de>
To: Larry Finger <Larry.Finger@lwfinger.net>
Cc: "linux-wireless" <linux-wireless@vger.kernel.org>,
	Johannes Berg <johannes@sipsolutions.net>
Subject: Re: [WIP] p54: deal with allocation failures in rx path
Date: Sat, 4 Jul 2009 19:28:31 +0200	[thread overview]
Message-ID: <200907041928.32269.chunkeey@web.de> (raw)
In-Reply-To: <4A4F85EE.5090007@lwfinger.net>

On Saturday 04 July 2009 18:40:14 Larry Finger wrote:
> I have logged the usb transfers, but not yet analyzed them.
great!

> This time I got a new failure - I hit this warning at
>            net/mac80211/tx.c:1299
>                         retries++;
>                         if (WARN(retries > 10, "tx refused but queue
> active\n"))
>                                 goto drop;
>                         goto retry;
> 

> If I have analyzed this correctly, I hit this section of
> p54_tx_qos_accounting_alloc at drivers/net/wireless/p54/txrx.c:204.
> I'm running the splitup patches.
> 
>         if (unlikely(queue->len > queue->limit &&
> IS_QOS_QUEUE(p54_queue))) {
>                 spin_unlock_irqrestore(&priv->tx_stats_lock, flags);
>                 return -ENOSPC;
>         }
> 
> Any suggestions on debugging this would be appreciated.
---
diff --git a/drivers/net/wireless/p54/txrx.c b/drivers/net/wireless/p54/txrx.c
index ea074a6..69fc70a 100644
--- a/drivers/net/wireless/p54/txrx.c
+++ b/drivers/net/wireless/p54/txrx.c
@@ -25,6 +25,7 @@
 #include "p54.h"
 #include "lmac.h"
 
+#define P54_MM_DEBUG
 #ifdef P54_MM_DEBUG
 static void p54_dump_tx_queue(struct p54_common *priv)
 {
@@ -200,7 +201,18 @@ static int p54_tx_qos_accounting_alloc(struct p54_common *priv,
 
 	spin_lock_irqsave(&priv->tx_stats_lock, flags);
 	if (unlikely(queue->len > queue->limit && IS_QOS_QUEUE(p54_queue))) {
+		u16 ac_queue = p54_queue - P54_QUEUE_DATA;
+		int i;
+
+		printk(KERN_DEBUG "TX queue stats\n");
+		for (i = 0; i < 8; i++)
+			printk(KERN_DEBUG "\ttxq[%d]: used %d [of %d] => %s\n",
+			       i, priv->tx_stats[i].len,
+			       priv->tx_stats[i].limit,
+			       ieee80211_queue_stopped(priv->hw, ac_queue) ?
+			       "stopped" : "running");
 		spin_unlock_irqrestore(&priv->tx_stats_lock, flags);
+		p54_dump_tx_queue(priv);
 		return -ENOSPC;
 	}
 
---
let's hope the queue .len count does not turn negative!

regards,
	Chr

  reply	other threads:[~2009-07-04 17:28 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-07-03 22:53 [WIP] p54: deal with allocation failures in rx path Christian Lamparter
2009-07-04  1:09 ` Larry Finger
2009-07-04  2:16 ` Larry Finger
2009-07-04 10:11   ` Christian Lamparter
2009-07-04 16:40     ` Larry Finger
2009-07-04 17:28       ` Christian Lamparter [this message]
2009-07-04 19:56         ` Larry Finger
2009-07-04 21:14           ` Larry Finger
2009-07-05 13:59             ` Christian Lamparter
2009-07-05 17:49               ` Larry Finger
2009-07-05 22:05                 ` Christian Lamparter
2009-07-06  1:36                   ` Larry Finger
2009-07-06 13:16                     ` Christian Lamparter
2009-07-04  7:52 ` Johannes Berg
2009-07-05  0:56 ` Max Filippov
2009-07-05 14:00   ` Christian Lamparter
2009-07-05 19:16     ` Max Filippov
2009-07-05 22:46       ` Max Filippov
2009-07-06 13:11 ` Max Filippov
2009-07-06 14:00   ` Christian Lamparter
2009-07-06 14:18     ` Max Filippov

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=200907041928.32269.chunkeey@web.de \
    --to=chunkeey@web.de \
    --cc=Larry.Finger@lwfinger.net \
    --cc=johannes@sipsolutions.net \
    --cc=linux-wireless@vger.kernel.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 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).