All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ben Greear <greearb@candelatech.com>
To: ath9k-devel@lists.ath9k.org
Subject: [ath9k-devel] Script to crash ath9k with DMA errors.
Date: Mon, 06 Dec 2010 12:28:35 -0800	[thread overview]
Message-ID: <4CFD4773.6020304@candelatech.com> (raw)
In-Reply-To: <20101206195348.GF21442@tux>

On 12/06/2010 11:53 AM, Luis R. Rodriguez wrote:
> On Mon, Dec 06, 2010 at 11:53:13AM -0800, Luis Rodriguez wrote:
>> On Mon, Dec 06, 2010 at 11:47:47AM -0800, Ben Greear wrote:
>>> On 12/06/2010 11:36 AM, Luis R. Rodriguez wrote:
>>>
>>>> Can you clarify the status of this issue. It remains unclear to me from
>>>> your above description how things are going. As I read it some things
>>>> look OK now but you still get a warning.
>>>
>>> Ok, since you asked :)
>>>
>>> I worked on this over the weekend and this morning.  I had all sorts of
>>> issues until I realized that I had one STA with non-configured SSID.
>>> It sometimes connected to one /a AP and the other STAs attempted to connect
>>> to another /n (on entirely different band) AP.  I basically got zero stations associated for any length
>>> of time due to constant channel switching.  No crashes, but lots of
>>> warnings about DMA failing to stop.
>>>
>>> Now..I've fixed this configuration issue (and adding steps to help prevent this mis-configuration
>>> again).
>>>
>>> With 16 properly configured non-encrypted stations, running with wpa-supplicant
>>> with netlink driver&  sharing scan results,  the interfaces quickly associate.
>>>
>>> However, I do continue to see DMA warnings such as these (I had picked up my
>>> portable phone, and it knocked all the interfaces offline ..here
>>> they are coming back up after I hung up the phone).
>>>
>>> Please note that I ported Felix's 2.6.37 patch he posted this morning
>>> to wireless-testing and have applied it.
>>>
>>> I'm highly tempted to just make that a WARN_ON_ONCE so at least my logs
>>> aren't spammed so heavily with the recv.c:531 DMA warning.
>>
>> You can send this change upstream as well.
>
> Also, feel free to limit the number of STAs you can have up
> physically by setting this to a number you bless yourself.

I have a feeling there is no hard limit..but if I do find one,
I'll cook up a patch.  Probably not many of us ever going to push
anywhere near what I'm trying, and folks like me can limit in
user-space if wanted...

I'll do up the warn-on-once patch shortly.

By the way, would you consider this channel-change suppression
patch, or something similar?


-------------------- drivers/net/wireless/ath/ath9k/main.c --------------------
index f026a03..6c1c43b 100644
@@ -1605,6 +1605,16 @@ static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
  		else
  			sc->sc_flags &= ~SC_OP_OFFCHANNEL;

+		/* If channels & HT are the same, then don't actually do anything.
+		 */
+		if ((sc->sc_ah->curchan == &sc->sc_ah->channels[pos]) &&
+		    (aphy->chan_is_ht == conf_is_ht(conf))) {
+			ath_print(common, ATH_DBG_CONFIG,
+				  "Skip Set channel: %d MHz, already there.\n",
+				  curchan->center_freq);
+			goto skip_chan_change;
+		}
+
  		if (aphy->state == ATH_WIPHY_SCAN ||
  		    aphy->state == ATH_WIPHY_ACTIVE)
  			ath9k_wiphy_pause_all_forced(sc, aphy);

Thanks,
Ben


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com

WARNING: multiple messages have this Message-ID (diff)
From: Ben Greear <greearb@candelatech.com>
To: "Luis R. Rodriguez" <lrodriguez@Atheros.com>
Cc: Luis Rodriguez <Luis.Rodriguez@Atheros.com>,
	Felix Fietkau <nbd@openwrt.org>,
	"ath9k-devel@lists.ath9k.org" <ath9k-devel@venema.h4ckr.net>,
	"linux-wireless@vger.kernel.org" <linux-wireless@vger.kernel.org>
Subject: Re: [ath9k-devel] Script to crash ath9k with DMA errors.
Date: Mon, 06 Dec 2010 12:28:35 -0800	[thread overview]
Message-ID: <4CFD4773.6020304@candelatech.com> (raw)
In-Reply-To: <20101206195348.GF21442@tux>

On 12/06/2010 11:53 AM, Luis R. Rodriguez wrote:
> On Mon, Dec 06, 2010 at 11:53:13AM -0800, Luis Rodriguez wrote:
>> On Mon, Dec 06, 2010 at 11:47:47AM -0800, Ben Greear wrote:
>>> On 12/06/2010 11:36 AM, Luis R. Rodriguez wrote:
>>>
>>>> Can you clarify the status of this issue. It remains unclear to me from
>>>> your above description how things are going. As I read it some things
>>>> look OK now but you still get a warning.
>>>
>>> Ok, since you asked :)
>>>
>>> I worked on this over the weekend and this morning.  I had all sorts of
>>> issues until I realized that I had one STA with non-configured SSID.
>>> It sometimes connected to one /a AP and the other STAs attempted to connect
>>> to another /n (on entirely different band) AP.  I basically got zero stations associated for any length
>>> of time due to constant channel switching.  No crashes, but lots of
>>> warnings about DMA failing to stop.
>>>
>>> Now..I've fixed this configuration issue (and adding steps to help prevent this mis-configuration
>>> again).
>>>
>>> With 16 properly configured non-encrypted stations, running with wpa-supplicant
>>> with netlink driver&  sharing scan results,  the interfaces quickly associate.
>>>
>>> However, I do continue to see DMA warnings such as these (I had picked up my
>>> portable phone, and it knocked all the interfaces offline ..here
>>> they are coming back up after I hung up the phone).
>>>
>>> Please note that I ported Felix's 2.6.37 patch he posted this morning
>>> to wireless-testing and have applied it.
>>>
>>> I'm highly tempted to just make that a WARN_ON_ONCE so at least my logs
>>> aren't spammed so heavily with the recv.c:531 DMA warning.
>>
>> You can send this change upstream as well.
>
> Also, feel free to limit the number of STAs you can have up
> physically by setting this to a number you bless yourself.

I have a feeling there is no hard limit..but if I do find one,
I'll cook up a patch.  Probably not many of us ever going to push
anywhere near what I'm trying, and folks like me can limit in
user-space if wanted...

I'll do up the warn-on-once patch shortly.

By the way, would you consider this channel-change suppression
patch, or something similar?


-------------------- drivers/net/wireless/ath/ath9k/main.c --------------------
index f026a03..6c1c43b 100644
@@ -1605,6 +1605,16 @@ static int ath9k_config(struct ieee80211_hw *hw, u32 changed)
  		else
  			sc->sc_flags &= ~SC_OP_OFFCHANNEL;

+		/* If channels & HT are the same, then don't actually do anything.
+		 */
+		if ((sc->sc_ah->curchan == &sc->sc_ah->channels[pos]) &&
+		    (aphy->chan_is_ht == conf_is_ht(conf))) {
+			ath_print(common, ATH_DBG_CONFIG,
+				  "Skip Set channel: %d MHz, already there.\n",
+				  curchan->center_freq);
+			goto skip_chan_change;
+		}
+
  		if (aphy->state == ATH_WIPHY_SCAN ||
  		    aphy->state == ATH_WIPHY_ACTIVE)
  			ath9k_wiphy_pause_all_forced(sc, aphy);

Thanks,
Ben


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com

  reply	other threads:[~2010-12-06 20:28 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-11-30  0:28 [ath9k-devel] Script to crash ath9k with DMA errors Ben Greear
2010-11-30  0:28 ` Ben Greear
2010-11-30  0:44 ` [ath9k-devel] " Luis R. Rodriguez
2010-11-30  0:44   ` Luis R. Rodriguez
2010-11-30  0:52   ` Ben Greear
2010-11-30  0:52     ` Ben Greear
2010-12-01 23:22   ` Ben Greear
2010-12-01 23:22     ` Ben Greear
2010-12-03  8:14     ` Ben Greear
2010-12-03  8:14       ` Ben Greear
2010-12-05  2:41       ` Felix Fietkau
2010-12-05  2:41         ` Felix Fietkau
2010-12-05  3:30         ` Ben Greear
2010-12-05  3:30           ` Ben Greear
2010-12-05  5:18         ` Ben Greear
2010-12-05  5:18           ` Ben Greear
2010-12-06 19:36           ` Luis R. Rodriguez
2010-12-06 19:36             ` Luis R. Rodriguez
2010-12-06 19:47             ` Ben Greear
2010-12-06 19:47               ` Ben Greear
2010-12-06 19:53               ` Luis R. Rodriguez
2010-12-06 19:53                 ` Luis R. Rodriguez
2010-12-06 19:53                 ` Luis R. Rodriguez
2010-12-06 19:53                   ` Luis R. Rodriguez
2010-12-06 20:28                   ` Ben Greear [this message]
2010-12-06 20:28                     ` Ben Greear
2010-12-06 20:38                     ` Felix Fietkau
2010-12-06 20:38                       ` Felix Fietkau
2010-12-06 20:11               ` Björn Smedman
2010-12-06 20:11                 ` Björn Smedman
2010-12-06 20:22                 ` Ben Greear
2010-12-06 20:22                   ` Ben Greear
2010-12-06 20:42                   ` Luis R. Rodriguez
2010-12-06 20:42                     ` Luis R. Rodriguez
2010-12-06 21:00                     ` Ben Greear
2010-12-06 21:00                       ` Ben Greear
2010-12-06 21:16                       ` Luis R. Rodriguez
2010-12-06 21:16                         ` Luis R. Rodriguez

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=4CFD4773.6020304@candelatech.com \
    --to=greearb@candelatech.com \
    --cc=ath9k-devel@lists.ath9k.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.