Hi Bruce, >-----Original Message----- >From: Richardson, Bruce <[email protected]> >Sent: Tuesday 5 October 2021 14:59 >To: [email protected] >Cc: Power, Ciara <[email protected]>; David Marchand ><[email protected]>; Burakov, Anatoly ><[email protected]>; Kevin Traynor <[email protected]>; >Richardson, Bruce <[email protected]> >Subject: [PATCH v6 1/5] eal: limit telemetry to primary processes > >Telemetry interface should be exposed for primary processes only, since >secondary processes will conflict on socket creation, and since all data in >secondary process is generally available to primary. For example, all device >stats >for ethdevs, cryptodevs, etc. will all be common across processes. > >Signed-off-by: Bruce Richardson <[email protected]> >--- > lib/eal/freebsd/eal.c | 2 +- > lib/eal/linux/eal.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/lib/eal/freebsd/eal.c b/lib/eal/freebsd/eal.c index >6cee5ae369..b06a2c1662 100644 >--- a/lib/eal/freebsd/eal.c >+++ b/lib/eal/freebsd/eal.c >@@ -946,7 +946,7 @@ rte_eal_init(int argc, char **argv) > rte_eal_init_alert("Cannot clear runtime directory"); > return -1; > } >- if (!internal_conf->no_telemetry) { >+ if (rte_eal_process_type() == RTE_PROC_PRIMARY && >+!internal_conf->no_telemetry) { > int tlog = rte_log_register_type_and_pick_level( > "lib.telemetry", RTE_LOG_WARNING); > if (tlog < 0) >diff --git a/lib/eal/linux/eal.c b/lib/eal/linux/eal.c index >3577eaeaa4..0d0fc66668 >100644 >--- a/lib/eal/linux/eal.c >+++ b/lib/eal/linux/eal.c >@@ -1320,7 +1320,7 @@ rte_eal_init(int argc, char **argv) > rte_eal_init_alert("Cannot clear runtime directory"); > return -1; > } >- if (!internal_conf->no_telemetry) { >+ if (rte_eal_process_type() == RTE_PROC_PRIMARY && >+!internal_conf->no_telemetry) { > int tlog = rte_log_register_type_and_pick_level( > "lib.telemetry", RTE_LOG_WARNING); > if (tlog < 0) >-- >2.30.2
Good idea, thanks! Acked-by: Ciara Power <[email protected]>

