Re: [ath5k-devel] [PATCH] ath5k : ath5k_config_interface deadlock fix

2008-08-04 Thread Dave Young
On Mon, Aug 4, 2008 at 4:06 PM, Jiri Slaby <[EMAIL PROTECTED]> wrote: > Dave Young napsal(a): >> >> On Fri, Aug 1, 2008 at 9:43 PM, Bob Copeland <[EMAIL PROTECTED]> wrote: >>> >>> On Fri, Aug 1, 2008 at 4:14 AM, Andrew Morton <[EMAIL PROTECTED]> >>> wrote: On Fri, 01 Aug 2008 11:03:37 +03

Re: [ath5k-devel] [PATCH] ath5k : ath5k_config_interface deadlock fix

2008-08-04 Thread Jiri Slaby
Dave Young napsal(a): > On Fri, Aug 1, 2008 at 9:43 PM, Bob Copeland <[EMAIL PROTECTED]> wrote: >> On Fri, Aug 1, 2008 at 4:14 AM, Andrew Morton <[EMAIL PROTECTED]> wrote: >>> On Fri, 01 Aug 2008 11:03:37 +0300 Pekka Enberg <[EMAIL PROTECTED]> wrote: >>> Jiri Slaby wrote: > Dave Young naps

Re: [ath5k-devel] [PATCH] ath5k : ath5k_config_interface deadlock fix

2008-08-03 Thread Dave Young
On Fri, Aug 1, 2008 at 9:43 PM, Bob Copeland <[EMAIL PROTECTED]> wrote: > On Fri, Aug 1, 2008 at 4:14 AM, Andrew Morton <[EMAIL PROTECTED]> wrote: >> On Fri, 01 Aug 2008 11:03:37 +0300 Pekka Enberg <[EMAIL PROTECTED]> wrote: >> >>> Jiri Slaby wrote: >>> > Dave Young napsal(a): >>> >> In the drivers

Re: [ath5k-devel] [PATCH] ath5k : ath5k_config_interface deadlock fix

2008-08-01 Thread Alan Jenkins
Bob Copeland wrote: > On Fri, Aug 1, 2008 at 11:02 AM, Jiri Slaby <[EMAIL PROTECTED]> wrote: > >>> Not to worry, the commit that introduced it was >>> 9d139c810a2aa17365cc548d0cd2a189d8433c65, which as far as I can tell >>> came in after 2.6.26. >>> >> git-describe 9d139c810a2aa17365cc548

Re: [ath5k-devel] [PATCH] ath5k : ath5k_config_interface deadlock fix

2008-08-01 Thread Bob Copeland
On Fri, Aug 1, 2008 at 11:02 AM, Jiri Slaby <[EMAIL PROTECTED]> wrote: >> >> Not to worry, the commit that introduced it was >> 9d139c810a2aa17365cc548d0cd2a189d8433c65, which as far as I can tell >> came in after 2.6.26. > > git-describe 9d139c810a2aa17365cc548d0cd2a189d8433c65 > v2.6.26-rc8-1219-

Re: [ath5k-devel] [PATCH] ath5k : ath5k_config_interface deadlock fix

2008-08-01 Thread Jiri Slaby
Jiri Slaby napsal(a): > Bob Copeland napsal(a): >> On Fri, Aug 1, 2008 at 4:14 AM, Andrew Morton >> <[EMAIL PROTECTED]> wrote: >>> On Fri, 01 Aug 2008 11:03:37 +0300 Pekka Enberg >>> <[EMAIL PROTECTED]> wrote: >>> Jiri Slaby wrote: > Dave Young napsal(a): >> In the drivers/net/wirele

Re: [ath5k-devel] [PATCH] ath5k : ath5k_config_interface deadlock fix

2008-08-01 Thread Alan Jenkins
Jiri Slaby wrote: > Bob Copeland napsal(a): > >> On Fri, Aug 1, 2008 at 4:14 AM, Andrew Morton <[EMAIL PROTECTED]> wrote: >> >>> On Fri, 01 Aug 2008 11:03:37 +0300 Pekka Enberg <[EMAIL PROTECTED]> wrote: >>> >>> Jiri Slaby wrote: > Dave Young napsal(a): >

Re: [ath5k-devel] [PATCH] ath5k : ath5k_config_interface deadlock fix

2008-08-01 Thread Jiri Slaby
Bob Copeland napsal(a): > On Fri, Aug 1, 2008 at 4:14 AM, Andrew Morton <[EMAIL PROTECTED]> wrote: >> On Fri, 01 Aug 2008 11:03:37 +0300 Pekka Enberg <[EMAIL PROTECTED]> wrote: >> >>> Jiri Slaby wrote: Dave Young napsal(a): > In the drivers/net/wireless/ath5k/base.c, there's recursive lock

Re: [ath5k-devel] [PATCH] ath5k : ath5k_config_interface deadlock fix

2008-08-01 Thread Bob Copeland
On Fri, Aug 1, 2008 at 4:14 AM, Andrew Morton <[EMAIL PROTECTED]> wrote: > On Fri, 01 Aug 2008 11:03:37 +0300 Pekka Enberg <[EMAIL PROTECTED]> wrote: > >> Jiri Slaby wrote: >> > Dave Young napsal(a): >> >> In the drivers/net/wireless/ath5k/base.c, there's recursive locking of >> >> sc->lock >> > >>

Re: [ath5k-devel] [PATCH] ath5k : ath5k_config_interface deadlock fix

2008-08-01 Thread Andrew Morton
On Fri, 01 Aug 2008 11:03:37 +0300 Pekka Enberg <[EMAIL PROTECTED]> wrote: > Jiri Slaby wrote: > > Dave Young napsal(a): > >> In the drivers/net/wireless/ath5k/base.c, there's recursive locking of > >> sc->lock > >> This casue the kernel stuck > >> > >> Bug report please see: > >> http://lkml.org

Re: [ath5k-devel] [PATCH] ath5k : ath5k_config_interface deadlock fix

2008-08-01 Thread Pekka Enberg
Jiri Slaby wrote: > Dave Young napsal(a): >> In the drivers/net/wireless/ath5k/base.c, there's recursive locking of >> sc->lock >> This casue the kernel stuck >> >> Bug report please see: >> http://lkml.org/lkml/2008/7/29/32 >> >> Fixed it by remove the lock in sub routine "ath5k_beacon_update", >

[ath5k-devel] [PATCH] ath5k : ath5k_config_interface deadlock fix

2008-08-01 Thread Dave Young
In the drivers/net/wireless/ath5k/base.c, there's recursive locking of sc->lock This casue the kernel stuck Bug report please see: http://lkml.org/lkml/2008/7/29/32 Fixed it by remove the lock in sub routine "ath5k_beacon_update", The ath5k_config_interface is the only caller to it. [ 171.43020

Re: [ath5k-devel] [PATCH] ath5k : ath5k_config_interface deadlock fix

2008-08-01 Thread Jiri Slaby
Dave Young napsal(a): > In the drivers/net/wireless/ath5k/base.c, there's recursive locking of > sc->lock > This casue the kernel stuck > > Bug report please see: > http://lkml.org/lkml/2008/7/29/32 > > Fixed it by remove the lock in sub routine "ath5k_beacon_update", > The ath5k_config_interfac