Re: 2.6.19-rc1 regression: airo suspend fails

2006-10-07 Thread Pavel Machek
Hi! > > > it breaks suspend when the airo module is loaded: > > > > > > kernel: Stopping tasks: > > > = > > > kernel: stopping tasks timed out after 20 seconds (1 tasks remaining): > > > kernel: eth1 > > > kernel:

Re: 2.6.19-rc1: known regressions (v2)

2006-10-07 Thread Trond Myklebust
Cc: Linus Torvalds <[EMAIL PROTECTED]>, Linux Kernel Mailing List , [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED], Prakash Punnoor <[EMAIL PROTECTED]>, [EMAIL PROTECTED], [EMAIL PROTECTED], Steve Fox <[EMAIL PROTECTED]>, netdev@vger.kernel.org, "Michael S. Tsirkin" <[EMAIL PROTECTED

[patch 1/2] prism54: fix potential race in reset scheduling

2006-10-07 Thread Dmitry Torokhov
NET: prism54 - fix potential race in reset scheduling There appears to be a race in reset scheduling logic - thread responsible for reseting the interface should clear "reset pending" flag before restarting the queue, otherwise timeout handler might not schedule another reset even if it is needed.

[patch 2/2] prism54: whitespace cleanup

2006-10-07 Thread Dmitry Torokhov
NET: prism54 - whitespace cleanup Signed-off-by: Dmitry Torokhov <[EMAIL PROTECTED]> --- drivers/net/wireless/prism54/isl_38xx.c | 17 +++ drivers/net/wireless/prism54/isl_38xx.h |7 +- drivers/net/wireless/prism54/isl_ioctl.c | 61 -- drivers

[patch 0/2] prism54: couple of cleanup patches

2006-10-07 Thread Dmitry Torokhov
Hi, Here are couple of patches for prism54 driver, they are against tonight pull from Linus. Please consider applying. Thanks! -- Dmitry - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.or

[patch 2/3] atmel: use ARRAY_SIZE()

2006-10-07 Thread Dmitry Torokhov
NET: atmel - switch to using ARRAY_SIZE() Signed-off-by: Dmitry Torokhov <[EMAIL PROTECTED]> --- drivers/net/wireless/atmel.c | 20 ++-- 1 files changed, 10 insertions(+), 10 deletions(-) Index: work/drivers/net/wireless/atmel.c

[patch 3/3] atmel: whitespace cleanup

2006-10-07 Thread Dmitry Torokhov
NET: atmel: whitespace cleanup Signed-off-by: Dmitry Torokhov <[EMAIL PROTECTED]> --- drivers/net/wireless/atmel.c |6 +-- drivers/net/wireless/atmel_cs.c | 74 +++ drivers/net/wireless/atmel_pci.c | 10 ++--- 3 files changed, 45 insertions(+), 45

[patch 0/3] atmel: couple of cleanup patches

2006-10-07 Thread Dmitry Torokhov
Hi, Here are couple of cleanup patches for atmel driver. They are against tonight pull from Linus. Please consider applying. Thanks! -- Dmitry - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.ker

[patch 1/3] atmel: save on array initialization

2006-10-07 Thread Dmitry Torokhov
NET: atmel - do not initialize array over and over again Signed-off-by: Dmitry Torokhov <[EMAIL PROTECTED]> --- drivers/net/wireless/atmel.c |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: work/drivers/net/wireless/atmel.c ===

Re: 2.6.19-rc1 regression: airo suspend fails

2006-10-07 Thread Alex Romosan
Dave Kleikamp <[EMAIL PROTECTED]> writes: > I believe it was broken by: > http://www.kernel.org/git/gitweb.cgi?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3b4c7d640376dbccfe80fc4f7b8772ecc7de28c5 > > I have seen this in the -mm tree, but didn't follow up at the time. I > was able to fix

Re: 2.6.19-rc1 regression: airo suspend fails

2006-10-07 Thread Dave Kleikamp
On Fri, 2006-10-06 at 20:47 +0200, Adrian Bunk wrote: > On Thu, Oct 05, 2006 at 09:31:16PM -0700, Alex Romosan wrote: > > it breaks suspend when the airo module is loaded: > > > > kernel: Stopping tasks: > > = > > ke

Re: sky2 (was Re: 2.6.18-mm2)

2006-10-07 Thread Matthias Hentges
Hello Stephen, Am Dienstag, den 03.10.2006, 20:26 -0700 schrieb Stephen Hemminger: [...] > > while the above patch indeed removes the error messages from my previous > > mail, I have since seen random but reproduceable freezes of the box in > > question. I believe they are sky2 related since th

Re: [PATCH 2/2] [TULIP] Check the return value from pci_set_mwi()

2006-10-07 Thread Jeff Garzik
Grant Grundler wrote: On Fri, Oct 06, 2006 at 03:59:57PM -0400, Jeff Garzik wrote: The unmodified tulip driver checks both MWI and cacheline-size because one of the clones (PNIC or PNIC2) will let you set the MWI bit, but hardwires cacheline size to zero. Maybe the generic pci_set_mwi() can v

RE: [PATCH] changes to ucc_geth driver as a result of qe_lib changesand bugfixes

2006-10-07 Thread Joakim Tjernlund
> > changes due to qe_lib changes include: > > o removed platform_device code, replaced with of_device > o removed typedefs > o uint -> u32 conversions > o removed following defines: > QE_SIZEOF_BD, BD_BUFFER_ARG, BD_BUFFER_CLEAR, BD_BUFFER, > BD_STATUS_AND_LENGTH_SET, BD_STATUS_AND_LENGTH, a

[PATCH] d80211: ieee80211_hw handlers should be allowed to sleep

2006-10-07 Thread Ivo van Doorn
This patch changes the ieee80211_if_sta timer structure into a workqueue. This will allow the config(), reset_tsf() and config_interface() handlers in the ieee80211_hw structure to sleep. This is especially required for USB drivers that have to sleep for all register access. Signed-off-by Jan Kisz