Re: [PATCH] pci: fix handling of PCI bridges with subordinate bus number 0xff

2021-09-23 Thread Jan Beulich
On 24.09.2021 03:06, Igor Druzhinin wrote: > --- a/xen/drivers/passthrough/pci.c > +++ b/xen/drivers/passthrough/pci.c > @@ -364,7 +364,7 @@ static struct pci_dev *alloc_pdev(struct pci_seg *pseg, > u8 bus, u8 devfn) > switch ( pdev->type = pdev_type(pseg->nr, bus, devfn) ) > { >

[PATCH] pci: fix handling of PCI bridges with subordinate bus number 0xff

2021-09-23 Thread Igor Druzhinin
Bus number 0xff is valid according to the PCI spec. Using u8 typed sub_bus and assigning 0xff to it will result in the following loop getting stuck. for ( ; sec_bus <= sub_bus; sec_bus++ ) {...} Just change its type to u16 the same way that is already handled in dmar_scope_add_buses(). Signe