vfio: add stdbool include
authorChristian Ehrhardt <christian.ehrhardt@canonical.com>
Tue, 1 Jun 2021 08:28:25 +0000 (10:28 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 17 Jun 2021 08:31:33 +0000 (10:31 +0200)
commit31c5af644b1a209cb720dc62f70a51d84a4f979b
tree195135385b5675f320383d3ae82736bbe146b303
parent478614ee1f62e172c4d4770f157fc9bbb6563523
vfio: add stdbool include

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
<stdbool.h>", but rte_vfio.h has no direct paths to stdbool.h.
It happens that in eal_vfio_mp_sync.c it comes after "#include
<rte_log.h>".

And rte_log.h since 20.05 includes stdbool since this change:
 241e67bfe "log: add API to check if a logtype can log in a given level"
and thereby mitigates the issue.

It should be safe to include stdbool.h from rte_vfio.h itself
to be present exactly when needed for the struct it defines using that
type.

Fixes: c13ca4e81cac ("vfio: fix DMA mapping granularity for IOVA as VA")
Cc: stable@dpdk.org
Signed-off-by: Christian Ehrhardt <christian.ehrhardt@canonical.com>
Acked-by: Anatoly Burakov <anatoly.burakov@intel.com>
lib/eal/include/rte_vfio.h