two bluetooth oopses in 2.6.16rc2-git

2006-02-11 Thread Dave Jones
Triggered whilst running a socket stress test. (The tainted flag came from 'p8023') Dave Feb 11 21:52:00 trogdor kernel: Unable to handle kernel NULL pointer dereference at virtual address 01b0 Feb 11 21:52:00 trogdor kernel: printing eip: Feb 11 21:52:00 trogdor kernel: e0

Re: p8023 taints kernel

2006-02-11 Thread Randy.Dunlap
On Sat, 11 Feb 2006 19:37:19 -0800 (PST) David S. Miller wrote: > From: Dave Jones <[EMAIL PROTECTED]> > Date: Sat, 11 Feb 2006 21:17:38 -0500 > > > On Sat, Feb 11, 2006 at 06:11:48PM -0800, Randy.Dunlap wrote: > > > > > needs quotes: "GPL" > > > > Indeed. > > Dave, please type "make" patche

Re: p8023 taints kernel

2006-02-11 Thread Dave Jones
On Sat, Feb 11, 2006 at 07:37:19PM -0800, David S. Miller wrote: > From: Dave Jones <[EMAIL PROTECTED]> > Date: Sat, 11 Feb 2006 21:17:38 -0500 > > > On Sat, Feb 11, 2006 at 06:11:48PM -0800, Randy.Dunlap wrote: > > > > > needs quotes: "GPL" > > > > Indeed. > > Dave, please type "ma

Re: p8023 taints kernel

2006-02-11 Thread David S. Miller
From: Dave Jones <[EMAIL PROTECTED]> Date: Sat, 11 Feb 2006 21:17:38 -0500 > On Sat, Feb 11, 2006 at 06:11:48PM -0800, Randy.Dunlap wrote: > > > needs quotes: "GPL" > > Indeed. Dave, please type "make" patches you submit, thanks. You submitted a similar bogon to me 2 weeks ago with that ICMP

Re: p8023 taints kernel

2006-02-11 Thread Dave Jones
On Sat, Feb 11, 2006 at 06:11:48PM -0800, Randy.Dunlap wrote: > needs quotes: "GPL" Indeed. Missing license tag. I've assumed this is GPL. (It could also use a MODULE_AUTHOR) Signed-off-by: Dave Jones <[EMAIL PROTECTED]> --- linux-2.6.15.noarch/net/802/p8023.c~2006-02-11 21:15:58.00

Re: p8023 taints kernel

2006-02-11 Thread Randy.Dunlap
On Sat, 11 Feb 2006 19:19:08 -0500 Dave Jones wrote: > Missing license tag. > I've assumed this is GPL. (It could also use a MODULE_AUTHOR) > > Signed-off-by: Dave Jones <[EMAIL PROTECTED]> > > --- linux-2.6.15.noarch/net/802/p8023.c~ 2006-02-11 19:17:26.0 > -0500 > +++ linux-2.6.

ratelimit atmsvc failure messages

2006-02-11 Thread Dave Jones
This seems to be trivial to trigger. Signed-off-by: Dave Jones <[EMAIL PROTECTED]> --- linux-2.6.15.noarch/net/atm/signaling.c~2006-02-11 19:20:09.0 -0500 +++ linux-2.6.15.noarch/net/atm/signaling.c 2006-02-11 19:21:30.0 -0500 @@ -56,7 +56,8 @@ static void sigd_put_skb(s

Re: [PATCH 5/5] RT2x00 update: Suspend fix

2006-02-11 Thread Francois Romieu
Ivo van Doorn <[EMAIL PROTECTED]> : [...] > diff -U 3 -H -w -E -d -r -N -- > wireless-2.6/drivers/net/wireless/rt2x00/rt2400pci.c > wireless-2.6-rt2x00/drivers/net/wireless/rt2x00/rt2400pci.c > --- wireless-2.6/drivers/net/wireless/rt2x00/rt2400pci.c 2006-02-09 > 20:35:21.0 +0100 >

Re: [PATCH 4/5] RT2x00 update: Channel initialization cleanup

2006-02-11 Thread Francois Romieu
Ivo van Doorn <[EMAIL PROTECTED]> : > Cleanup channel initialization and remove device specific > value magic calculations. Just deliver a plain list of values. > Read the EEPROM for default TXpower values for each channel. > > Signed-off-by Ivo van Doorn <[EMAIL PROTECTED]> > > diff -U 3 -H -w -

Re: [PATCH 3/5] RT2x00 update: Allocate ieee80211_hw for each device seperately

2006-02-11 Thread Francois Romieu
Ivo van Doorn <[EMAIL PROTECTED]> : > Allocate the ieee80211_hw structure for each device > individually to allow the driver to support multiple devices > at the same time. > > Signed-off-by Ivo van Doorn <[EMAIL PROTECTED]> > > diff -U 3 -H -w -E -d -r -N -- > wireless-2.6/drivers/net/wireless/

[PATCH 1/5] RT2x00 update: CREDITS and MAINTAINERS

2006-02-11 Thread Ivo van Doorn
Add rt2x00 to MAINTAINERS file. Add the rt2x00 developers to the CREDITS file. Signed-off-by Ivo van Doorn <[EMAIL PROTECTED]> diff -U 3 -H -w -E -d -r -N -- wireless-2.6/CREDITS wireless-2.6-rt2x00/CREDITS --- wireless-2.6/CREDITS2006-02-09 20:41:13.0 +0100 +++ wireless-2.6-rt2x0

[PATCH 0/5] RT2x00 update

2006-02-11 Thread Ivo van Doorn
Hi John, Here are some updates for the rt2x00 drivers. [Patch 1] Adds the entries for the CREDITS and MAINTAINERS files which I had forgotten at the initial commit. [Patch 2] Some trivial fixes, a compile fix for the renamed ieee80211_rx function in the dscape stack. And throughout the driver th

[PATCH 3/5] RT2x00 update: Allocate ieee80211_hw for each device seperately

2006-02-11 Thread Ivo van Doorn
Allocate the ieee80211_hw structure for each device individually to allow the driver to support multiple devices at the same time. Signed-off-by Ivo van Doorn <[EMAIL PROTECTED]> diff -U 3 -H -w -E -d -r -N -- wireless-2.6/drivers/net/wireless/rt2x00/rt2400pci.c wireless-2.6-rt2x00/drivers/net/

[PATCH 2/5] RT2x00 update: trivial fixes

2006-02-11 Thread Ivo van Doorn
ieee80211_rx has been renamed __ieee80211_rx. Use DRV_NAME as much as possible instead of a seperate name string. Add new USB device ID. Signed-off-by Ivo van Doorn <[EMAIL PROTECTED]> diff -U 3 -H -w -E -d -r -N -- wireless-2.6/drivers/net/wireless/rt2x00/rt2400pci.c wireless-2.6-rt2x00/driver

[PATCH 4/5] RT2x00 update: Channel initialization cleanup

2006-02-11 Thread Ivo van Doorn
Cleanup channel initialization and remove device specific value magic calculations. Just deliver a plain list of values. Read the EEPROM for default TXpower values for each channel. Signed-off-by Ivo van Doorn <[EMAIL PROTECTED]> diff -U 3 -H -w -E -d -r -N -- wireless-2.6/drivers/net/wireless/r

[PATCH 5/5] RT2x00 update: Suspend fix

2006-02-11 Thread Ivo van Doorn
After writing PUT_TO_SLEEP to the device, wait untill the CURRENT_STATE of the device indicates it is asleep before returning from the suspend function. When suspend fails, call the resume function to bring the device back to live again. Signed-off-by Ivo van Doorn <[EMAIL PROTECTED]> diff -U 3 -

sky2 hangs on large data transfers

2006-02-11 Thread Wolfgang Hoffmann
Hello, sky2 basically runs fine on my hardware, but reproducably hangs after some time when rsync-ing between two local machines, i.e. doing large transfers with ca. 20-30 MB/s. I'm getting this with stock Ubuntu dapper drake kernel (2.6.15-15) which as far as I know has sky2 0.11 from netdev

Re: [PATCH] IPv6: Cleanups for net/ipv6/addrconf.c (kzalloc, early exit) v2

2006-02-11 Thread YOSHIFUJI Hideaki / 吉藤英明
Hello. In article <[EMAIL PROTECTED]> (at Sat, 11 Feb 2006 17:37:18 +0100), Ingo Oeser <[EMAIL PROTECTED]> says: > From: Ingo Oeser <[EMAIL PROTECTED]> > > Here are some possible (and trivial) cleanups. > - use kzalloc() where possible > - remove unused label > - invert allocation failure test

[PATCH] IPv6: Cleanups for net/ipv6/addrconf.c (kzalloc, early exit) v2

2006-02-11 Thread Ingo Oeser
From: Ingo Oeser <[EMAIL PROTECTED]> Here are some possible (and trivial) cleanups. - use kzalloc() where possible - remove unused label - invert allocation failure test like if (object) { /* Rest of function here */ } to if (object == NULL) return NULL; /* Rest of func

Re: [RFC] [PATCH] PFKEYv2 compliance

2006-02-11 Thread jamal
On Fri, 2006-10-02 at 17:58 -0500, DuBuisson, Thomas wrote: > [PFKEY] > Adds support for RFC 2367 Section 3.1.6 option 3 - SA consumer sending of > PFKEY acquire messages. Previously, the only acquire messages accepted from > user space to the kernel was for the key manager to indicate an error.

Re: [Acx100-users] [PATCH] acx: Actually save the net_device in the dev

2006-02-11 Thread Denis Vlasenko
On Saturday 11 February 2006 12:29, Carlos Martín wrote: > diff-tree 796084eedef602153c337e5c3ee60741e7acab64 (from > 29292af943e12ace0115497616569f0629ed1cd7) > Author: Carlos Martin <[EMAIL PROTECTED](none)> > Date: Sat Feb 11 11:24:27 2006 +0100 > > Actually save the net_device in the de

Re: slab corruption after sungem recieve errors

2006-02-11 Thread Olaf Hering
On Fri, Feb 10, Olaf Hering wrote: > I have seen this kind of error every once in a while on my G4/450 Mac. > > > Linux version 2.6.13-20050921064541-default ([EMAIL PROTECTED]) (gcc version > 4.0.2 20050901 (prerelease) (SUSE Linux)) #1 Wed Sep 21 06:45:41 UTC 2005 > > sungem.c:v0.98 8/24/03

[PATCH] acx: Actually save the net_device in the dev

2006-02-11 Thread Carlos Martín
diff-tree 796084eedef602153c337e5c3ee60741e7acab64 (from 29292af943e12ace0115497616569f0629ed1cd7) Author: Carlos Martin <[EMAIL PROTECTED](none)> Date: Sat Feb 11 11:24:27 2006 +0100 Actually save the net_device in the dev When the no-ciclic-ndevs was done, it was forgotten that