On Mon, 2002-08-19 at 23:53, Samuel Flory wrote:
> I've been having problem with the ac kernels, and tyan 2720. (Dual
> xeon E7500 chipset.) Under 2.4.20-pre2-ac4 it spews a bunch of "Trying
> to free nonexistent resource" when initializing the ide interface, and
Those are on my fix list but harmless
> dies. Under 2.4.19-ac4 the system netboots, but oops when I attempt to
> create a filesystem on a 3ware controller. Under 2.4.19 the system
2.4.19-ac4 balancing oops is fixed (I turned it off)
> ksymoops 2.4.4 on i686 2.4.20-pre2-ac3. Options used
> -v /stuff/src/linux-2.4.20-pre2-ac4/vmlinux (specified)
> -K (specified)
> -L (specified)
> -O (specified)
> -m /boot/System.map-2.4.20-pre2-ac4 (specified)
>
Ok random crap code. You had no pci_host_proc_list and that rather upset
things. This converts the failing code it into something resembling same
programming I hope and should fix your boot
Please let me know if it fixes the bug
--=-S/ZPZjtr2auJKUTN6AJV
Content-Disposition: attachment; filename=a1
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain; name=a1; charset=ISO-8859-15
--- drivers/ide/ide-proc.c~ 2002-08-20 00:48:53.000000000 +0100
+++ drivers/ide/ide-proc.c 2002-08-20 00:48:53.000000000 +0100
@@ -914,11 +914,14 @@
proc_ide_read_drivers, NULL);
=20
#ifdef CONFIG_BLK_DEV_IDEPCI
- while ((p->name !=3D NULL) && (p->set) && (p->get_info !=3D NULL)) {
- p->parent =3D proc_ide_root;
- create_proc_info_entry(p->name, 0, p->parent, p->get_info);
- p->set =3D 2;
- if (p->next =3D=3D NULL) return;
+ while (p !=3D NULL)
+ {
+ if (p->name !=3D NULL && p->set && p->get_info !=3D NULL)=20
+ {
+ p->parent =3D proc_ide_root;
+ create_proc_info_entry(p->name, 0, p->parent, p->get_info);
+ p->set =3D 2;
+ }
p =3D p->next;
}
#endif /* CONFIG_BLK_DEV_IDEPCI */
--=-S/ZPZjtr2auJKUTN6AJV--
-
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/