ethdev: fix stats query for lowest xstat id
authorBruce Richardson <bruce.richardson@intel.com>
Tue, 6 Feb 2018 16:06:59 +0000 (16:06 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 6 Feb 2018 17:47:01 +0000 (18:47 +0100)
When querying either the name or the value of a stat using the xstats
APIs, a check is done to see if the regular stats API or the xstats APIs
for the driver need to be used. However, the id of the stat requested is
checked to see if it is greater than the number of basic stats, rather
than checking for greater-or-equal, meaning that the xstat with the lowest
id gets incorrectly treated as a basic stat.

This problem manifests itself when you call proc_info using "--xstats-id"
for the first xstat, you get no name of the stat printed, and a random(ish)
stat value.

Fixes: 4773152f850b ("ethdev: optimize xstats by ids APIs")

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
lib/librte_ether/rte_ethdev.c

index 78bed1a..a6ce2a5 100644 (file)
@@ -2045,7 +2045,7 @@ rte_eth_xstats_get_names_by_id(uint16_t port_id,
 
        if (ids) {
                for (i = 0; i < size; i++) {
-                       if (ids[i] > basic_count) {
+                       if (ids[i] >= basic_count) {
                                no_ext_stat_requested = 0;
                                break;
                        }
@@ -2225,7 +2225,7 @@ rte_eth_xstats_get_by_id(uint16_t port_id, const uint64_t *ids,
 
        if (ids) {
                for (i = 0; i < size; i++) {
-                       if (ids[i] > basic_count) {
+                       if (ids[i] >= basic_count) {
                                no_ext_stat_requested = 0;
                                break;
                        }