On Sun, Feb 04, 2018 at 09:03:09PM +0530, Pavan Nikhilesh wrote: > Register octeontx-fpavf as platform HW mempool when net/octeontx pmd is > used. > > Signed-off-by: Pavan Nikhilesh <pbhagavat...@caviumnetworks.com> > --- > > v2 Changes: > - fixed compilation issues caused by using experimental API in both meson and > make. > > drivers/net/octeontx/Makefile | 2 ++ > drivers/net/octeontx/meson.build | 2 ++ > drivers/net/octeontx/octeontx_ethdev.c | 2 ++ > 3 files changed, 6 insertions(+) > > diff --git a/drivers/net/octeontx/Makefile b/drivers/net/octeontx/Makefile > index b47bf7a40..3e4a10662 100644 > --- a/drivers/net/octeontx/Makefile > +++ b/drivers/net/octeontx/Makefile > @@ -43,6 +43,8 @@ else > CFLAGS_octeontx_rxtx.o += -O3 -Ofast > endif > > +CFLAGS_octeontx_ethdev.o += -DALLOW_EXPERIMENTAL_API > + > LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring > LDLIBS += -lrte_ethdev -lrte_net -lrte_kvargs > LDLIBS += -lrte_mempool_octeontx > diff --git a/drivers/net/octeontx/meson.build > b/drivers/net/octeontx/meson.build > index ef789eaa9..135e63e2f 100644 > --- a/drivers/net/octeontx/meson.build > +++ b/drivers/net/octeontx/meson.build > @@ -8,6 +8,8 @@ sources = files('octeontx_rxtx.c', > 'octeontx_ethdev.c' > ) > > +cflags += '-DALLOW_EXPERIMENTAL_API' > +
Rather than having each driver modify cflags, I've set up the variable "allow_experimental_apis" in the top-level meson.build file. So just put allow_experimental_apis = true in your driver file. /Bruce