* Re: broken dpt_i2o in 2.6.23 (was: ext2 check page: bad entry in directory) (fwd) @ 2007-12-12 10:58 Anders Henke 2007-12-12 11:38 ` Andrew Morton 0 siblings, 1 reply; 10+ messages in thread From: Anders Henke @ 2007-12-12 10:58 UTC (permalink / raw) To: miquels, linux-kernel, linux-scsi, matthew, akpm Hi, I'd like to let you now that my boxes are running a 32-bit kernel, so the 64-bit-uncleanliness shouldn't apply to my boxes; however, http://www.miquels.cistron.nl/linux/dpt_i2o-64bit-2.6.23.patch fixed the issue on my testbox. I took a clean 2.6.23, applied patch, recompiled the kernel, reboot: works. Regards, Anders PS: Sorry for breaking the threading, I'm not a regular subscriber to linux-kernel and haven't received Miguel's message by mail. -- 1&1 Internet AG System Design Brauerstrasse 48 v://49.721.91374.50 D-76135 Karlsruhe f://49.721.91374.225 Amtsgericht Montabaur HRB 6484 Vorstand: Henning Ahlert, Ralph Dommermuth, Matthias Ehrlich, Andreas Gauger, Thomas Gottschlich, Matthias Greve, Robert Hoffmann, Norbert Lang, Achim Weiss Aufsichtsratsvorsitzender: Michael Scheeren ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: broken dpt_i2o in 2.6.23 (was: ext2 check page: bad entry in directory) (fwd) 2007-12-12 10:58 broken dpt_i2o in 2.6.23 (was: ext2 check page: bad entry in directory) (fwd) Anders Henke @ 2007-12-12 11:38 ` Andrew Morton 2007-12-12 13:07 ` Miquel van Smoorenburg 2007-12-12 14:17 ` broken dpt_i2o in 2.6.23 (was: ext2 check page: bad entry in directory) (fwd) Anders Henke 0 siblings, 2 replies; 10+ messages in thread From: Andrew Morton @ 2007-12-12 11:38 UTC (permalink / raw) To: Anders Henke Cc: miquels, linux-kernel, linux-scsi, matthew, FUJITA Tomonori, linux-scsi On Wed, 12 Dec 2007 11:58:41 +0100 Anders Henke <anders.henke@1und1.de> wrote: > Hi, > > I'd like to let you now that my boxes are running a 32-bit kernel, so > the 64-bit-uncleanliness shouldn't apply to my boxes; however, > > http://www.miquels.cistron.nl/linux/dpt_i2o-64bit-2.6.23.patch > > fixed the issue on my testbox. > > I took a clean 2.6.23, applied patch, recompiled the kernel, reboot: works. What a huge patch :( We already reverted the offening patch so I assume that 2.6.24-rc5 is working for you? I guess we need to look at restoring "dpt_i2o: convert to SCSI hotplug model" and then absorbing what Miquel has done there. ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: broken dpt_i2o in 2.6.23 (was: ext2 check page: bad entry in directory) (fwd) 2007-12-12 11:38 ` Andrew Morton @ 2007-12-12 13:07 ` Miquel van Smoorenburg 2007-12-12 13:43 ` Anders Henke 2007-12-12 14:17 ` broken dpt_i2o in 2.6.23 (was: ext2 check page: bad entry in directory) (fwd) Anders Henke 1 sibling, 1 reply; 10+ messages in thread From: Miquel van Smoorenburg @ 2007-12-12 13:07 UTC (permalink / raw) To: Anders Henke Cc: Andrew Morton, linux-kernel, linux-scsi, matthew, FUJITA Tomonori [-- Attachment #1: Type: text/plain, Size: 1211 bytes --] On Wed, 2007-12-12 at 03:38 -0800, Andrew Morton wrote: > On Wed, 12 Dec 2007 11:58:41 +0100 Anders Henke <anders.henke@1und1.de> wrote: > > > Hi, > > > > I'd like to let you now that my boxes are running a 32-bit kernel, so > > the 64-bit-uncleanliness shouldn't apply to my boxes; however, > > > > http://www.miquels.cistron.nl/linux/dpt_i2o-64bit-2.6.23.patch > > > > fixed the issue on my testbox. > > > > I took a clean 2.6.23, applied patch, recompiled the kernel, reboot: works. > > What a huge patch :( > > We already reverted the offening patch so I assume that 2.6.24-rc5 is > working for you? > > I guess we need to look at restoring "dpt_i2o: convert to SCSI hotplug > model" and then absorbing what Miquel has done there. This was just a patch I had lying around, if it worked it would confirm my suspicion, which it has. The minimal patch which is suitable for 2.6.23-stable and 2.6.24 would be the attached one-liner. The "dpt_i2o: convert to SCSI hotplug model" patch could be restored then. (if the list eats the attachment, it's also available here: http://www.miquels.cistron.nl/linux/linux-2.6.23+24-dpt_i2o-dma64.patch ) Anders, does this one-liner patch work for you ? Mike. [-- Attachment #2: linux-2.6.23+24-dpt_i2o-dma64.patch --] [-- Type: text/x-patch, Size: 511 bytes --] diff -ruN linux-2.6.23.9.orig/drivers/scsi/dpt_i2o.c linux-2.6.23.9/drivers/scsi/dpt_i2o.c --- linux-2.6.23.9.orig/drivers/scsi/dpt_i2o.c 2007-11-26 18:51:43.000000000 +0100 +++ linux-2.6.23.9/drivers/scsi/dpt_i2o.c 2007-12-12 13:21:05.000000000 +0100 @@ -905,8 +905,7 @@ } pci_set_master(pDev); - if (pci_set_dma_mask(pDev, DMA_64BIT_MASK) && - pci_set_dma_mask(pDev, DMA_32BIT_MASK)) + if (pci_set_dma_mask(pDev, DMA_32BIT_MASK)) return -EINVAL; base_addr0_phys = pci_resource_start(pDev,0); ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: broken dpt_i2o in 2.6.23 (was: ext2 check page: bad entry in directory) (fwd) 2007-12-12 13:07 ` Miquel van Smoorenburg @ 2007-12-12 13:43 ` Anders Henke 2007-12-12 19:16 ` Andrew Morton 0 siblings, 1 reply; 10+ messages in thread From: Anders Henke @ 2007-12-12 13:43 UTC (permalink / raw) To: Miquel van Smoorenburg Cc: Andrew Morton, linux-kernel, linux-scsi, matthew, FUJITA Tomonori Am 12.12.2007 schrieb Miquel van Smoorenburg: > On Wed, 2007-12-12 at 03:38 -0800, Andrew Morton wrote: > > On Wed, 12 Dec 2007 11:58:41 +0100 Anders Henke <anders.henke@1und1.de> wrote: > > > > > Hi, > > > > > > I'd like to let you now that my boxes are running a 32-bit kernel, so > > > the 64-bit-uncleanliness shouldn't apply to my boxes; however, > > > > > > http://www.miquels.cistron.nl/linux/dpt_i2o-64bit-2.6.23.patch > > > > > > fixed the issue on my testbox. > > > > > > I took a clean 2.6.23, applied patch, recompiled the kernel, reboot: works. > > > > What a huge patch :( > > > > We already reverted the offening patch so I assume that 2.6.24-rc5 is > > working for you? > > > > I guess we need to look at restoring "dpt_i2o: convert to SCSI hotplug > > model" and then absorbing what Miquel has done there. > > This was just a patch I had lying around, if it worked it would confirm > my suspicion, which it has. > > The minimal patch which is suitable for 2.6.23-stable and 2.6.24 would > be the attached one-liner. The "dpt_i2o: convert to SCSI hotplug model" > patch could be restored then. > > (if the list eats the attachment, it's also available here: > http://www.miquels.cistron.nl/linux/linux-2.6.23+24-dpt_i2o-dma64.patch > ) > > Anders, does this one-liner patch work for you ? Got it - and it works! I took a clean 2.6.23, applied the patch, recompiled the kernel and rebooted my testbox: came up with the fresh-compiled kernel (verified by "uname -a"). Regards, Anders -- 1&1 Internet AG System Design Brauerstrasse 48 v://49.721.91374.50 D-76135 Karlsruhe f://49.721.91374.225 Amtsgericht Montabaur HRB 6484 Vorstand: Henning Ahlert, Ralph Dommermuth, Matthias Ehrlich, Andreas Gauger, Thomas Gottschlich, Matthias Greve, Robert Hoffmann, Norbert Lang, Achim Weiss Aufsichtsratsvorsitzender: Michael Scheeren ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: broken dpt_i2o in 2.6.23 (was: ext2 check page: bad entry in directory) (fwd) 2007-12-12 13:43 ` Anders Henke @ 2007-12-12 19:16 ` Andrew Morton 2007-12-12 19:54 ` James Bottomley 0 siblings, 1 reply; 10+ messages in thread From: Andrew Morton @ 2007-12-12 19:16 UTC (permalink / raw) To: Anders Henke Cc: Miquel van Smoorenburg, linux-kernel, linux-scsi, matthew, FUJITA Tomonori, stable On Wed, 12 Dec 2007 14:43:42 +0100 Anders Henke <anders.henke@1und1.de> wrote: > Am 12.12.2007 schrieb Miquel van Smoorenburg: > > On Wed, 2007-12-12 at 03:38 -0800, Andrew Morton wrote: > > > On Wed, 12 Dec 2007 11:58:41 +0100 Anders Henke <anders.henke@1und1.de> wrote: > > > > > > > Hi, > > > > > > > > I'd like to let you now that my boxes are running a 32-bit kernel, so > > > > the 64-bit-uncleanliness shouldn't apply to my boxes; however, > > > > > > > > http://www.miquels.cistron.nl/linux/dpt_i2o-64bit-2.6.23.patch > > > > > > > > fixed the issue on my testbox. > > > > > > > > I took a clean 2.6.23, applied patch, recompiled the kernel, reboot: works. > > > > > > What a huge patch :( > > > > > > We already reverted the offening patch so I assume that 2.6.24-rc5 is > > > working for you? > > > > > > I guess we need to look at restoring "dpt_i2o: convert to SCSI hotplug > > > model" and then absorbing what Miquel has done there. > > > > This was just a patch I had lying around, if it worked it would confirm > > my suspicion, which it has. > > > > The minimal patch which is suitable for 2.6.23-stable and 2.6.24 would > > be the attached one-liner. The "dpt_i2o: convert to SCSI hotplug model" > > patch could be restored then. > > > > (if the list eats the attachment, it's also available here: > > http://www.miquels.cistron.nl/linux/linux-2.6.23+24-dpt_i2o-dma64.patch > > ) > > > > Anders, does this one-liner patch work for you ? > > Got it - and it works! > > I took a clean 2.6.23, applied the patch, recompiled the kernel and > rebooted my testbox: came up with the fresh-compiled kernel > (verified by "uname -a"). > That looks appropriate for 2.6.23.x: --- linux-2.6.23.9.orig/drivers/scsi/dpt_i2o.c 2007-11-26 18:51:43.000000000 +0100 +++ linux-2.6.23.9/drivers/scsi/dpt_i2o.c 2007-12-12 13:21:05.000000000 +0100 @@ -905,8 +905,7 @@ } pci_set_master(pDev); - if (pci_set_dma_mask(pDev, DMA_64BIT_MASK) && - pci_set_dma_mask(pDev, DMA_32BIT_MASK)) + if (pci_set_dma_mask(pDev, DMA_32BIT_MASK)) return -EINVAL; base_addr0_phys = pci_resource_start(pDev,0); However it is a bit mystifying that 55d9fcf57ba5ec427544fca7abc335cf3da78160 would cause a dma mask problem (isn't it?) The scsi people might want to restore 55d9fcf57ba5ec427544fca7abc335cf3da78160 and then apply Miquel's patch on top for 2.6.24, or do it for 2.6.25? ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: broken dpt_i2o in 2.6.23 (was: ext2 check page: bad entry in directory) (fwd) 2007-12-12 19:16 ` Andrew Morton @ 2007-12-12 19:54 ` James Bottomley 2007-12-12 22:16 ` [stable] " Greg KH 0 siblings, 1 reply; 10+ messages in thread From: James Bottomley @ 2007-12-12 19:54 UTC (permalink / raw) To: Andrew Morton Cc: Anders Henke, Miquel van Smoorenburg, linux-kernel, linux-scsi, matthew, FUJITA Tomonori, stable On Wed, 2007-12-12 at 11:16 -0800, Andrew Morton wrote: > On Wed, 12 Dec 2007 14:43:42 +0100 Anders Henke <anders.henke@1und1.de> wrote: > > > Am 12.12.2007 schrieb Miquel van Smoorenburg: > > > On Wed, 2007-12-12 at 03:38 -0800, Andrew Morton wrote: > > > > On Wed, 12 Dec 2007 11:58:41 +0100 Anders Henke <anders.henke@1und1.de> wrote: > > > > > > > > > Hi, > > > > > > > > > > I'd like to let you now that my boxes are running a 32-bit kernel, so > > > > > the 64-bit-uncleanliness shouldn't apply to my boxes; however, > > > > > > > > > > http://www.miquels.cistron.nl/linux/dpt_i2o-64bit-2.6.23.patch > > > > > > > > > > fixed the issue on my testbox. > > > > > > > > > > I took a clean 2.6.23, applied patch, recompiled the kernel, reboot: works. > > > > > > > > What a huge patch :( > > > > > > > > We already reverted the offening patch so I assume that 2.6.24-rc5 is > > > > working for you? > > > > > > > > I guess we need to look at restoring "dpt_i2o: convert to SCSI hotplug > > > > model" and then absorbing what Miquel has done there. > > > > > > This was just a patch I had lying around, if it worked it would confirm > > > my suspicion, which it has. > > > > > > The minimal patch which is suitable for 2.6.23-stable and 2.6.24 would > > > be the attached one-liner. The "dpt_i2o: convert to SCSI hotplug model" > > > patch could be restored then. > > > > > > (if the list eats the attachment, it's also available here: > > > http://www.miquels.cistron.nl/linux/linux-2.6.23+24-dpt_i2o-dma64.patch > > > ) > > > > > > Anders, does this one-liner patch work for you ? > > > > Got it - and it works! > > > > I took a clean 2.6.23, applied the patch, recompiled the kernel and > > rebooted my testbox: came up with the fresh-compiled kernel > > (verified by "uname -a"). > > > > That looks appropriate for 2.6.23.x: > > --- linux-2.6.23.9.orig/drivers/scsi/dpt_i2o.c 2007-11-26 18:51:43.000000000 +0100 > +++ linux-2.6.23.9/drivers/scsi/dpt_i2o.c 2007-12-12 13:21:05.000000000 +0100 > @@ -905,8 +905,7 @@ > } > > pci_set_master(pDev); > - if (pci_set_dma_mask(pDev, DMA_64BIT_MASK) && > - pci_set_dma_mask(pDev, DMA_32BIT_MASK)) > + if (pci_set_dma_mask(pDev, DMA_32BIT_MASK)) > return -EINVAL; Yes, this has to be in ... the mptr filling the scatterlist on the current driver is only a u32 and so will silently truncate. > base_addr0_phys = pci_resource_start(pDev,0); > > > However it is a bit mystifying that > 55d9fcf57ba5ec427544fca7abc335cf3da78160 would cause a dma mask problem > (isn't it?) > > The scsi people might want to restore > 55d9fcf57ba5ec427544fca7abc335cf3da78160 and then apply Miquel's patch on > top for 2.6.24, or do it for 2.6.25? I think it's a bit late in the game for 2.6.24, so I'm happy to leave the hotplug reverted. We'll try adding back hotplug plus this for 2.6.25 I think. James ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [stable] broken dpt_i2o in 2.6.23 (was: ext2 check page: bad entry in directory) (fwd) 2007-12-12 19:54 ` James Bottomley @ 2007-12-12 22:16 ` Greg KH 2007-12-13 10:11 ` [PATCH] dpt_i2o: don't set DMA_64BIT_MASK [was: Re: [stable] broken dpt_i2o in 2.6.23 (was: ext2 check page: bad entry in directory) (fwd)] Miquel van Smoorenburg 0 siblings, 1 reply; 10+ messages in thread From: Greg KH @ 2007-12-12 22:16 UTC (permalink / raw) To: James Bottomley Cc: Andrew Morton, Miquel van Smoorenburg, linux-scsi, matthew, linux-kernel, FUJITA Tomonori, Anders Henke, stable On Wed, Dec 12, 2007 at 02:54:54PM -0500, James Bottomley wrote: > > On Wed, 2007-12-12 at 11:16 -0800, Andrew Morton wrote: > > On Wed, 12 Dec 2007 14:43:42 +0100 Anders Henke <anders.henke@1und1.de> wrote: > > > > > Am 12.12.2007 schrieb Miquel van Smoorenburg: > > > > On Wed, 2007-12-12 at 03:38 -0800, Andrew Morton wrote: > > > > > On Wed, 12 Dec 2007 11:58:41 +0100 Anders Henke <anders.henke@1und1.de> wrote: > > > > > > > > > > > Hi, > > > > > > > > > > > > I'd like to let you now that my boxes are running a 32-bit kernel, so > > > > > > the 64-bit-uncleanliness shouldn't apply to my boxes; however, > > > > > > > > > > > > http://www.miquels.cistron.nl/linux/dpt_i2o-64bit-2.6.23.patch > > > > > > > > > > > > fixed the issue on my testbox. > > > > > > > > > > > > I took a clean 2.6.23, applied patch, recompiled the kernel, reboot: works. > > > > > > > > > > What a huge patch :( > > > > > > > > > > We already reverted the offening patch so I assume that 2.6.24-rc5 is > > > > > working for you? > > > > > > > > > > I guess we need to look at restoring "dpt_i2o: convert to SCSI hotplug > > > > > model" and then absorbing what Miquel has done there. > > > > > > > > This was just a patch I had lying around, if it worked it would confirm > > > > my suspicion, which it has. > > > > > > > > The minimal patch which is suitable for 2.6.23-stable and 2.6.24 would > > > > be the attached one-liner. The "dpt_i2o: convert to SCSI hotplug model" > > > > patch could be restored then. > > > > > > > > (if the list eats the attachment, it's also available here: > > > > http://www.miquels.cistron.nl/linux/linux-2.6.23+24-dpt_i2o-dma64.patch > > > > ) > > > > > > > > Anders, does this one-liner patch work for you ? > > > > > > Got it - and it works! > > > > > > I took a clean 2.6.23, applied the patch, recompiled the kernel and > > > rebooted my testbox: came up with the fresh-compiled kernel > > > (verified by "uname -a"). > > > > > > > That looks appropriate for 2.6.23.x: > > > > --- linux-2.6.23.9.orig/drivers/scsi/dpt_i2o.c 2007-11-26 18:51:43.000000000 +0100 > > +++ linux-2.6.23.9/drivers/scsi/dpt_i2o.c 2007-12-12 13:21:05.000000000 +0100 > > @@ -905,8 +905,7 @@ > > } > > > > pci_set_master(pDev); > > - if (pci_set_dma_mask(pDev, DMA_64BIT_MASK) && > > - pci_set_dma_mask(pDev, DMA_32BIT_MASK)) > > + if (pci_set_dma_mask(pDev, DMA_32BIT_MASK)) > > return -EINVAL; > > Yes, this has to be in ... the mptr filling the scatterlist on the > current driver is only a u32 and so will silently truncate. > > > base_addr0_phys = pci_resource_start(pDev,0); > > > > > > However it is a bit mystifying that > > 55d9fcf57ba5ec427544fca7abc335cf3da78160 would cause a dma mask problem > > (isn't it?) > > > > The scsi people might want to restore > > 55d9fcf57ba5ec427544fca7abc335cf3da78160 and then apply Miquel's patch on > > top for 2.6.24, or do it for 2.6.25? > > I think it's a bit late in the game for 2.6.24, so I'm happy to leave > the hotplug reverted. We'll try adding back hotplug plus this for > 2.6.25 I think. So, what should be added to 2.6.23-stable then? And, can I get a real changelog entry for it? thanks, greg k-h ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH] dpt_i2o: don't set DMA_64BIT_MASK [was: Re: [stable] broken dpt_i2o in 2.6.23 (was: ext2 check page: bad entry in directory) (fwd)] 2007-12-12 22:16 ` [stable] " Greg KH @ 2007-12-13 10:11 ` Miquel van Smoorenburg 2007-12-13 12:58 ` James Bottomley 0 siblings, 1 reply; 10+ messages in thread From: Miquel van Smoorenburg @ 2007-12-13 10:11 UTC (permalink / raw) To: Greg KH Cc: James Bottomley, Andrew Morton, Miquel van Smoorenburg, linux-scsi, matthew, linux-kernel, FUJITA Tomonori, Anders Henke, stable According to Greg KH: > So, what should be added to 2.6.23-stable then? And, can I get a real > changelog entry for it? This is suitable for both 2.6.23.x and 2.6.24-rc5 : linux-2.6-dpt_i2o-no-dma64.patch The dpt_i2o driver can't handle 64 bit DMA addresses, so do not let it set pci_set_dma_mask(pDev, DMA_64BIT_MASK) . Signed-off-by: Miquel van Smoorenburg <miquels@cistron.nl> diff -ruN linux-2.6.23.9.orig/drivers/scsi/dpt_i2o.c linux-2.6.23.9/drivers/scsi/dpt_i2o.c --- linux-2.6.23.9.orig/drivers/scsi/dpt_i2o.c 2007-11-26 18:51:43.000000000 +0100 +++ linux-2.6.23.9/drivers/scsi/dpt_i2o.c 2007-12-12 13:21:05.000000000 +0100 @@ -905,8 +905,7 @@ } pci_set_master(pDev); - if (pci_set_dma_mask(pDev, DMA_64BIT_MASK) && - pci_set_dma_mask(pDev, DMA_32BIT_MASK)) + if (pci_set_dma_mask(pDev, DMA_32BIT_MASK)) return -EINVAL; base_addr0_phys = pci_resource_start(pDev,0); ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] dpt_i2o: don't set DMA_64BIT_MASK [was: Re: [stable] broken dpt_i2o in 2.6.23 (was: ext2 check page: bad entry in directory) (fwd)] 2007-12-13 10:11 ` [PATCH] dpt_i2o: don't set DMA_64BIT_MASK [was: Re: [stable] broken dpt_i2o in 2.6.23 (was: ext2 check page: bad entry in directory) (fwd)] Miquel van Smoorenburg @ 2007-12-13 12:58 ` James Bottomley 0 siblings, 0 replies; 10+ messages in thread From: James Bottomley @ 2007-12-13 12:58 UTC (permalink / raw) To: Miquel van Smoorenburg Cc: Greg KH, Andrew Morton, linux-scsi, matthew, linux-kernel, FUJITA Tomonori, Anders Henke, stable On Thu, 2007-12-13 at 11:11 +0100, Miquel van Smoorenburg wrote: > According to Greg KH: > > So, what should be added to 2.6.23-stable then? And, can I get a real > > changelog entry for it? > > This is suitable for both 2.6.23.x and 2.6.24-rc5 : > > linux-2.6-dpt_i2o-no-dma64.patch Actually, this one's already queued: http://git.kernel.org/?p=linux/kernel/git/jejb/scsi-rc-fixes-2.6.git;a=commit;h=a066b307861238c1970310579c0bc2fe8c8dca51 James ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: broken dpt_i2o in 2.6.23 (was: ext2 check page: bad entry in directory) (fwd) 2007-12-12 11:38 ` Andrew Morton 2007-12-12 13:07 ` Miquel van Smoorenburg @ 2007-12-12 14:17 ` Anders Henke 1 sibling, 0 replies; 10+ messages in thread From: Anders Henke @ 2007-12-12 14:17 UTC (permalink / raw) To: Andrew Morton; +Cc: miquels, linux-kernel, linux-scsi, matthew, FUJITA Tomonori Am 12.12.2007 schrieb Andrew Morton: > On Wed, 12 Dec 2007 11:58:41 +0100 Anders Henke <anders.henke@1und1.de> wrote: > > > Hi, > > > > I'd like to let you now that my boxes are running a 32-bit kernel, so > > the 64-bit-uncleanliness shouldn't apply to my boxes; however, > > > > http://www.miquels.cistron.nl/linux/dpt_i2o-64bit-2.6.23.patch > > > > fixed the issue on my testbox. > > > > I took a clean 2.6.23, applied patch, recompiled the kernel, reboot: works. > > What a huge patch :( > > We already reverted the offening patch so I assume that 2.6.24-rc5 is > working for you? Yes, the vanilla 2.6.24-rc5 works fine (at least it's booting :-). Linux rdb140 2.6.24-rc5 #1 SMP Wed Dec 12 15:06:05 CET 2007 i686 GNU/Linux > I guess we need to look at restoring "dpt_i2o: convert to SCSI hotplug > model" and then absorbing what Miquel has done there. I've tried 2.6.23 with http://www.miquels.cistron.nl/linux/linux-2.6.23+24-dpt_i2o-dma64.patch ... and that's enough to make my boxes boot again. Regards, Anders -- 1&1 Internet AG Enter any 11-digit prime number to continue. Brauerstrasse 48 v://49.721.91374.50 D-76135 Karlsruhe f://49.721.91374.225 Amtsgericht Montabaur HRB 6484 Vorstand: Henning Ahlert, Ralph Dommermuth, Matthias Ehrlich, Andreas Gauger, Thomas Gottschlich, Matthias Greve, Robert Hoffmann, Norbert Lang, Achim Weiss Aufsichtsratsvorsitzender: Michael Scheeren ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2007-12-13 12:58 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2007-12-12 10:58 broken dpt_i2o in 2.6.23 (was: ext2 check page: bad entry in directory) (fwd) Anders Henke 2007-12-12 11:38 ` Andrew Morton 2007-12-12 13:07 ` Miquel van Smoorenburg 2007-12-12 13:43 ` Anders Henke 2007-12-12 19:16 ` Andrew Morton 2007-12-12 19:54 ` James Bottomley 2007-12-12 22:16 ` [stable] " Greg KH 2007-12-13 10:11 ` [PATCH] dpt_i2o: don't set DMA_64BIT_MASK [was: Re: [stable] broken dpt_i2o in 2.6.23 (was: ext2 check page: bad entry in directory) (fwd)] Miquel van Smoorenburg 2007-12-13 12:58 ` James Bottomley 2007-12-12 14:17 ` broken dpt_i2o in 2.6.23 (was: ext2 check page: bad entry in directory) (fwd) Anders Henke
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox