Re: [dpdk-dev] [PATCH v9 03/12] telemetry: initial telemetry infrastructure

2018-10-26 Thread Thomas Monjalon
27/10/2018 04:19, Van Haaren, Harry: > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > 27/10/2018 01:59, Harry van Haaren: > > > --- a/mk/rte.vars.mk > > > +++ b/mk/rte.vars.mk > > > +JANSSON := $(shell pkg-config --exists jansson; echo $$?) > > > +ifneq ($(JANSSON),0) > > > +$(warning Janss

Re: [dpdk-dev] [PATCH v9 03/12] telemetry: initial telemetry infrastructure

2018-10-26 Thread Van Haaren, Harry
; gaetan.ri...@6wind.com; shreyansh.j...@nxp.com; > mattias.ronnb...@ericsson.com; Ciara Power ; Brian > Archbold > Subject: Re: [dpdk-dev] [PATCH v9 03/12] telemetry: initial telemetry > infrastructure > > 27/10/2018 01:59, Harry van Haaren: > > --- a/mk/rte.vars.mk > > +

Re: [dpdk-dev] [PATCH v9 03/12] telemetry: initial telemetry infrastructure

2018-10-26 Thread Thomas Monjalon
27/10/2018 01:59, Harry van Haaren: > --- a/mk/rte.vars.mk > +++ b/mk/rte.vars.mk > +JANSSON := $(shell pkg-config --exists jansson; echo $$?) > +ifneq ($(JANSSON),0) > +$(warning Jansson not found, disabling RTE_LIBRTE_TELEMETRY) > +CONFIG_RTE_LIBRTE_TELEMETRY = n > +endif It fails for cross-comp

[dpdk-dev] [PATCH v9 03/12] telemetry: initial telemetry infrastructure

2018-10-26 Thread Harry van Haaren
From: Ciara Power This patch adds the infrastructure and initial code for the telemetry library. The telemetry init is registered with eal_init(). We can then check to see if --telemetry was passed as an eal option. If --telemetry was parsed, then we call telemetry init at the end of eal init.