On Tuesday November 21, [EMAIL PROTECTED] wrote:
> On Monday November 20, [EMAIL PROTECTED] wrote:
> > Hi all. 2.4.0-test11 is crashing during bootup while
> > detecting my raid5 array. According to the EIP printed (assuming
> > I did it right), that's in the function xor_block().
> > 2.4.0-test10 works fine with the same .config. One of the
> > things in the change file for test11 is "make raid 5 work in himem
> > configs". Maybe that broke non himem configs?
> > My .config is attached. If anyone needs anymore information,
> > let me know.
>
> To fix:
>
>
> - in drivers/md/Makefile
>
> - find line that contains:
> raid5.o xor.o
>
> - swap the .o files to:
> xor.o raid5.o
>
> - recompile
> - reboot
> - be happy
>
> NeilBrown
Opp. No. I take that back.
It is a bit more complicated.
You have to get "xor.o" before "md.o", not before "raid5.o".
try:
--- drivers/md/Makefile 2000/11/20 23:04:31 1.1
+++ drivers/md/Makefile 2000/11/20 23:04:36
@@ -16,11 +16,11 @@
obj-n :=
obj- :=
-obj-$(CONFIG_BLK_DEV_MD) += md.o
obj-$(CONFIG_MD_LINEAR) += linear.o
obj-$(CONFIG_MD_RAID0) += raid0.o
obj-$(CONFIG_MD_RAID1) += raid1.o
obj-$(CONFIG_MD_RAID5) += raid5.o xor.o
+obj-$(CONFIG_BLK_DEV_MD) += md.o
obj-$(CONFIG_BLK_DEV_LVM) += lvm-mod.o
# Translate to Rules.make lists.
NeilBrown
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/