linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ath9k: fix oops on trying to hold the wrong spinlock
@ 2008-10-16 11:12 Luis R. Rodriguez
  2008-10-16 21:54 ` [stable] " Greg KH
  0 siblings, 1 reply; 5+ messages in thread
From: Luis R. Rodriguez @ 2008-10-16 11:12 UTC (permalink / raw)
  To: stable; +Cc: steven, linville, linux-wireless

This fixes on oops when you get try to send a BA to an 11n AP.
The oops occurred because we were trying to aquire an incorrect
spinlock.

We were trying to hold the wrong spinlock due to a typo
on IEEE80211_BAR_CTL_TID_S's definition. We use this to
compute the tid number and then hold this this tid number's
spinlock.

Tested-by: Steven Noonan <steven@uplinklabs.net>
Signed-off-by: Vasanthakumar Thiagarajan <vasanth@atheros.com>
Signed-off-by: Sujith <Sujith.Manoharan@atheros.com>
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
---

I don't see this queue'd yet for 2.6.27.2

 drivers/net/wireless/ath9k/core.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/wireless/ath9k/core.h b/drivers/net/wireless/ath9k/core.h
index 80814c9..5b4f1c4 100644
--- a/drivers/net/wireless/ath9k/core.h
+++ b/drivers/net/wireless/ath9k/core.h
@@ -309,7 +309,7 @@ void ath_descdma_cleanup(struct ath_softc *sc,
 #define ATH_RX_TIMEOUT           40      /* 40 milliseconds */
 #define WME_NUM_TID              16
 #define IEEE80211_BAR_CTL_TID_M  0xF000  /* tid mask */
-#define IEEE80211_BAR_CTL_TID_S  2       /* tid shift */
+#define IEEE80211_BAR_CTL_TID_S  12      /* tid shift */
 
 enum ATH_RX_TYPE {
 	ATH_RX_NON_CONSUMED = 0,
-- 
1.5.6.rc2.15.g457bb.dirty

--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [stable] [PATCH] ath9k: fix oops on trying to hold the wrong spinlock
  2008-10-16 11:12 [PATCH] ath9k: fix oops on trying to hold the wrong spinlock Luis R. Rodriguez
@ 2008-10-16 21:54 ` Greg KH
  2008-10-16 23:12   ` Luis R. Rodriguez
  0 siblings, 1 reply; 5+ messages in thread
From: Greg KH @ 2008-10-16 21:54 UTC (permalink / raw)
  To: Luis R. Rodriguez; +Cc: stable, steven, linux-wireless, linville

On Thu, Oct 16, 2008 at 04:12:55AM -0700, Luis R. Rodriguez wrote:
> This fixes on oops when you get try to send a BA to an 11n AP.
> The oops occurred because we were trying to aquire an incorrect
> spinlock.
> 
> We were trying to hold the wrong spinlock due to a typo
> on IEEE80211_BAR_CTL_TID_S's definition. We use this to
> compute the tid number and then hold this this tid number's
> spinlock.
> 
> Tested-by: Steven Noonan <steven@uplinklabs.net>
> Signed-off-by: Vasanthakumar Thiagarajan <vasanth@atheros.com>
> Signed-off-by: Sujith <Sujith.Manoharan@atheros.com>
> Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
> Signed-off-by: John W. Linville <linville@tuxdriver.com>
> ---
> 
> I don't see this queue'd yet for 2.6.27.2

Is it in Linus's tree?  If so, do you have a git commit id?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [stable] [PATCH] ath9k: fix oops on trying to hold the wrong spinlock
  2008-10-16 21:54 ` [stable] " Greg KH
@ 2008-10-16 23:12   ` Luis R. Rodriguez
  2008-10-16 23:28     ` Greg KH
  0 siblings, 1 reply; 5+ messages in thread
From: Luis R. Rodriguez @ 2008-10-16 23:12 UTC (permalink / raw)
  To: Greg KH; +Cc: stable, steven, linux-wireless, linville

On Thu, Oct 16, 2008 at 2:54 PM, Greg KH <greg@kroah.com> wrote:
> On Thu, Oct 16, 2008 at 04:12:55AM -0700, Luis R. Rodriguez wrote:
>> This fixes on oops when you get try to send a BA to an 11n AP.
>> The oops occurred because we were trying to aquire an incorrect
>> spinlock.
>>
>> We were trying to hold the wrong spinlock due to a typo
>> on IEEE80211_BAR_CTL_TID_S's definition. We use this to
>> compute the tid number and then hold this this tid number's
>> spinlock.
>>
>> Tested-by: Steven Noonan <steven@uplinklabs.net>
>> Signed-off-by: Vasanthakumar Thiagarajan <vasanth@atheros.com>
>> Signed-off-by: Sujith <Sujith.Manoharan@atheros.com>
>> Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
>> Signed-off-by: John W. Linville <linville@tuxdriver.com>
>> ---
>>
>> I don't see this queue'd yet for 2.6.27.2
>
> Is it in Linus's tree?  If so, do you have a git commit id?

Got it.

a477e4e6d48d3ac7c7a75bad40585cb391e5c237

If you can add the Reported-by tag it'd be great, I missed it on Linus' tree.

Thanks,

  Luis

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [stable] [PATCH] ath9k: fix oops on trying to hold the wrong spinlock
  2008-10-16 23:12   ` Luis R. Rodriguez
@ 2008-10-16 23:28     ` Greg KH
  2008-10-16 23:41       ` Luis R. Rodriguez
  0 siblings, 1 reply; 5+ messages in thread
From: Greg KH @ 2008-10-16 23:28 UTC (permalink / raw)
  To: Luis R. Rodriguez; +Cc: steven, linux-wireless, stable, linville

On Thu, Oct 16, 2008 at 04:12:02PM -0700, Luis R. Rodriguez wrote:
> On Thu, Oct 16, 2008 at 2:54 PM, Greg KH <greg@kroah.com> wrote:
> > On Thu, Oct 16, 2008 at 04:12:55AM -0700, Luis R. Rodriguez wrote:
> >> This fixes on oops when you get try to send a BA to an 11n AP.
> >> The oops occurred because we were trying to aquire an incorrect
> >> spinlock.
> >>
> >> We were trying to hold the wrong spinlock due to a typo
> >> on IEEE80211_BAR_CTL_TID_S's definition. We use this to
> >> compute the tid number and then hold this this tid number's
> >> spinlock.
> >>
> >> Tested-by: Steven Noonan <steven@uplinklabs.net>
> >> Signed-off-by: Vasanthakumar Thiagarajan <vasanth@atheros.com>
> >> Signed-off-by: Sujith <Sujith.Manoharan@atheros.com>
> >> Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
> >> Signed-off-by: John W. Linville <linville@tuxdriver.com>
> >> ---
> >>
> >> I don't see this queue'd yet for 2.6.27.2
> >
> > Is it in Linus's tree?  If so, do you have a git commit id?
> 
> Got it.
> 
> a477e4e6d48d3ac7c7a75bad40585cb391e5c237
> 
> If you can add the Reported-by tag it'd be great, I missed it on Linus' tree.

You mean the "tested-by" flag?  I've added that, I don't see a
reported-by flag above.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [stable] [PATCH] ath9k: fix oops on trying to hold the wrong spinlock
  2008-10-16 23:28     ` Greg KH
@ 2008-10-16 23:41       ` Luis R. Rodriguez
  0 siblings, 0 replies; 5+ messages in thread
From: Luis R. Rodriguez @ 2008-10-16 23:41 UTC (permalink / raw)
  To: Greg KH; +Cc: steven, linux-wireless, stable, linville

On Thu, Oct 16, 2008 at 4:28 PM, Greg KH <greg@kroah.com> wrote:
> On Thu, Oct 16, 2008 at 04:12:02PM -0700, Luis R. Rodriguez wrote:
>> On Thu, Oct 16, 2008 at 2:54 PM, Greg KH <greg@kroah.com> wrote:
>> > On Thu, Oct 16, 2008 at 04:12:55AM -0700, Luis R. Rodriguez wrote:
>> >> This fixes on oops when you get try to send a BA to an 11n AP.
>> >> The oops occurred because we were trying to aquire an incorrect
>> >> spinlock.
>> >>
>> >> We were trying to hold the wrong spinlock due to a typo
>> >> on IEEE80211_BAR_CTL_TID_S's definition. We use this to
>> >> compute the tid number and then hold this this tid number's
>> >> spinlock.
>> >>
>> >> Tested-by: Steven Noonan <steven@uplinklabs.net>
>> >> Signed-off-by: Vasanthakumar Thiagarajan <vasanth@atheros.com>
>> >> Signed-off-by: Sujith <Sujith.Manoharan@atheros.com>
>> >> Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
>> >> Signed-off-by: John W. Linville <linville@tuxdriver.com>
>> >> ---
>> >>
>> >> I don't see this queue'd yet for 2.6.27.2
>> >
>> > Is it in Linus's tree?  If so, do you have a git commit id?
>>
>> Got it.
>>
>> a477e4e6d48d3ac7c7a75bad40585cb391e5c237
>>
>> If you can add the Reported-by tag it'd be great, I missed it on Linus' tree.
>
> You mean the "tested-by" flag?  I've added that, I don't see a
> reported-by flag above.

Yeap, tested.

  Luis

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2008-10-16 23:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-16 11:12 [PATCH] ath9k: fix oops on trying to hold the wrong spinlock Luis R. Rodriguez
2008-10-16 21:54 ` [stable] " Greg KH
2008-10-16 23:12   ` Luis R. Rodriguez
2008-10-16 23:28     ` Greg KH
2008-10-16 23:41       ` Luis R. Rodriguez

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).