On Thu, Jan 19, 2023 at 4:08 PM Robin Jarry <rja...@redhat.com> wrote: > > Report the same information than rte_lcore_dump() in the telemetry > API into /eal/lcore/list and /eal/lcore/info,ID. > > Example: > > --> /eal/lcore/info,3 > { > "/eal/lcore/info": { > "lcore_id": 3, > "socket": 0, > "role": "RTE", > "cpuset": [ > 3 > ] > } > } > > Signed-off-by: Robin Jarry <rja...@redhat.com> > Acked-by: Morten Brørup <m...@smartsharesystems.com> > --- > > Notes: > v5 -> v6: No change > > lib/eal/common/eal_common_lcore.c | 96 +++++++++++++++++++++++++++++++ > 1 file changed, 96 insertions(+) > > diff --git a/lib/eal/common/eal_common_lcore.c > b/lib/eal/common/eal_common_lcore.c > index 06c594b0224f..16548977dce8 100644 > --- a/lib/eal/common/eal_common_lcore.c > +++ b/lib/eal/common/eal_common_lcore.c > @@ -10,6 +10,9 @@ > #include <rte_errno.h> > #include <rte_lcore.h> > #include <rte_log.h> > +#ifndef RTE_EXEC_ENV_WINDOWS > +#include <rte_telemetry.h> > +#endif > > #include "eal_private.h" > #include "eal_thread.h" > @@ -456,3 +459,96 @@ rte_lcore_dump(FILE *f) > { > rte_lcore_iterate(lcore_dump_cb, f); > } > + > +#ifndef RTE_EXEC_ENV_WINDOWS > +static int > +lcore_telemetry_id_cb(unsigned int lcore_id, void *arg) > +{ > + struct rte_tel_data *d = arg; > + return rte_tel_data_add_array_int(d, lcore_id); > +} > + > +static int > +handle_lcore_list(const char *cmd __rte_unused, > + const char *params __rte_unused, > + struct rte_tel_data *d)
Indent should be single tab. > +{ > + int ret = rte_tel_data_start_array(d, RTE_TEL_INT_VAL); > + if (ret) > + return ret; > + return rte_lcore_iterate(lcore_telemetry_id_cb, d); > +} > + > +struct lcore_telemetry_info { > + unsigned int lcore_id; > + struct rte_tel_data *d; > +}; > + > +static int > +lcore_telemetry_info_cb(unsigned int lcore_id, void *arg) > +{ > + struct lcore_telemetry_info *info = arg; > + struct rte_config *cfg = rte_eal_get_configuration(); > + struct rte_tel_data *cpuset; > + const char *role; > + unsigned int cpu; When possible, reverse xmas tree please. > + > + if (info->lcore_id != lcore_id) > + return 0; > + > + switch (cfg->lcore_role[lcore_id]) { > + case ROLE_RTE: > + role = "RTE"; > + break; > + case ROLE_SERVICE: > + role = "SERVICE"; > + break; > + case ROLE_NON_EAL: > + role = "NON_EAL"; > + break; > + default: > + role = "UNKNOWN"; > + break; > + } Please put this translation block in a helper to avoid duplicating with lcore_dump_cb. > + rte_tel_data_start_dict(info->d); > + rte_tel_data_add_dict_int(info->d, "lcore_id", lcore_id); > + rte_tel_data_add_dict_int(info->d, "socket", > rte_lcore_to_socket_id(lcore_id)); > + rte_tel_data_add_dict_string(info->d, "role", role); > + cpuset = rte_tel_data_alloc(); > + if (!cpuset) > + return -ENOMEM; > + rte_tel_data_start_array(cpuset, RTE_TEL_INT_VAL); > + for (cpu = 0; cpu < CPU_SETSIZE; cpu++) > + if (CPU_ISSET(cpu, &lcore_config[lcore_id].cpuset)) > + rte_tel_data_add_array_int(cpuset, cpu); > + rte_tel_data_add_dict_container(info->d, "cpuset", cpuset, 0); > + > + return 0; > +} > + > +static int > +handle_lcore_info(const char *cmd __rte_unused, const char *params, struct > rte_tel_data *d) > +{ > + struct lcore_telemetry_info info = { .d = d }; > + char *endptr = NULL; Missing a newline. > + if (params == NULL || strlen(params) == 0) > + return -EINVAL; > + errno = 0; > + info.lcore_id = strtoul(params, &endptr, 10); > + if (errno) > + return -errno; > + if (endptr == params) > + return -EINVAL; > + return rte_lcore_iterate(lcore_telemetry_info_cb, &info); > +} > + > +RTE_INIT(lcore_telemetry) > +{ > + rte_telemetry_register_cmd( > + "/eal/lcore/list", handle_lcore_list, > + "List of lcore ids. Takes no parameters"); Please fix indent. > + rte_telemetry_register_cmd( > + "/eal/lcore/info", handle_lcore_info, > + "Returns lcore info. Parameters: int lcore_id"); > +} > +#endif /* !RTE_EXEC_ENV_WINDOWS */ > -- > 2.39.0 > -- David Marchand