[dpdk-dev] [PATCH] eventdev: support telemetry with xstats info

Power, Ciara ciara.power at intel.com
Thu Sep 17 11:04:40 CEST 2020


Hi Mike,

See comment inline.

Asides from that comment, overall the change looks good from a Telemetry usage point of view, in my opinion.

Thanks,
Ciara


>-----Original Message-----
>From: Chen, Mike Ximing <mike.ximing.chen at intel.com>
>Sent: Wednesday 9 September 2020 21:55
>To: Jerin Jacob <jerinj at marvell.com>
>Cc: dev at dpdk.org; Eads, Gage <gage.eads at intel.com>; Vedantham, Sundar
><sundar.vedantham at intel.com>; Power, Ciara <ciara.power at intel.com>;
>Richardson, Bruce <bruce.richardson at intel.com>; Chen, Mike Ximing
><mike.ximing.chen at intel.com>
>Subject: [PATCH] eventdev: support telemetry with xstats info
>
>The telemetry library is connected with eventdev xstats and port link info. The
>following new telemetry commands are added:
>
>/eventdev/dev_list
>/eventdev/port_list,DevID
>/eventdev/queue_list,DevID
>/eventdev/dev_xstats,DevID
>/eventdev/port_xstats,DevID,PortID
>/eventdev/queue_xstats,DevID,PortID
>/eventdev/queue_links,DevID,PortID
>
>queue_links command displays a list of queues linked with a specified
>eventdev port and a service priority associated with each link.
>
>Signed-off-by: Mike Ximing Chen <mike.ximing.chen at intel.com>
>---
>Depends-on: patch-76075 ("lib/telemetry: fix passing full params string to
>command")
>---
> lib/librte_eventdev/meson.build    |   1 +
> lib/librte_eventdev/rte_eventdev.c | 304 +++++++++++++++++++++++++++++
> 2 files changed, 305 insertions(+)

<snip>

>+
>+static int
>+handle_queue_links(const char *cmd __rte_unused,
>+		   const char *params,
>+		   struct rte_tel_data *d)
>+{
>+	int i, ret, port_id = 0;
>+	char *end_param;
>+	uint8_t dev_id;
>+	uint8_t queues[RTE_EVENT_MAX_QUEUES_PER_DEV];
>+	uint8_t priorities[RTE_EVENT_MAX_QUEUES_PER_DEV];
>+	const char *p_param;
>+
>+	if (params == NULL || strlen(params) == 0 || !isdigit(*params))
>+		return -1;
>+
>+	/* Get dev ID from parameter string */
>+	dev_id = strtoul(params, &end_param, 10);
>+	RTE_EVENTDEV_VALID_DEVID_OR_ERR_RET(dev_id, -EINVAL);
>+
>+	p_param = strtok(end_param, ",");
>+	if (p_param == NULL || strlen(p_param) == 0 || !isdigit(*p_param))
>+		return -1;
>+
>+	port_id = strtoul(p_param, &end_param, 10);
>+	p_param = strtok(NULL, "\0");
>+	if (*p_param != '\0')
>+		RTE_EDEV_LOG_DEBUG(
>+			"Extra parameters passed to eventdev telemetry
>command, ignoring");


The code above to parse the parameters doesn't look right to me - I think in the case of valid parameters being
passed (e.g. "0,2"), there would be a seg fault at this condition check on p_param. 
This applies to the other handler functions here that follow similar steps also.


>+
>+	ret = rte_event_port_links_get(dev_id, port_id, queues, priorities);
>+	if (ret < 0)
>+		return -1;
>+
>+	rte_tel_data_start_dict(d);
>+	for (i = 0; i < ret; i++) {
>+		char qid_name[32];
>+
>+		snprintf(qid_name, 31, "qid_%u", queues[i]);
>+		rte_tel_data_add_dict_u64(d, qid_name, priorities[i]);
>+	}
>+
>+	return 0;
>+}

<snip>



More information about the dev mailing list