examples/qos_sched: fix error message
authorSlawomir Mrozowicz <slawomirx.mrozowicz@intel.com>
Thu, 21 Apr 2016 13:08:12 +0000 (15:08 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 16 May 2016 16:49:12 +0000 (18:49 +0200)
rx_port in pconf->rx_port looks like a copy-paste error.

Coverity issue: 30699
Fixes: de3cfa2c9823 ("sched: initial import")

Signed-off-by: Slawomir Mrozowicz <slawomirx.mrozowicz@intel.com>
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
examples/qos_sched/args.c

index fc75263..0173d07 100644 (file)
@@ -272,7 +272,7 @@ app_parse_flow_conf(const char *conf_str)
        }
        if (pconf->tx_port >= RTE_MAX_ETHPORTS) {
                RTE_LOG(ERR, APP, "pfc %u: invalid tx port %"PRIu8" index\n",
-                               nb_pfc, pconf->rx_port);
+                               nb_pfc, pconf->tx_port);
                return -1;
        }