Hi David, I will add your code.
Thanks, Ori > -----Original Message----- > From: David Christensen <d...@linux.vnet.ibm.com> > Sent: Tuesday, April 28, 2020 9:20 PM > To: Ori Kam <or...@mellanox.com>; Thomas Monjalon > <tho...@monjalon.net>; Matan Azrad <ma...@mellanox.com>; Shahaf > Shuler <shah...@mellanox.com>; Slava Ovsiienko > <viachesl...@mellanox.com> > Cc: dev@dpdk.org; ferruh.yi...@intel.com > Subject: Re: [PATCH] eal/ppc: fix redefine bool type > > > Fixes: 725f5dd0bfb5 ("net/mlx5: fix build on PPC64") > > > > Signed-off-by: Ori Kam <or...@mellanox.com> > > --- > > There are a couple of other uses that should be covered in the patch: > > diff --git a/drivers/net/i40e/i40e_rxtx_vec_altivec.c > b/drivers/net/i40e/i40e_rxtx_vec_altivec.c > index 5fa92bf92..72bd410fc 100644 > --- a/drivers/net/i40e/i40e_rxtx_vec_altivec.c > +++ b/drivers/net/i40e/i40e_rxtx_vec_altivec.c > @@ -13,7 +13,7 @@ > #include "i40e_rxtx.h" > #include "i40e_rxtx_vec_common.h" > > -#include <altivec.h> > +#include "rte_altivec.h" > > #pragma GCC diagnostic ignored "-Wcast-qual" > > > diff --git a/drivers/net/virtio/virtio_rxtx_simple_altivec.c > b/drivers/net/virtio/virtio_rxtx_simple_altivec.c > index 47225f412..b2bdd05c8 100644 > --- a/drivers/net/virtio/virtio_rxtx_simple_altivec.c > +++ b/drivers/net/virtio/virtio_rxtx_simple_altivec.c > @@ -9,7 +9,7 @@ > #include <string.h> > #include <errno.h> > > -#include <altivec.h> > +#include "rte_altivec.h" > > #include <rte_byteorder.h> > #include <rte_branch_prediction.h> > > Dave