Re: [PATCH v4 1/3] xen/pci: Move x86 specific code to x86 directory.

2020-11-27 Thread Jan Beulich
On 25.11.2020 19:16, Rahul Singh wrote: > --- a/xen/drivers/passthrough/pci.c > +++ b/xen/drivers/passthrough/pci.c > @@ -14,9 +14,6 @@ > * this program; If not, see . > */ > > -#include > -#include > -#include > #include > #include > #include At least

Re: [PATCH v4 1/3] xen/pci: Move x86 specific code to x86 directory.

2020-11-26 Thread Bertrand Marquis
> On 25 Nov 2020, at 18:16, Rahul Singh wrote: > > passthrough/pci.c file is common for all architecture, but there is x86 > specific code in this file. > > Move x86 specific code to the drivers/passthrough/io.c file to avoid > compilation error for other architecture. > > As drivers/passthr

Re: [PATCH v4 1/3] xen/pci: Move x86 specific code to x86 directory.

2020-11-25 Thread Stefano Stabellini
On Wed, 25 Nov 2020, Rahul Singh wrote: > passthrough/pci.c file is common for all architecture, but there is x86 > specific code in this file. > > Move x86 specific code to the drivers/passthrough/io.c file to avoid > compilation error for other architecture. > > As drivers/passthrough/io.c is c

[PATCH v4 1/3] xen/pci: Move x86 specific code to x86 directory.

2020-11-25 Thread Rahul Singh
passthrough/pci.c file is common for all architecture, but there is x86 specific code in this file. Move x86 specific code to the drivers/passthrough/io.c file to avoid compilation error for other architecture. As drivers/passthrough/io.c is compiled only for x86 move it to x86 directory and rena