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

2021-06-01 Thread Christian Ehrhardt
On Tue, Jun 1, 2021 at 9:25 AM Thomas Monjalon wrote: > > 01/06/2021 07:42, 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 req

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

2021-06-01 Thread Thomas Monjalon
01/06/2021 07:42, 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.

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

2021-05-31 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