Re: [dpdk-dev] [PATCH v2] vfio: fix stdbool usage without include

2021-06-17 Thread Thomas Monjalon
02/06/2021 13:06, Burakov, Anatoly: > On 01-Jun-21 9:28 AM, Christian Ehrhardt wrote: > > This became visible by backporting the following for the 19.11 stable tree: > > c13ca4e8 "vfio: fix DMA mapping granularity for IOVA as VA" > > > > The usage of type bool in the vfio code would require "#in

Re: [dpdk-dev] [PATCH v2] vfio: fix stdbool usage without include

2021-06-02 Thread Burakov, Anatoly
On 01-Jun-21 9:28 AM, Christian Ehrhardt wrote: This became visible by backporting the following for the 19.11 stable tree: c13ca4e8 "vfio: fix DMA mapping granularity for IOVA as VA" The usage of type bool in the vfio code would require "#include ", but rte_vfio.h has no direct paths to stdbo

[dpdk-dev] [PATCH v2] vfio: fix stdbool usage without include

2021-06-01 Thread Christian Ehrhardt
This became visible by backporting the following for the 19.11 stable tree: c13ca4e8 "vfio: fix DMA mapping granularity for IOVA as VA" The usage of type bool in the vfio code would require "#include ", but rte_vfio.h has no direct paths to stdbool.h. It happens that in eal_vfio_mp_sync.c it come

[dpdk-dev] [PATCH v2] vfio: fix stdbool usage without include

2021-06-01 Thread Christian Ehrhardt
This became visible by backporting the following for the 19.11 stable tree: c13ca4e8 "vfio: fix DMA mapping granularity for IOVA as VA" The usage of type bool in the vfio code would require "#include ", but rte_vfio.h has no direct paths to stdbool.h. It happens that in eal_vfio_mp_sync.c it come