Re: Alpha SCSI error on 2.4.0-test11

From: Andrea Arcangeli (andrea@suse.de)
Date: Thu Nov 30 2000 - 17:37:42 EST


On Thu, Nov 30, 2000 at 05:26:58PM -0500, Phillip Ezolt wrote:
> I'll give test12-pre3 a try and see if it fixes things.

test12-pre2 crashes at boot on my DS20. This patch workaround the problem
but I would be _very_ surprised if this is the right fix :) It's obviously not
meant for inclusion.

--- 2.4.0-test12-pre2-alpha/drivers/pci/setup-res.c.~1~ Tue Nov 28 18:40:29 2000
+++ 2.4.0-test12-pre2-alpha/drivers/pci/setup-res.c Wed Nov 29 03:15:45 2000
@@ -148,8 +148,11 @@
                         continue;
                 for (list = head; ; list = list->next) {
                         unsigned long size = 0;
- struct resource_list *ln = list->next;
+ struct resource_list *ln;
 
+ if (!list)
+ return;
+ ln = list->next;
                         if (ln)
                                 size = ln->res->end - ln->res->start;
                         if (r->end - r->start > size) {

I prefer to finish the ASN SMP rework before looking into this.

Andrea
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Thu Nov 30 2000 - 21:00:26 EST