Re: [Bugme-new] [Bug 8940] New: BUG: unable to handle kernel NULL pointer dereference at virtual address 00000000

2007-08-26 Thread Andrew Morton
On Sat, 25 Aug 2007 09:47:40 -0700 (PDT) [EMAIL PROTECTED] wrote: http://bugzilla.kernel.org/show_bug.cgi?id=8940 Summary: BUG: unable to handle kernel NULL pointer dereference at virtual address Product: Drivers Version: 2.5

Re: [PATCH] Prefix each line of multiline printk(KERN_level foo\nbar) with KERN_level

2007-08-26 Thread Geert Uytterhoeven
On Fri, 24 Aug 2007, Joe Perches wrote: Corrected printk calls with multiple output lines which did not correctly preface each line with KERN_level Fixed uses of some single lines with too many KERN_level --- a/arch/arm/kernel/ecard.c +++ b/arch/arm/kernel/ecard.c @@ -547,7 +547,8 @@

Re: [PATCH] Prefix each line of multiline printk(KERN_level foo\nbar) with KERN_level

2007-08-26 Thread Mike Frysinger
On 8/26/07, Geert Uytterhoeven [EMAIL PROTECTED] wrote: On Fri, 24 Aug 2007, Joe Perches wrote: Corrected printk calls with multiple output lines which did not correctly preface each line with KERN_level Fixed uses of some single lines with too many KERN_level ---

Re: [PATCH] Prefix each line of multiline printk(KERN_level foo\nbar) with KERN_level

2007-08-26 Thread Geert Uytterhoeven
On Sun, 26 Aug 2007, Mike Frysinger wrote: On 8/26/07, Geert Uytterhoeven [EMAIL PROTECTED] wrote: On Fri, 24 Aug 2007, Joe Perches wrote: Corrected printk calls with multiple output lines which did not correctly preface each line with KERN_level Fixed uses of some single lines with

Re: [Bugme-new] [Bug 8940] New: BUG: unable to handle kernel NULL pointer dereference at virtual address 00000000

2007-08-26 Thread Matthew Wilcox
On Sun, Aug 26, 2007 at 12:52:07AM -0700, Andrew Morton wrote: On Sat, 25 Aug 2007 09:47:40 -0700 (PDT) [EMAIL PROTECTED] wrote: Problem Description: I got this error message: BUG: unable to handle kernel NULL pointer dereference at virtual address in dmesg output when connecting

Re: [PATCH] debloat aic7xxx and aic79xx drivers by deinlining

2007-08-26 Thread Denys Vlasenko
On Saturday 25 August 2007 22:57, Arjan van de Ven wrote: On Sat, 25 Aug 2007 22:57:07 +0100 Denys Vlasenko [EMAIL PROTECTED] wrote: Hi, Attached patch deinlines and moves big functions from .h to .c files in drivers/scsi/aic7xxx/*. I also had to add prototypes for ahc_lookup_scb and

returning scsi I/O to OS from interrupt handler

2007-08-26 Thread Parav Pandit
Hi, A low level SCSI HBA driver can return the I/O back to the OS from various paths. Some of the common possible paths 1, enqueue_command itself 2. Timer handler (at the time of command timeout) 3. Interrupt handler (when a response is received from the storage) 4. DPC handler thread. Whenever

Re: [linux-usb-devel] [Bugme-new] [Bug 8940] New: BUG: unable to handle kernel NULL pointer dereference at virtual address 00000000

2007-08-26 Thread Alan Stern
On Sun, 26 Aug 2007, Matthew Wilcox wrote: On Sun, Aug 26, 2007 at 12:52:07AM -0700, Andrew Morton wrote: On Sat, 25 Aug 2007 09:47:40 -0700 (PDT) [EMAIL PROTECTED] wrote: Problem Description: I got this error message: BUG: unable to handle kernel NULL pointer dereference at virtual

Re: [PATCH] debloat aic7xxx and aic79xx drivers by deinlining

2007-08-26 Thread Adrian Bunk
On Sun, Aug 26, 2007 at 04:21:30PM +0100, Denys Vlasenko wrote: On Saturday 25 August 2007 22:57, Arjan van de Ven wrote: ... Did you run the find static script or are you waiting for Adrian to do that ;-) $ find -name '*find*static*' $ make namespacecheck vda cu Adrian --