Description of problem: When the XO boots there is a message printed that is overwritten with the booting bar (thus there can be mistakes in the text). (Something) dhcp-pci: 0000-0-0c.1 Invalid iomem size. You may experince problems Version-Release number of selected component (if applicable): Fedora 10 Snap 3 on XO How reproducible: Always during boot Steps to Reproduce: 1. Boot the XO and carefully monitor lower part of screen overwritten with progress bar
This is also present in the base OLPC kernel and doesn't seem to cause any problems. I wonder if we should just drop it from being an error to being lower priority (warning or debug). The length of the bar on the olpc is longer than expected which really seems like it shouldn't be an error case. Something like diff --git a/drivers/mmc/host/sdhci-pci.c b/drivers/mmc/host/sdhci-pci.c index 9bd7026..b0dce16 100644 --- a/drivers/mmc/host/sdhci-pci.c +++ b/drivers/mmc/host/sdhci-pci.c @@ -506,7 +506,7 @@ static struct sdhci_pci_slot * __devinit sdhci_pci_probe_slot( } if (pci_resource_len(pdev, bar) != 0x100) { - dev_err(&pdev->dev, "Invalid iomem size. You may " + pr_debug(&pdev->dev, "Invalid iomem size. You may " "experience problems.\n"); }
Pierre -- do you have any ideas here? Things are definitely working fine, the warning during boot just isn't pretty.
You can remove the warning for OLPC kernels (where it has been verified to be ok), but in the general case it should stay. It should probably be downgraded to a dev_warn() though.