Re: [PATCH v5 07/10] libxl: Only map legacy PCI IRQs if they are supported

2021-11-02 Thread Oleksandr Andrushchenko
On 02.11.21 13:32, Jan Beulich wrote: > On 25.10.2021 15:38, Oleksandr Andrushchenko wrote: >> On 25.10.21 16:22, Roger Pau Monné wrote: >>> On Fri, Oct 08, 2021 at 08:55:32AM +0300, Oleksandr Andrushchenko wrote: --- a/tools/libs/light/libxl_pci.c +++ b/tools/libs/light/libxl_pci.c

Re: [PATCH v5 07/10] libxl: Only map legacy PCI IRQs if they are supported

2021-11-02 Thread Jan Beulich
On 25.10.2021 15:38, Oleksandr Andrushchenko wrote: > On 25.10.21 16:22, Roger Pau Monné wrote: >> On Fri, Oct 08, 2021 at 08:55:32AM +0300, Oleksandr Andrushchenko wrote: >>> --- a/tools/libs/light/libxl_pci.c >>> +++ b/tools/libs/light/libxl_pci.c >>> @@ -1364,6 +1364,15 @@ static void

Re: [PATCH v5 07/10] libxl: Only map legacy PCI IRQs if they are supported

2021-10-25 Thread Roger Pau Monné
On Mon, Oct 25, 2021 at 01:38:19PM +, Oleksandr Andrushchenko wrote: > Hi, Roger! > > On 25.10.21 16:22, Roger Pau Monné wrote: > > On Fri, Oct 08, 2021 at 08:55:32AM +0300, Oleksandr Andrushchenko wrote: > >> From: Oleksandr Andrushchenko > >> > >> Arm's PCI passthrough implementation

Re: [PATCH v5 07/10] libxl: Only map legacy PCI IRQs if they are supported

2021-10-25 Thread Oleksandr Andrushchenko
Hi, Roger! On 25.10.21 16:22, Roger Pau Monné wrote: > On Fri, Oct 08, 2021 at 08:55:32AM +0300, Oleksandr Andrushchenko wrote: >> From: Oleksandr Andrushchenko >> >> Arm's PCI passthrough implementation doesn't support legacy interrupts, >> but MSI/MSI-X. This can be the case for other

Re: [PATCH v5 07/10] libxl: Only map legacy PCI IRQs if they are supported

2021-10-25 Thread Roger Pau Monné
On Fri, Oct 08, 2021 at 08:55:32AM +0300, Oleksandr Andrushchenko wrote: > From: Oleksandr Andrushchenko > > Arm's PCI passthrough implementation doesn't support legacy interrupts, > but MSI/MSI-X. This can be the case for other platforms too. > For that reason introduce a new

Re: [PATCH v5 07/10] libxl: Only map legacy PCI IRQs if they are supported

2021-10-11 Thread Stefano Stabellini
On Mon, 11 Oct 2021, Anthony PERARD wrote: > On Fri, Oct 08, 2021 at 08:55:32AM +0300, Oleksandr Andrushchenko wrote: > > From: Oleksandr Andrushchenko > > > > Arm's PCI passthrough implementation doesn't support legacy interrupts, > > but MSI/MSI-X. This can be the case for other platforms too.

Re: [PATCH v5 07/10] libxl: Only map legacy PCI IRQs if they are supported

2021-10-11 Thread Anthony PERARD
On Fri, Oct 08, 2021 at 08:55:32AM +0300, Oleksandr Andrushchenko wrote: > From: Oleksandr Andrushchenko > > Arm's PCI passthrough implementation doesn't support legacy interrupts, > but MSI/MSI-X. This can be the case for other platforms too. > For that reason introduce a new

[PATCH v5 07/10] libxl: Only map legacy PCI IRQs if they are supported

2021-10-07 Thread Oleksandr Andrushchenko
From: Oleksandr Andrushchenko Arm's PCI passthrough implementation doesn't support legacy interrupts, but MSI/MSI-X. This can be the case for other platforms too. For that reason introduce a new CONFIG_PCI_SUPP_LEGACY_IRQ and add it to the CFLAGS and compile the relevant code in the toolstack