https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=285007
John Baldwin <j...@freebsd.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Open |In Progress Assignee|a...@freebsd.org |j...@freebsd.org --- Comment #3 from John Baldwin <j...@freebsd.org> --- This is odd. The warning is because I did not expect this case. PCI-PCI bridges always use the first bus in their decoded range as "their" bus number (the range of decoded bus numbers is defined by the "secbus" register containing the bridge's child bus number through "subbus"). It's true that there is no "standard" for how this should work for host bridges as host bridges aren't defined in the PCI spec. It also looks like we don't see any device behind this bridge. You could try changing the condition to be: if (sc->ap_bus < start || sc->ap_bus > end) and see if you see devices behind this bridge in your dmesg (i.e. children of pci9) -- You are receiving this mail because: You are the assignee for the bug.