* Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
@ 2003-12-20 13:33 Nicklas Bondesson
0 siblings, 0 replies; 26+ messages in thread
From: Nicklas Bondesson @ 2003-12-20 13:33 UTC (permalink / raw)
To: linux-kernel; +Cc: linux-ide
I have some major problem getting my FastTrak TX2000 card working with the
Linux 2.4.23 kernel using Debian 3.0 r2.
Everything seems to work just fne with the precompiled kernel shipped with
Debian (2.4.18-bf2.4) but when I try to use the newer kernel the boot
process halts and give me a kernel panic:
Kernel panic: VFS: Unable to mount root fs on 72:01.
I'm using the native ATARAID driver built in (not as a module).
I have sucessfully used the RAID card with two Maxtor drives for almost a
year (even with the 2.4.23 kernel). But I reinstalled the system yesterday
with brand new disks.
I think I have tried almost every way possible getting the board up, but no
luck! Have I missed something here?
I hope that someone can help me with this issue. Thanks in advance!
fstab:
/dev/ataraid/d0p1 / ext3 and so on...
/dev/ataraid/d0p2 none swap and so on..
lilo:
append="ide2=0xd000,0xb802,12 ide3=0xb400,0xb002,12"00
Hardware:
Two WDC800JB-00DUA3 disks connected to a Promise FastTrak TX2000
ASUS P2B motherboard
Intel Pentium II
/Nicke
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
@ 2003-12-20 19:44 Walt H
2003-12-20 23:54 ` Nicklas Bondesson
0 siblings, 1 reply; 26+ messages in thread
From: Walt H @ 2003-12-20 19:44 UTC (permalink / raw)
To: nikomail, linux-kernel
Hello,
Is the Promise raid configured as a raid0 stripe? If so, can you see in the boot
messages if, when the ataraid driver detects the drives it is only detecting one
of the drives? Have you recently added or replaced one of the drives?
If the ataraid driver only detects one of the drives in a raid0 array, you might
try this patch:
--- /usr/src/temp/linux-2.4.21/drivers/ide/raid/pdcraid.c 2003-06-13
07:51:34.000000000 -0700
+++ pdcraid.c 2003-07-18 06:54:25.000000000 -0700
@@ -361,7 +361,8 @@
if (ideinfo->sect==0)
return 0;
- lba = (ideinfo->capacity / (ideinfo->head*ideinfo->sect));
+/* lba = (ideinfo->capacity / (ideinfo->head*ideinfo->sect));
lba = lba * (ideinfo->head*ideinfo->sect);
- lba = lba - ideinfo->sect;
+ lba = lba - ideinfo->sect; */
+ lba = ideinfo->capacity - ideinfo->sect;
return lba;
I diffed it against 2.4.21 but it should still apply. HTH,
-Walt
^ permalink raw reply [flat|nested] 26+ messages in thread
* RE: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-20 19:44 Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271) Walt H
@ 2003-12-20 23:54 ` Nicklas Bondesson
2003-12-21 1:01 ` Walt H
0 siblings, 1 reply; 26+ messages in thread
From: Nicklas Bondesson @ 2003-12-20 23:54 UTC (permalink / raw)
To: 'Walt H', linux-kernel
Hi,
Oh I forgot to say that i'm running RAID1 and it detects both drives
perfectly (I'm passing the IDE addresses to the kernel at boot time from the
lilo conf, see previous post). The system was reinstalled yesterday with two
brand new 80GB Western Digital disks (WD800JB-00DUA3). The thing is, I have
succesfully installed the TX2000 card with the native ATARAID drivers before
using two 30GB Maxtor (something) disks and kernel 2.4-20 - 2.4.23. I wonder
why I can't get it up and running now. It will only work with the pre
compiled kernel shipped with Debian 3.0 (2.4.18-bf2.4). I have tried all
sorts of kernel settings. Since I have got it to work before I think should
be able to do it again.
Please advise.
/Nicke
-----Original Message-----
From: linux-kernel-owner@vger.kernel.org
[mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of Walt H
Sent: den 20 december 2003 20:45
To: nikomail@hotmail.com; linux-kernel
Subject: Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000
(PDC20271)
Hello,
Is the Promise raid configured as a raid0 stripe? If so, can you see in the
boot messages if, when the ataraid driver detects the drives it is only
detecting one of the drives? Have you recently added or replaced one of the
drives?
If the ataraid driver only detects one of the drives in a raid0 array, you
might try this patch:
--- /usr/src/temp/linux-2.4.21/drivers/ide/raid/pdcraid.c 2003-06-13
07:51:34.000000000 -0700
+++ pdcraid.c 2003-07-18 06:54:25.000000000 -0700
@@ -361,7 +361,8 @@
if (ideinfo->sect==0)
return 0;
- lba = (ideinfo->capacity / (ideinfo->head*ideinfo->sect));
+/* lba = (ideinfo->capacity / (ideinfo->head*ideinfo->sect));
lba = lba * (ideinfo->head*ideinfo->sect);
- lba = lba - ideinfo->sect;
+ lba = lba - ideinfo->sect; */
+ lba = ideinfo->capacity - ideinfo->sect;
return lba;
I diffed it against 2.4.21 but it should still apply. HTH,
-Walt
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-20 23:54 ` Nicklas Bondesson
@ 2003-12-21 1:01 ` Walt H
2003-12-21 14:54 ` Nicklas Bondesson
0 siblings, 1 reply; 26+ messages in thread
From: Walt H @ 2003-12-21 1:01 UTC (permalink / raw)
To: Nicklas Bondesson; +Cc: linux-kernel
Nicklas Bondesson wrote:
> Hi,
>
> Oh I forgot to say that i'm running RAID1 and it detects both drives
> perfectly (I'm passing the IDE addresses to the kernel at boot time from the
> lilo conf, see previous post). The system was reinstalled yesterday with two
> brand new 80GB Western Digital disks (WD800JB-00DUA3). The thing is, I have
> succesfully installed the TX2000 card with the native ATARAID drivers before
> using two 30GB Maxtor (something) disks and kernel 2.4-20 - 2.4.23. I wonder
> why I can't get it up and running now. It will only work with the pre
> compiled kernel shipped with Debian 3.0 (2.4.18-bf2.4). I have tried all
> sorts of kernel settings. Since I have got it to work before I think should
> be able to do it again.
>
> Please advise.
>
> /Nicke
Hmmm. I'm pretty sure that the partitions are enumerated the same way in 2.4.23
vs. 2.4.18. There was a change in the way IDE geometry was returned from the
kernel that caused a hiccup in the pdcraid driver around 2.4.22 I think? My
patch just tells the pdcraid to use an alternate method of finding the RAID
superblock on each drive. Not sure what else might be the problem. Do you see
the ataraid driver fire up (looking something like this):
ataraid/d0: ataraid/d0p1
Drive 0 is 239372 Mb (33 / 0)
Drive 1 is 239372 Mb (34 / 0)
Raid1 array consists of 2 drives.
Promise Fasttrak(tm) Softwareraid driver for linux version 0.03beta
The only problem I've recently come upon with pdcraid, is when it detects just
one of the drives and fails. I didn't think that should happen with raid1 though.
^ permalink raw reply [flat|nested] 26+ messages in thread
* RE: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-21 1:01 ` Walt H
@ 2003-12-21 14:54 ` Nicklas Bondesson
2003-12-21 16:32 ` Walt H
0 siblings, 1 reply; 26+ messages in thread
From: Nicklas Bondesson @ 2003-12-21 14:54 UTC (permalink / raw)
To: 'Walt H', linux-kernel
Nopes, I get the kernel panic before the driver loads or when it does,
however I'm not seeing any ataraid driver message at all. This is really
strange I think. The only thing that has changed in my setup are the
harddrives. I really need to get this working. Do you have any suggestions
what-so-ever what to do? I really appreciate your help on this.
/Nicke
-----Original Message-----
From: linux-kernel-owner@vger.kernel.org
[mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of Walt H
Sent: den 21 december 2003 02:01
To: Nicklas Bondesson
Cc: linux-kernel@vger.kernel.org
Subject: Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000
(PDC20271)
Nicklas Bondesson wrote:
> Hi,
>
> Oh I forgot to say that i'm running RAID1 and it detects both drives
> perfectly (I'm passing the IDE addresses to the kernel at boot time
> from the lilo conf, see previous post). The system was reinstalled
> yesterday with two brand new 80GB Western Digital disks
> (WD800JB-00DUA3). The thing is, I have succesfully installed the
> TX2000 card with the native ATARAID drivers before using two 30GB
> Maxtor (something) disks and kernel 2.4-20 - 2.4.23. I wonder why I
> can't get it up and running now. It will only work with the pre
> compiled kernel shipped with Debian 3.0 (2.4.18-bf2.4). I have tried
> all sorts of kernel settings. Since I have got it to work before I think
should be able to do it again.
>
> Please advise.
>
> /Nicke
Hmmm. I'm pretty sure that the partitions are enumerated the same way in
2.4.23 vs. 2.4.18. There was a change in the way IDE geometry was returned
from the kernel that caused a hiccup in the pdcraid driver around 2.4.22 I
think? My patch just tells the pdcraid to use an alternate method of
finding the RAID superblock on each drive. Not sure what else might be the
problem. Do you see the ataraid driver fire up (looking something like
this):
ataraid/d0: ataraid/d0p1
Drive 0 is 239372 Mb (33 / 0)
Drive 1 is 239372 Mb (34 / 0)
Raid1 array consists of 2 drives.
Promise Fasttrak(tm) Softwareraid driver for linux version 0.03beta
The only problem I've recently come upon with pdcraid, is when it detects
just one of the drives and fails. I didn't think that should happen with
raid1 though.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-21 14:54 ` Nicklas Bondesson
@ 2003-12-21 16:32 ` Walt H
2003-12-21 17:21 ` Nicklas Bondesson
2003-12-22 0:05 ` Nicklas Bondesson
0 siblings, 2 replies; 26+ messages in thread
From: Walt H @ 2003-12-21 16:32 UTC (permalink / raw)
To: Nicklas Bondesson; +Cc: linux-kernel
Nicklas Bondesson wrote:
> Nopes, I get the kernel panic before the driver loads or when it does,
> however I'm not seeing any ataraid driver message at all. This is really
> strange I think. The only thing that has changed in my setup are the
> harddrives. I really need to get this working. Do you have any suggestions
> what-so-ever what to do? I really appreciate your help on this.
>
> /Nicke
>
Well, since you're using raid1, you should be able to pass a root=/dev/hda1 (or
whatever your / is located) using the same kernel and at least boot using this
kernel. Then maybe you can use dmesg etc.. to see what the driver is actually
doing. From your original post, it looks like you're using Lilo, so you'll need
to boot using the old kernel first and change the lilo entry.
-Walt
^ permalink raw reply [flat|nested] 26+ messages in thread
* RE: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-21 16:32 ` Walt H
@ 2003-12-21 17:21 ` Nicklas Bondesson
2003-12-22 0:05 ` Nicklas Bondesson
1 sibling, 0 replies; 26+ messages in thread
From: Nicklas Bondesson @ 2003-12-21 17:21 UTC (permalink / raw)
To: 'Walt H', linux-kernel
I will try to do that now. Do you think this can have anything to do with me
actually having a rather large root partition (76GB)? I will try with two
33GB partitions this time (it might have something to do with it - but on
the other hand it is working working with the Debian pre-compiled kernel).
Well, let's see what I find out. I'll keep you posted.
/Nicke
-----Original Message-----
From: linux-kernel-owner@vger.kernel.org
[mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of Walt H
Sent: den 21 december 2003 17:32
To: Nicklas Bondesson
Cc: linux-kernel@vger.kernel.org
Subject: Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000
(PDC20271)
Nicklas Bondesson wrote:
> Nopes, I get the kernel panic before the driver loads or when it does,
> however I'm not seeing any ataraid driver message at all. This is
> really strange I think. The only thing that has changed in my setup
> are the harddrives. I really need to get this working. Do you have any
> suggestions what-so-ever what to do? I really appreciate your help on
this.
>
> /Nicke
>
Well, since you're using raid1, you should be able to pass a root=/dev/hda1
(or whatever your / is located) using the same kernel and at least boot
using this kernel. Then maybe you can use dmesg etc.. to see what the driver
is actually doing. From your original post, it looks like you're using Lilo,
so you'll need to boot using the old kernel first and change the lilo entry.
-Walt
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 26+ messages in thread
* RE: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-21 16:32 ` Walt H
2003-12-21 17:21 ` Nicklas Bondesson
@ 2003-12-22 0:05 ` Nicklas Bondesson
2003-12-22 1:35 ` Walt H
1 sibling, 1 reply; 26+ messages in thread
From: Nicklas Bondesson @ 2003-12-22 0:05 UTC (permalink / raw)
To: 'Walt H', linux-kernel
Now I'm sucessfully booting my system with the 2.4.23 kernel using only one
of the drives (hde). There is not a single line in the logs that says
anything about the Promise ATARAID driver is beeing fired up, so my guess is
that it doesn't load if no one is calling on it. When I try to boot from the
RAID it dies right after the "NET4: Unix domain sockets 1.0/SMP for Linux"
message. I think it's when the ATARAID driver is about to fire up. I have no
idea at all what to do now. It must have something to do with the hard
drives since this is the only thing that has changed. Maybee I'm missing
some important kernel setting option or so? (I don't think so, but one never
know for sure). Also what have changed in the Promise / ATARAID since
2.4.18?.
/Nicke
-----Original Message-----
From: linux-kernel-owner@vger.kernel.org
[mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of Walt H
Sent: den 21 december 2003 17:32
To: Nicklas Bondesson
Cc: linux-kernel@vger.kernel.org
Subject: Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000
(PDC20271)
Nicklas Bondesson wrote:
> Nopes, I get the kernel panic before the driver loads or when it does,
> however I'm not seeing any ataraid driver message at all. This is
> really strange I think. The only thing that has changed in my setup
> are the harddrives. I really need to get this working. Do you have any
> suggestions what-so-ever what to do? I really appreciate your help on
this.
>
> /Nicke
>
Well, since you're using raid1, you should be able to pass a root=/dev/hda1
(or whatever your / is located) using the same kernel and at least boot
using this kernel. Then maybe you can use dmesg etc.. to see what the driver
is actually doing. From your original post, it looks like you're using Lilo,
so you'll need to boot using the old kernel first and change the lilo entry.
-Walt
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-22 0:05 ` Nicklas Bondesson
@ 2003-12-22 1:35 ` Walt H
2003-12-22 13:38 ` Nicklas Bondesson
` (2 more replies)
0 siblings, 3 replies; 26+ messages in thread
From: Walt H @ 2003-12-22 1:35 UTC (permalink / raw)
To: Nicklas Bondesson; +Cc: linux-kernel
Nicklas Bondesson wrote:
> Now I'm sucessfully booting my system with the 2.4.23 kernel using only one
> of the drives (hde). There is not a single line in the logs that says
> anything about the Promise ATARAID driver is beeing fired up, so my guess is
> that it doesn't load if no one is calling on it. When I try to boot from the
> RAID it dies right after the "NET4: Unix domain sockets 1.0/SMP for Linux"
> message. I think it's when the ATARAID driver is about to fire up. I have no
> idea at all what to do now. It must have something to do with the hard
> drives since this is the only thing that has changed. Maybee I'm missing
> some important kernel setting option or so? (I don't think so, but one never
> know for sure). Also what have changed in the Promise / ATARAID since
> 2.4.18?.
>
> /Nicke
Not sure what else to tell you. If the pdcraid driver is compiled into the
kernel, you'll get a message about it during boot, even if it can't find all the
drives. I no longer use the 2.4 kernel series (or pdcraid), so I'm afraid I'm
out of ideas. Maybe somebody else on the list has some other things to try. Sorry.
-Walt
^ permalink raw reply [flat|nested] 26+ messages in thread
* RE: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-22 1:35 ` Walt H
@ 2003-12-22 13:38 ` Nicklas Bondesson
2003-12-22 15:05 ` Walt H
2003-12-22 23:22 ` Nicklas Bondesson
2003-12-23 0:59 ` Nicklas Bondesson
2 siblings, 1 reply; 26+ messages in thread
From: Nicklas Bondesson @ 2003-12-22 13:38 UTC (permalink / raw)
To: 'Walt H', linux-kernel; +Cc: andre
Do I have to include anything else than this??
<*> ATA/IDE/MFM/RLL support
IDE, ATA and ATAPI Block devices -->
<*> PROMISE PDC202{68|69|70|71|75|76|77} support (NEW)
[*] Special FastTrack Feature
<*> Support for IDE Raid Controllers (EXPERIMENTAL)
<*> Support Promise software RAID (Fasttrak(tm)) (EXPERIMENTAL)
/Nicke
-----Original Message-----
From: linux-kernel-owner@vger.kernel.org
[mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of Walt H
Sent: den 22 december 2003 02:36
To: Nicklas Bondesson
Cc: linux-kernel@vger.kernel.org
Subject: Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000
(PDC20271)
Nicklas Bondesson wrote:
> Now I'm sucessfully booting my system with the 2.4.23 kernel using
> only one of the drives (hde). There is not a single line in the logs
> that says anything about the Promise ATARAID driver is beeing fired
> up, so my guess is that it doesn't load if no one is calling on it.
> When I try to boot from the RAID it dies right after the "NET4: Unix
domain sockets 1.0/SMP for Linux"
> message. I think it's when the ATARAID driver is about to fire up. I
> have no idea at all what to do now. It must have something to do with
> the hard drives since this is the only thing that has changed. Maybee
> I'm missing some important kernel setting option or so? (I don't think
> so, but one never know for sure). Also what have changed in the
> Promise / ATARAID since 2.4.18?.
>
> /Nicke
Not sure what else to tell you. If the pdcraid driver is compiled into the
kernel, you'll get a message about it during boot, even if it can't find all
the drives. I no longer use the 2.4 kernel series (or pdcraid), so I'm
afraid I'm out of ideas. Maybe somebody else on the list has some other
things to try. Sorry.
-Walt
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-22 13:38 ` Nicklas Bondesson
@ 2003-12-22 15:05 ` Walt H
2003-12-22 15:31 ` Nicklas Bondesson
0 siblings, 1 reply; 26+ messages in thread
From: Walt H @ 2003-12-22 15:05 UTC (permalink / raw)
To: Nicklas Bondesson; +Cc: linux-kernel, andre
Nicklas Bondesson wrote:
> Do I have to include anything else than this??
>
> <*> ATA/IDE/MFM/RLL support
> IDE, ATA and ATAPI Block devices -->
> <*> PROMISE PDC202{68|69|70|71|75|76|77} support (NEW)
> [*] Special FastTrack Feature
>
> <*> Support for IDE Raid Controllers (EXPERIMENTAL)
> <*> Support Promise software RAID (Fasttrak(tm)) (EXPERIMENTAL)
>
> /Nicke
>
I believe that should do it. dmesg doesn't have any info about the ataraid
driver being loaded? If it's scrolling out of the kernel buffer, you can try
bumping up the size through the kernel config. The option is under the "Kernel
Hacking" section and is CONFIG_LOG_BUF_SHIFT. Change it to 17 or 18 to be sure.
A reboot with this new kernel should give you a full dmesg afterward, hopefully
showing what's wrong with the ataraid stuff.
-Walt
PS. I don't remember when this took place, but there were some changes to the
promise drivers in 2.4 around 2.4.21 I think. There should be drivers for both
the older Promise and the newer. I remember always choosing both, complete with
pdcraid just to be sure.
^ permalink raw reply [flat|nested] 26+ messages in thread
* RE: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-22 15:05 ` Walt H
@ 2003-12-22 15:31 ` Nicklas Bondesson
0 siblings, 0 replies; 26+ messages in thread
From: Nicklas Bondesson @ 2003-12-22 15:31 UTC (permalink / raw)
To: 'Walt H'; +Cc: linux-kernel
No problem I can see the whole boot log. The ATARAID driver never loads.
Could you force it to load somehow?
I get these messages:
PDC20271: IDE controller at PCI slot 00:09.0
PCI: Found IRQ 12 for device 00.09.0
PCI: Sharing IRQ 12 with 00:04.2
PDC20271: not 100% native mode: will probe irqs later
ide2: BM-DMA at ...
ide3: BM-DMA at ...
then it finds the disks:
hde: WDC ...
hdg: WDC ...
partition check:
hde: hde1, hde2
hdg: hdg1, hdg2
ide: late registration of driver
-----Original Message-----
From: linux-kernel-owner@vger.kernel.org
[mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of Walt H
Sent: den 22 december 2003 16:06
To: Nicklas Bondesson
Cc: linux-kernel@vger.kernel.org; andre@linux-ide.org
Subject: Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000
(PDC20271)
Nicklas Bondesson wrote:
> Do I have to include anything else than this??
>
> <*> ATA/IDE/MFM/RLL support
> IDE, ATA and ATAPI Block devices -->
> <*> PROMISE PDC202{68|69|70|71|75|76|77} support (NEW)
> [*] Special FastTrack Feature
>
> <*> Support for IDE Raid Controllers (EXPERIMENTAL)
> <*> Support Promise software RAID (Fasttrak(tm)) (EXPERIMENTAL)
>
> /Nicke
>
I believe that should do it. dmesg doesn't have any info about the ataraid
driver being loaded? If it's scrolling out of the kernel buffer, you can try
bumping up the size through the kernel config. The option is under the
"Kernel Hacking" section and is CONFIG_LOG_BUF_SHIFT. Change it to 17 or 18
to be sure.
A reboot with this new kernel should give you a full dmesg afterward,
hopefully showing what's wrong with the ataraid stuff.
-Walt
PS. I don't remember when this took place, but there were some changes to
the promise drivers in 2.4 around 2.4.21 I think. There should be drivers
for both the older Promise and the newer. I remember always choosing both,
complete with pdcraid just to be sure.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 26+ messages in thread
* RE: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-22 1:35 ` Walt H
2003-12-22 13:38 ` Nicklas Bondesson
@ 2003-12-22 23:22 ` Nicklas Bondesson
2003-12-23 0:59 ` Nicklas Bondesson
2 siblings, 0 replies; 26+ messages in thread
From: Nicklas Bondesson @ 2003-12-22 23:22 UTC (permalink / raw)
To: 'Walt H'; +Cc: linux-kernel
I just downloaded and compiled the 2.4.18 kernel and it works perfectly. It
must have something to with any changes from 2.4.18 - 2.4.23. I will try
which version up until 2.4.23 that works. I'll keep you posted. Do you know
who I should send this "bug" to in order to get it fixed in the next 2.4.x
version?
/Nicke
-----Original Message-----
From: linux-kernel-owner@vger.kernel.org
[mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of Walt H
Sent: den 22 december 2003 02:36
To: Nicklas Bondesson
Cc: linux-kernel@vger.kernel.org
Subject: Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000
(PDC20271)
Nicklas Bondesson wrote:
> Now I'm sucessfully booting my system with the 2.4.23 kernel using
> only one of the drives (hde). There is not a single line in the logs
> that says anything about the Promise ATARAID driver is beeing fired
> up, so my guess is that it doesn't load if no one is calling on it.
> When I try to boot from the RAID it dies right after the "NET4: Unix
domain sockets 1.0/SMP for Linux"
> message. I think it's when the ATARAID driver is about to fire up. I
> have no idea at all what to do now. It must have something to do with
> the hard drives since this is the only thing that has changed. Maybee
> I'm missing some important kernel setting option or so? (I don't think
> so, but one never know for sure). Also what have changed in the
> Promise / ATARAID since 2.4.18?.
>
> /Nicke
Not sure what else to tell you. If the pdcraid driver is compiled into the
kernel, you'll get a message about it during boot, even if it can't find all
the drives. I no longer use the 2.4 kernel series (or pdcraid), so I'm
afraid I'm out of ideas. Maybe somebody else on the list has some other
things to try. Sorry.
-Walt
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 26+ messages in thread
* RE: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-22 1:35 ` Walt H
2003-12-22 13:38 ` Nicklas Bondesson
2003-12-22 23:22 ` Nicklas Bondesson
@ 2003-12-23 0:59 ` Nicklas Bondesson
2003-12-23 2:07 ` Walt H
2 siblings, 1 reply; 26+ messages in thread
From: Nicklas Bondesson @ 2003-12-23 0:59 UTC (permalink / raw)
To: 'Walt H'; +Cc: linux-kernel
Actually the 2.4.18 seems to be the only one working. I'm sure someone out
there have the proper fix for this. Who should I talk to in order to get
this fixed? I'm willing to help out in any way I can.
/Nicke
-----Original Message-----
From: linux-kernel-owner@vger.kernel.org
[mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of Walt H
Sent: den 22 december 2003 02:36
To: Nicklas Bondesson
Cc: linux-kernel@vger.kernel.org
Subject: Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000
(PDC20271)
Nicklas Bondesson wrote:
> Now I'm sucessfully booting my system with the 2.4.23 kernel using
> only one of the drives (hde). There is not a single line in the logs
> that says anything about the Promise ATARAID driver is beeing fired
> up, so my guess is that it doesn't load if no one is calling on it.
> When I try to boot from the RAID it dies right after the "NET4: Unix
domain sockets 1.0/SMP for Linux"
> message. I think it's when the ATARAID driver is about to fire up. I
> have no idea at all what to do now. It must have something to do with
> the hard drives since this is the only thing that has changed. Maybee
> I'm missing some important kernel setting option or so? (I don't think
> so, but one never know for sure). Also what have changed in the
> Promise / ATARAID since 2.4.18?.
>
> /Nicke
Not sure what else to tell you. If the pdcraid driver is compiled into the
kernel, you'll get a message about it during boot, even if it can't find all
the drives. I no longer use the 2.4 kernel series (or pdcraid), so I'm
afraid I'm out of ideas. Maybe somebody else on the list has some other
things to try. Sorry.
-Walt
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-23 0:59 ` Nicklas Bondesson
@ 2003-12-23 2:07 ` Walt H
2003-12-23 3:18 ` Nicklas Bondesson
0 siblings, 1 reply; 26+ messages in thread
From: Walt H @ 2003-12-23 2:07 UTC (permalink / raw)
To: Nicklas Bondesson; +Cc: linux-kernel
[-- Attachment #1: Type: text/plain, Size: 1184 bytes --]
Nicklas Bondesson wrote:
> Actually the 2.4.18 seems to be the only one working. I'm sure someone out
> there have the proper fix for this. Who should I talk to in order to get
> this fixed? I'm willing to help out in any way I can.
>
> /Nicke
Well, not really sure. I thought Alan Cox did the original pdcraid.c for linux
some time back, but it really hasn't seen many changes. There were two general
Linux changes that took place back around 2.4.22 that might affect you. The
first, was the addition of the new Promise IDE driver, which you've got
configured. The second, has to do with how Linux reports the geometry of a
drive. This change affected my setup which is why I wrote the patch for the
pdcraid driver. If your system makes it all the way through kernel booting
(which it seems to do), but can't mount the filesystem on the raid, it seems to
indicate the latter change affecting you also. The only other thing I can think
of, is to use my patch (attached) with patch -p1 < pdcraid.patch from your
/usr/src/linux and make sure that you've got both Promise drivers compiled in
your kernel. Recompile and see what happens. Outside of that, I'm stuck. Good luck,
-Walt
[-- Attachment #2: pdcraid.patch --]
[-- Type: text/plain, Size: 611 bytes --]
--- /usr/src/temp/linux-2.4.21-xfs/linux/drivers/ide/raid/pdcraid.c 2003-12-22 17:59:09.653139067 -0800
+++ linux/drivers/ide/raid/pdcraid.c 2003-07-21 20:47:14.000000000 -0700
@@ -361,7 +361,11 @@
if (ideinfo->sect==0)
return 0;
- lba = (ideinfo->capacity / (ideinfo->head*ideinfo->sect));
- lba = lba * (ideinfo->head*ideinfo->sect);
- lba = lba - ideinfo->sect;
+ if (ideinfo->head!=255) {
+ lba = (ideinfo->capacity / (ideinfo->head*ideinfo->sect));
+ lba = lba * (ideinfo->head*ideinfo->sect);
+ lba = lba - ideinfo->sect; }
+ else {
+ lba = ideinfo->capacity - ideinfo->sect;
+ }
return lba;
^ permalink raw reply [flat|nested] 26+ messages in thread
* RE: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-23 2:07 ` Walt H
@ 2003-12-23 3:18 ` Nicklas Bondesson
2003-12-23 3:47 ` Walt H
0 siblings, 1 reply; 26+ messages in thread
From: Nicklas Bondesson @ 2003-12-23 3:18 UTC (permalink / raw)
To: 'Walt H'; +Cc: linux-kernel
The patch did not work for me, in fact there was no change at all (anything
affected to me). The Promise ataraid driver never gets loaded.
/Nicke
-----Original Message-----
From: linux-kernel-owner@vger.kernel.org
[mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of Walt H
Sent: den 23 december 2003 03:07
To: Nicklas Bondesson
Cc: linux-kernel@vger.kernel.org
Subject: Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000
(PDC20271)
Nicklas Bondesson wrote:
> Actually the 2.4.18 seems to be the only one working. I'm sure someone
> out there have the proper fix for this. Who should I talk to in order
> to get this fixed? I'm willing to help out in any way I can.
>
> /Nicke
Well, not really sure. I thought Alan Cox did the original pdcraid.c for
linux some time back, but it really hasn't seen many changes. There were two
general Linux changes that took place back around 2.4.22 that might affect
you. The first, was the addition of the new Promise IDE driver, which you've
got configured. The second, has to do with how Linux reports the geometry
of a drive. This change affected my setup which is why I wrote the patch for
the pdcraid driver. If your system makes it all the way through kernel
booting (which it seems to do), but can't mount the filesystem on the raid,
it seems to indicate the latter change affecting you also. The only other
thing I can think of, is to use my patch (attached) with patch -p1 <
pdcraid.patch from your /usr/src/linux and make sure that you've got both
Promise drivers compiled in your kernel. Recompile and see what happens.
Outside of that, I'm stuck. Good luck,
-Walt
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-23 3:18 ` Nicklas Bondesson
@ 2003-12-23 3:47 ` Walt H
2003-12-23 13:41 ` Nicklas Bondesson
` (2 more replies)
0 siblings, 3 replies; 26+ messages in thread
From: Walt H @ 2003-12-23 3:47 UTC (permalink / raw)
To: Nicklas Bondesson; +Cc: linux-kernel
Nicklas Bondesson wrote:
> The patch did not work for me, in fact there was no change at all (anything
> affected to me). The Promise ataraid driver never gets loaded.
>
> /Nicke
Not sure what else to try. I see that you've already posted to the ata-raid
list, so I'd hope that somebody else would reply from there. The pdcraid driver
has not received much attention lately, so it may very well be broken for your
configuration. Promise has released a binary/source combo driver similar to
Nvidia's that will still work in 2.4 - you might give that a try. I have a
PDC20276 based onboard raid setup, however, I use 2.6 with device mapper to use
it. It's a bit of a pain to setup ATM - especially if you want to boot from it,
but it can be done. Good luck,
-Walt
^ permalink raw reply [flat|nested] 26+ messages in thread
* RE: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-23 3:47 ` Walt H
@ 2003-12-23 13:41 ` Nicklas Bondesson
2003-12-23 13:56 ` Nicklas Bondesson
2003-12-23 14:42 ` Nicklas Bondesson
2 siblings, 0 replies; 26+ messages in thread
From: Nicklas Bondesson @ 2003-12-23 13:41 UTC (permalink / raw)
To: 'Walt H'; +Cc: linux-kernel
Finally got it to work!
There must be a bug causing the Promise card / driver not to be fired up
(i'm using ab ASUS P2B motheroard). If I issue the "acpi=off" to the kernel
at boot it detects the card and fires up the driver. Everything seems to
work now. Who should I post this bug to so it can be fixed in coming
releases?
/Nicke
-----Original Message-----
From: linux-kernel-owner@vger.kernel.org
[mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of Walt H
Sent: den 23 december 2003 04:47
To: Nicklas Bondesson
Cc: linux-kernel@vger.kernel.org
Subject: Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000
(PDC20271)
Nicklas Bondesson wrote:
> The patch did not work for me, in fact there was no change at all
> (anything affected to me). The Promise ataraid driver never gets loaded.
>
> /Nicke
Not sure what else to try. I see that you've already posted to the ata-raid
list, so I'd hope that somebody else would reply from there. The pdcraid
driver has not received much attention lately, so it may very well be broken
for your configuration. Promise has released a binary/source combo driver
similar to Nvidia's that will still work in 2.4 - you might give that a try.
I have a
PDC20276 based onboard raid setup, however, I use 2.6 with device mapper to
use it. It's a bit of a pain to setup ATM - especially if you want to boot
from it, but it can be done. Good luck,
-Walt
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 26+ messages in thread
* RE: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-23 3:47 ` Walt H
2003-12-23 13:41 ` Nicklas Bondesson
@ 2003-12-23 13:56 ` Nicklas Bondesson
2003-12-23 15:05 ` Walt H
2003-12-23 14:42 ` Nicklas Bondesson
2 siblings, 1 reply; 26+ messages in thread
From: Nicklas Bondesson @ 2003-12-23 13:56 UTC (permalink / raw)
To: 'Walt H'; +Cc: linux-kernel, 'Andre Hedrick'
The fix for me was to disable all "Power Management" in the kernel and
re-compile it. Works like a charm now :)
Hope this can help anyone else with the same problem as me. But again, I
think someone should take a look at it cos I think this is a bug for sure.
/Nicke
-----Original Message-----
From: linux-kernel-owner@vger.kernel.org
[mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of Walt H
Sent: den 23 december 2003 04:47
To: Nicklas Bondesson
Cc: linux-kernel@vger.kernel.org
Subject: Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000
(PDC20271)
Nicklas Bondesson wrote:
> The patch did not work for me, in fact there was no change at all
> (anything affected to me). The Promise ataraid driver never gets loaded.
>
> /Nicke
Not sure what else to try. I see that you've already posted to the ata-raid
list, so I'd hope that somebody else would reply from there. The pdcraid
driver has not received much attention lately, so it may very well be broken
for your configuration. Promise has released a binary/source combo driver
similar to Nvidia's that will still work in 2.4 - you might give that a try.
I have a
PDC20276 based onboard raid setup, however, I use 2.6 with device mapper to
use it. It's a bit of a pain to setup ATM - especially if you want to boot
from it, but it can be done. Good luck,
-Walt
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 26+ messages in thread
* RE: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-23 3:47 ` Walt H
2003-12-23 13:41 ` Nicklas Bondesson
2003-12-23 13:56 ` Nicklas Bondesson
@ 2003-12-23 14:42 ` Nicklas Bondesson
2 siblings, 0 replies; 26+ messages in thread
From: Nicklas Bondesson @ 2003-12-23 14:42 UTC (permalink / raw)
To: 'Walt H', 'Andre Hedrick'; +Cc: linux-kernel
[-- Attachment #1: Type: text/plain, Size: 1631 bytes --]
I just realised that I need to have the kernel patched with Walt's pdcraid
patch in order to get it to work. Conclusion: disable all Power Management
options and patch the kernel with Walt's pdcraid patch (attached). That will
do it. I think that Walt's patch should be included in the official kernel.
/Nicke
-----Original Message-----
From: linux-kernel-owner@vger.kernel.org
[mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of Walt H
Sent: den 23 december 2003 04:47
To: Nicklas Bondesson
Cc: linux-kernel@vger.kernel.org
Subject: Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000
(PDC20271)
Nicklas Bondesson wrote:
> The patch did not work for me, in fact there was no change at all
> (anything affected to me). The Promise ataraid driver never gets loaded.
>
> /Nicke
Not sure what else to try. I see that you've already posted to the ata-raid
list, so I'd hope that somebody else would reply from there. The pdcraid
driver has not received much attention lately, so it may very well be broken
for your configuration. Promise has released a binary/source combo driver
similar to Nvidia's that will still work in 2.4 - you might give that a try.
I have a
PDC20276 based onboard raid setup, however, I use 2.6 with device mapper to
use it. It's a bit of a pain to setup ATM - especially if you want to boot
from it, but it can be done. Good luck,
-Walt
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[-- Attachment #2: pdcraid.patch --]
[-- Type: application/octet-stream, Size: 628 bytes --]
--- /usr/src/temp/linux-2.4.21-xfs/linux/drivers/ide/raid/pdcraid.c 2003-12-22 17:59:09.653139067 -0800
+++ linux/drivers/ide/raid/pdcraid.c 2003-07-21 20:47:14.000000000 -0700
@@ -361,7 +361,11 @@
if (ideinfo->sect==0)
return 0;
- lba = (ideinfo->capacity / (ideinfo->head*ideinfo->sect));
- lba = lba * (ideinfo->head*ideinfo->sect);
- lba = lba - ideinfo->sect;
+ if (ideinfo->head!=255) {
+ lba = (ideinfo->capacity / (ideinfo->head*ideinfo->sect));
+ lba = lba * (ideinfo->head*ideinfo->sect);
+ lba = lba - ideinfo->sect; }
+ else {
+ lba = ideinfo->capacity - ideinfo->sect;
+ }
return lba;
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-23 13:56 ` Nicklas Bondesson
@ 2003-12-23 15:05 ` Walt H
2003-12-23 16:10 ` Nicklas Bondesson
0 siblings, 1 reply; 26+ messages in thread
From: Walt H @ 2003-12-23 15:05 UTC (permalink / raw)
To: Nicklas Bondesson; +Cc: linux-kernel, 'Andre Hedrick'
Nicklas Bondesson wrote:
> The fix for me was to disable all "Power Management" in the kernel and
> re-compile it. Works like a charm now :)
>
> Hope this can help anyone else with the same problem as me. But again, I
> think someone should take a look at it cos I think this is a bug for sure.
>
> /Nicke
>
Nicke,
Glad to hear you got it working. Check out http://acpi.sourceforge.net for acpi
related information. If you can get it working with acpi=off and it doesn't when
you don't pass that flag, I'd say that there's at least something fishy
happening with acpi on your machine.
As for getting it running on 2.6 with dm, the only way I know of is to create a
custom initrd file by hand. You have to compile the lvm-dm tools statically and
create mappings first. Then in the linuxrc script, you need run dmsetup and
point it at the config files to create the devices. Until this is handled better
it's not really recommended. Good luck,
-Walt
^ permalink raw reply [flat|nested] 26+ messages in thread
* RE: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-23 15:05 ` Walt H
@ 2003-12-23 16:10 ` Nicklas Bondesson
2003-12-24 0:54 ` Walt H
0 siblings, 1 reply; 26+ messages in thread
From: Nicklas Bondesson @ 2003-12-23 16:10 UTC (permalink / raw)
To: 'Walt H'; +Cc: linux-kernel, 'Andre Hedrick'
Thanks for the info, but yet I had to go with your patch to get it up and
running. I think the patch should be included in the official kernel
release.
Who should we send this to?
/Nicke
-----Original Message-----
From: linux-kernel-owner@vger.kernel.org
[mailto:linux-kernel-owner@vger.kernel.org] On Behalf Of Walt H
Sent: den 23 december 2003 16:06
To: Nicklas Bondesson
Cc: linux-kernel@vger.kernel.org; 'Andre Hedrick'
Subject: Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000
(PDC20271)
Nicklas Bondesson wrote:
> The fix for me was to disable all "Power Management" in the kernel and
> re-compile it. Works like a charm now :)
>
> Hope this can help anyone else with the same problem as me. But again,
> I think someone should take a look at it cos I think this is a bug for
sure.
>
> /Nicke
>
Nicke,
Glad to hear you got it working. Check out http://acpi.sourceforge.net for
acpi related information. If you can get it working with acpi=off and it
doesn't when you don't pass that flag, I'd say that there's at least
something fishy happening with acpi on your machine.
As for getting it running on 2.6 with dm, the only way I know of is to
create a custom initrd file by hand. You have to compile the lvm-dm tools
statically and create mappings first. Then in the linuxrc script, you need
run dmsetup and point it at the config files to create the devices. Until
this is handled better it's not really recommended. Good luck,
-Walt
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-23 16:10 ` Nicklas Bondesson
@ 2003-12-24 0:54 ` Walt H
0 siblings, 0 replies; 26+ messages in thread
From: Walt H @ 2003-12-24 0:54 UTC (permalink / raw)
To: Nicklas Bondesson; +Cc: linux-kernel, 'Andre Hedrick'
Nicklas Bondesson wrote:
> Thanks for the info, but yet I had to go with your patch to get it up and
> running. I think the patch should be included in the official kernel
> release.
>
> Who should we send this to?
>
> /Nicke
Hi Nicke,
It's been included in messages to ata-raid, however, I never sent it there
marked as PATCH. I suppose I should wrap it up, describe it and sent it off the
the ata-raid list for completeness. Maybe it'll save somebody else from the
process you just went through :)
-Walt
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
@ 2003-12-28 16:26 Nicklas Bondesson
2003-12-28 16:56 ` Marcelo Tosatti
0 siblings, 1 reply; 26+ messages in thread
From: Nicklas Bondesson @ 2003-12-28 16:26 UTC (permalink / raw)
To: linux-kernel
I really hope so :) I think you should wrap it up and send it to the list
marked as [PATCH].
Many thanks for the help again!
/Nicke
>Hi Nicke,
>
>It's been included in messages to ata-raid, however, I never sent it
>there marked as PATCH. I suppose I should wrap it up, describe it and
>sent it off the the ata-raid list for completeness. Maybe it'll save
>somebody else from the process you just went through :)
>
>-Walt
^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-28 16:26 Nicklas Bondesson
@ 2003-12-28 16:56 ` Marcelo Tosatti
2003-12-28 17:06 ` Nicklas Bondesson
0 siblings, 1 reply; 26+ messages in thread
From: Marcelo Tosatti @ 2003-12-28 16:56 UTC (permalink / raw)
To: Nicklas Bondesson; +Cc: linux-kernel, Bartlomiej Zolnierkiewicz
On Sun, 28 Dec 2003, Nicklas Bondesson wrote:
> I really hope so :) I think you should wrap it up and send it to the list
> marked as [PATCH].
>
> Many thanks for the help again!
Nicklas,
Have you tried to compile the kernel with CONFIG_PDC202XX_FORCE unset ?
^ permalink raw reply [flat|nested] 26+ messages in thread
* RE: Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271)
2003-12-28 16:56 ` Marcelo Tosatti
@ 2003-12-28 17:06 ` Nicklas Bondesson
0 siblings, 0 replies; 26+ messages in thread
From: Nicklas Bondesson @ 2003-12-28 17:06 UTC (permalink / raw)
To: 'Marcelo Tosatti', linux-kernel
Yes, if I remember it correctly I have tried that too. Should it make any
difference? It seems like the problem is related to disk geometry failure
(the kernel is not seeing the correct geometry values for the drives) since
the patch I got worked fine.
/Nicke
-----Original Message-----
From: Marcelo Tosatti [mailto:marcelo.tosatti@cyclades.com]
Sent: den 28 december 2003 17:57
To: Nicklas Bondesson
Cc: linux-kernel@vger.kernel.org; Bartlomiej Zolnierkiewicz
Subject: Re: Error mounting root fs on 72:01 using Promise FastTrak TX2000
(PDC20271)
On Sun, 28 Dec 2003, Nicklas Bondesson wrote:
> I really hope so :) I think you should wrap it up and send it to the
> list marked as [PATCH].
>
> Many thanks for the help again!
Nicklas,
Have you tried to compile the kernel with CONFIG_PDC202XX_FORCE unset ?
^ permalink raw reply [flat|nested] 26+ messages in thread
end of thread, other threads:[~2003-12-28 17:06 UTC | newest]
Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-12-20 19:44 Error mounting root fs on 72:01 using Promise FastTrak TX2000 (PDC20271) Walt H
2003-12-20 23:54 ` Nicklas Bondesson
2003-12-21 1:01 ` Walt H
2003-12-21 14:54 ` Nicklas Bondesson
2003-12-21 16:32 ` Walt H
2003-12-21 17:21 ` Nicklas Bondesson
2003-12-22 0:05 ` Nicklas Bondesson
2003-12-22 1:35 ` Walt H
2003-12-22 13:38 ` Nicklas Bondesson
2003-12-22 15:05 ` Walt H
2003-12-22 15:31 ` Nicklas Bondesson
2003-12-22 23:22 ` Nicklas Bondesson
2003-12-23 0:59 ` Nicklas Bondesson
2003-12-23 2:07 ` Walt H
2003-12-23 3:18 ` Nicklas Bondesson
2003-12-23 3:47 ` Walt H
2003-12-23 13:41 ` Nicklas Bondesson
2003-12-23 13:56 ` Nicklas Bondesson
2003-12-23 15:05 ` Walt H
2003-12-23 16:10 ` Nicklas Bondesson
2003-12-24 0:54 ` Walt H
2003-12-23 14:42 ` Nicklas Bondesson
-- strict thread matches above, loose matches on Subject: below --
2003-12-28 16:26 Nicklas Bondesson
2003-12-28 16:56 ` Marcelo Tosatti
2003-12-28 17:06 ` Nicklas Bondesson
2003-12-20 13:33 Nicklas Bondesson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox