Re: How to Switch DMA off for only one Harddisk at Kernelboot

2007-12-16 Thread Gabriel C
Oliver Joa wrote: Hi, Gabriel C wrote: Oliver Joa wrote: Hi, Hi Oliver , how can I tell the kernel not to probe DMA for a specific harddisk (e.g. hda). My first Drive (hda) is a Compact-Flash Card which can not do DMA. The kernel tries at boot to switch to DMA but fails. If I use ide

Re: How to Switch DMA off for only one Harddisk at Kernelboot

2007-12-16 Thread Gabriel C
Oliver Joa wrote: Hi, Gabriel C wrote: [...] Also have a look at Documentation/ide.txt. I read this already. Searching for nodma in this document gives only one line: ide=nodma: disable DMA globally for the IDE subsystem. If the documentation is correct hda=nodma

Re: 2.6.24-rc3-mm1: I/O error, system hangs

2007-11-24 Thread Gabriel C
James Bottomley wrote: On Sat, 2007-11-24 at 13:57 +0100, Laurent Riffard wrote: Le 24.11.2007 07:42, James Bottomley a écrit : On Fri, 2007-11-23 at 18:52 +0100, Laurent Riffard wrote: Le 23.11.2007 12:38, Hannes Reinecke a écrit : Hannes Reinecke wrote: Laurent Riffard wrote: Le

Re: 2.6.24-rc3-mm1: I/O error, system hangs

2007-11-24 Thread Gabriel C
James Bottomley wrote: On Sat, 2007-11-24 at 18:54 +0100, Gabriel C wrote: James Bottomley wrote: On Sat, 2007-11-24 at 13:57 +0100, Laurent Riffard wrote: Le 24.11.2007 07:42, James Bottomley a écrit : On Fri, 2007-11-23 at 18:52 +0100, Laurent Riffard wrote: Le 23.11.2007 12:38, Hannes

Re: 2.6.24-rc3-mm1: I/O error, system hangs

2007-11-24 Thread Gabriel C
Gabriel C wrote: James Bottomley wrote: On Sat, 2007-11-24 at 18:54 +0100, Gabriel C wrote: James Bottomley wrote: On Sat, 2007-11-24 at 13:57 +0100, Laurent Riffard wrote: Le 24.11.2007 07:42, James Bottomley a écrit : On Fri, 2007-11-23 at 18:52 +0100, Laurent Riffard wrote: Le 23.11.2007

Re: [BUG] New Kernel Bugs

2007-11-14 Thread Gabriel C
then Acked-by: Hannes Reinecke [EMAIL PROTECTED] It's not in my mailbox on this machine, gladly we have lkml archived in the Net. Here is a positive tester report: http://lkml.org/lkml/2007/10/15/168: == Date Mon, 15 Oct 2007 15:53:08 +0200 From Gabriel C Subject Re

Re: [BUG] New Kernel Bugs

2007-11-13 Thread Gabriel C
Adrian Bunk wrote: On Tue, Nov 13, 2007 at 12:13:56PM -0500, Theodore Tso wrote: On Tue, Nov 13, 2007 at 04:52:32PM +0100, Benoit Boissinot wrote: Btw, I used to test every -mm kernel. But since I've switched distros (gentoo-ubuntu) and I have less time, I feel it's harder to test -rc or -mm

[PATCH] sis5513.c: Add Packard Bell EasyNote K5305 to laptops

2007-11-13 Thread Gabriel C
Hi, With newer kernels HDD in my old laptop is limited to UDMA 33. With this patch I get UDMA 100 again. Signed-off-by: Gabriel Craciunescu [EMAIL PROTECTED] --- diff --git a/drivers/ide/pci/sis5513.c b/drivers/ide/pci/sis5513.c index 6b7bb53..3878224 100644 --- a/drivers/ide/pci/sis5513.c +++

[PATCH] pata_sis.c: Add Packard Bell EasyNote K5305 to laptops

2007-11-13 Thread Gabriel C
Hi, With newer kernels HDD in my old laptop is limited to UDMA 33. With this patch I get UDMA 100 again. Signed-off-by: Gabriel Craciunescu [EMAIL PROTECTED] --- diff --git a/drivers/ata/pata_sis.c b/drivers/ata/pata_sis.c index 3b5be77..87546d9 100644 --- a/drivers/ata/pata_sis.c +++

libata-core.c compile warnings with !CONFIG_PM

2007-10-31 Thread Gabriel C
Hi , I see this warnings on current git head with !CONFIG_PM : ... drivers/ata/libata-core.c:768: warning: 'ata_lpm_enable' defined but not used drivers/ata/libata-core.c:784: warning: 'ata_lpm_disable' defined but not used ... So far I see ata_lpm_enable() is only used in

[PATCH -mm] Fix libata warnings with CONFIG_PM=n

2007-07-28 Thread Gabriel C
Hi Jeff, I noticed this warnings when CONFIG_PM=n ... drivers/ata/libata-core.c:5993: warning: 'ata_host_disable_link_pm' defined but not used drivers/ata/libata-core.c:6004: warning: 'ata_host_enable_link_pm' defined but not used ... Signed-off-by: Gabriel Craciunescu [EMAIL PROTECTED]