Re: 2.5.41 oops on reboot

From: Maciej Babinski (maciej@imsa.edu)
Date: Wed Oct 09 2002 - 03:39:42 EST


This patch alone doesn't fix it, but the big one does. Thanks!
                                                                                                -Maciej

On Tue, Oct 08, 2002 at 05:35:17PM -0700, Patrick Mochel wrote:
> This has been reported a couple of times, and I posted a patch yesterday
> that should fix this. Could you try this (must more narrow-focused) patch
> and let me know if it fixes the problem?
>
> Thanks
>
> -pat
>
> ChangeSet@1.696.19.1, 2002-10-07 09:52:31-07:00, mochel@osdl.org
> IDE: only register drives that are present with the driver core.
>
> diff -Nru a/drivers/ide/ide-probe.c b/drivers/ide/ide-probe.c
> --- a/drivers/ide/ide-probe.c Mon Oct 7 12:19:16 2002
> +++ b/drivers/ide/ide-probe.c Mon Oct 7 12:19:16 2002
> @@ -986,8 +986,8 @@
> "%s","IDE Drive");
> disk->disk_dev.parent = &hwif->gendev;
> disk->disk_dev.bus = &ide_bus_type;
> - device_register(&disk->disk_dev);
> -
> + if (hwif->drives[unit].present)
> + device_register(&disk->disk_dev);
> hwif->drives[unit].disk = disk;
> }
>
>
> -
> 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/
-
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/



This archive was generated by hypermail 2b29 : Tue Oct 15 2002 - 22:00:30 EST