mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 01:04:19 +08:00
x86/PCI: reduce severity of host bridge window conflict warnings
Host bridge windows are top-level resources, so if we find a host bridge window conflict, it's probably with a hard-coded legacy reservation. Moving host bridge windows is theoretically possible, but we don't support it; we just ignore windows with conflicts, and it's not worth making this a user-visible error. Reported-and-tested-by: Jools Wills <jools@oxfordinspire.co.uk> References: https://bugzilla.kernel.org/show_bug.cgi?id=38522 Reported-by: Das <dasfox@gmail.com> References: https://bugzilla.kernel.org/show_bug.cgi?id=16497 Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
This commit is contained in:
parent
b1a98b695b
commit
43d786ed4d
@ -246,10 +246,9 @@ static void add_resources(struct pci_root_info *info)
|
|||||||
|
|
||||||
conflict = insert_resource_conflict(root, res);
|
conflict = insert_resource_conflict(root, res);
|
||||||
if (conflict)
|
if (conflict)
|
||||||
dev_err(&info->bridge->dev,
|
dev_info(&info->bridge->dev,
|
||||||
"address space collision: host bridge window %pR "
|
"ignoring host bridge window %pR (conflicts with %s %pR)\n",
|
||||||
"conflicts with %s %pR\n",
|
res, conflict->name, conflict);
|
||||||
res, conflict->name, conflict);
|
|
||||||
else
|
else
|
||||||
pci_bus_add_resource(info->bus, res, 0);
|
pci_bus_add_resource(info->bus, res, 0);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user