Re: 2.6.24-rc8-mm1: sparc64 warning at fs/file_table.c:49 __fput+0x1a8/0x1e0()

2008-01-22 Thread Christoph Hellwig
On Tue, Jan 22, 2008 at 03:13:58PM -0800, Dave Hansen wrote: > The emergency remount code forcibly removes FMODE_WRITE from > filps. The r/o bind mount code notices that this was done > without a proper mnt_drop_write() and properly gives a > warning. > > This patch does a mnt_drop_write() and al

Re: sparc64: ERROR: "sys_ioctl" [arch/sparc64/solaris/solaris.ko] undefined!

2007-07-20 Thread Christoph Hellwig
On Fri, Jul 20, 2007 at 09:24:42AM -0400, Horst H. von Brand wrote: > When building v2.6.22-3478-g275afca on sparc64 (.config attached) I get: > > MODPOST vmlinux > Building modules, stage 2. > MODPOST 463 modules > ERROR: "sys_ioctl" [arch/sparc64/solaris/solaris.ko] undefined! Sorry, my f

Re: [PATCH] pluto: use wait_for_completion_timeout

2007-07-14 Thread Christoph Hellwig
On Sat, Jul 14, 2007 at 07:42:39PM +0200, Christoph Hellwig wrote: > ping? Sorry for the noise, it's actually in. I looked at the wrong tree. - To unsubscribe from this list: send the line "unsubscribe sparclinux" in the body of a message to [EMAIL PROTECTED] More major

Re: [PATCH] pluto: use wait_for_completion_timeout

2007-07-14 Thread Christoph Hellwig
ping? On Sun, May 13, 2007 at 05:49:01PM +0200, Christoph Hellwig wrote: > > Signed-off-by: Christoph Hellwig <[EMAIL PROTECTED]> > > Index: linux-2.6/drivers/scsi/pluto.c > === > --- linux-2.6.orig/drivers

[PATCH] sparc64: kill unused DIE_PAGE_FAULT enum value

2007-05-15 Thread Christoph Hellwig
sparc64 got rid of the pagefault notifiers, so the enum value for them can go away aswell. Signed-off-by: Christoph Hellwig <[EMAIL PROTECTED]> Index: linux-2.6/include/asm-sparc64/kdebug.h === --- linux-2.6.orig/inclu

Re: [RFC PATCH]: Rewritten ESP driver, porters needed!

2007-05-13 Thread Christoph Hellwig
On Fri, Apr 27, 2007 at 01:28:38PM -0700, David Miller wrote: > From: Christoph Hellwig <[EMAIL PROTECTED]> > Date: Fri, 27 Apr 2007 16:16:58 +0100 > > > aic7xxx might not be the best driver to look at either :) In practice > > a softirq has short enough latency so t

[PATCH] pluto: use wait_for_completion_timeout

2007-05-13 Thread Christoph Hellwig
Signed-off-by: Christoph Hellwig <[EMAIL PROTECTED]> Index: linux-2.6/drivers/scsi/pluto.c === --- linux-2.6.orig/drivers/scsi/pluto.c 2007-05-13 16:43:25.0 +0200 +++ linux-2.6/drivers/scsi/pluto.c 2007-05-13

Re: [RFC PATCH]: Rewritten ESP driver, porters needed!

2007-04-27 Thread Christoph Hellwig
Sorry for the late reply. I'll stay in this thead despite the new version beeing posted to not lose the context. On Tue, Apr 24, 2007 at 01:44:40PM -0700, David Miller wrote: > I did all of this, and it's fine, but there is one site which is much > less pleasant, device reconnect. > > With the e

Re: [RFC PATCH]: Rewritten ESP driver, porters needed!

2007-04-24 Thread Christoph Hellwig
Oh, btw - there is a problem with the generic code beeing esp.ko - we already have drivers/char/esp.c which buids into esp.ko for ISA platforms, which have a bit of overlap with ESP-using platforms. Maybe the driver should become esp_scsi.c/.ko or ncr_esp or ncr53x9x? - To unsubscribe from this lis

Re: [RFC PATCH]: Rewritten ESP driver, porters needed!

2007-04-24 Thread Christoph Hellwig
Overall the driver looks really nice, thanks a lot! some comments: > +#define esp_log_intr(f, a...) \ > +do { if (esp_debug & ESP_DEBUG_INTR) \ > + printk(f, ## a); \ > +} while (0) would be nice to have dev_printk here, but sbus still seems to lack driver model integration. > +stat

[PATCH] remove ifdef CONFIG_PCI from envctrl.c

2005-08-09 Thread Christoph Hellwig
The driver already depends on CONFIG_PCI in Kconfig. What I don't quite understand yet is why a PCI-only driver sits in drivers/sbus/ .. Signed-off-by: Christoph Hellwig <[EMAIL PROTECTED]> Index: linux-2.6/drivers/sbus/cha

Re: [PATCH] use kthread infrastructure in envctrl

2005-08-09 Thread Christoph Hellwig
On Tue, Aug 09, 2005 at 12:33:09PM -0700, David S. Miller wrote: > From: Christoph Hellwig <[EMAIL PROTECTED]> > Date: Tue, 9 Aug 2005 15:51:28 +0200 > > > envctrl currently uses very odd ways to stop a thread, using various > > things that should be exposed to drivers

[PATCH] use kthread infrastructure in envctrl

2005-08-09 Thread Christoph Hellwig
envctrl currently uses very odd ways to stop a thread, using various things that should be exposed to drivers at all. This patch (which is untested as I don't have sparc hardware) switches it to use the proper kthread infrastructure. Signed-off-by: Christoph Hellwig <[EMAIL PROTECTED]