From: mannthey@us.ibm.com
To: gone@us.ibm.com
Cc: linux-kernel@vger.kernel.org
Subject: Re: 2.4.20pre5 not booting on numa-q with CONFIG_MULTIQUAD
Date: Thu, 5 Sep 2002 18:44:38 -0400 [thread overview]
Message-ID: <1031265878.3d77de5627864@imap.linux.ibm.com> (raw)
In-Reply-To: <200209052221.g85MLAQ04867@w-gaughen.beaverton.ibm.com>
Quoting Patricia Gaughen <gone@us.ibm.com>:
>
> Hi,
>
> 2.4.20pre4 booted fine for me, but 2.4.20pre5 is not booting on the numa-q
> boxes when I turn on CONFIG_MULTIQUAD. I've included the messages that I see
Hello Pat,
I am not familiar with this are of the code either but I found a while loop
if some recent pci changes that seemed backwards. The following patch should
allow you to boot.
diff -urN linux-2.4.19/drivers/pci/pci.c linux-2.4.20-pre5/drivers/pci/pci.c
--- linux-2.4.20-pre5/drivers/pci/pci.c Sat Sep 7 06:29:04 2002
+++ linux-2.4.20-pre5-test/drivers/pci/pci.c Sat Sep 7 06:10:26 2002
@@ -586,7 +586,7 @@
i + 1, /* PCI BAR # */
pci_resource_len(pdev, i), pci_resource_start(pdev, i),
pdev->slot_name);
- while(--i <= 0)
+ while(--i >= 0)
pci_release_region(pdev, i);
return -EBUSY;
Keith
next parent reply other threads:[~2002-09-05 22:40 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <200209052221.g85MLAQ04867@w-gaughen.beaverton.ibm.com>
2002-09-05 22:44 ` mannthey [this message]
2002-09-05 23:11 ` 2.4.20pre5 not booting on numa-q with CONFIG_MULTIQUAD Alan Cox
2002-09-05 23:43 ` Patricia Gaughen
2002-09-03 21:02 Patricia Gaughen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1031265878.3d77de5627864@imap.linux.ibm.com \
--to=mannthey@us.ibm.com \
--cc=gone@us.ibm.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.