From 113778be13534832f5f1f4a57c4425ff8d36fad0 Mon Sep 17 00:00:00 2001 From: Andrew Rybchenko Date: Fri, 1 Oct 2021 12:07:20 +0300 Subject: [PATCH] ethdev: do not use get xstats names by IDs to obtain count Relax requirements on get xstats names by IDs. After the patch corresponding the driver operation is called with non-NULL ids and xstats_names parameters only. Signed-off-by: Andrew Rybchenko Acked-by: Ferruh Yigit --- lib/ethdev/rte_ethdev.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/ethdev/rte_ethdev.c b/lib/ethdev/rte_ethdev.c index daf5ca9242..e5ddc1b81f 100644 --- a/lib/ethdev/rte_ethdev.c +++ b/lib/ethdev/rte_ethdev.c @@ -2866,12 +2866,6 @@ eth_dev_get_xstats_count(uint16_t port_id) RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); dev = &rte_eth_devices[port_id]; - if (dev->dev_ops->xstats_get_names_by_id != NULL) { - count = (*dev->dev_ops->xstats_get_names_by_id)(dev, NULL, - NULL, 0); - if (count < 0) - return eth_err(port_id, count); - } if (dev->dev_ops->xstats_get_names != NULL) { count = (*dev->dev_ops->xstats_get_names)(dev, NULL, 0); if (count < 0) -- 2.20.1