app/testpmd: fix start index for showing FEC array
authorKarra Satwik <kaara.satwik@chelsio.com>
Sun, 20 Dec 2020 22:47:01 +0000 (04:17 +0530)
committerFerruh Yigit <ferruh.yigit@intel.com>
Tue, 19 Jan 2021 02:30:13 +0000 (03:30 +0100)
Start from index 0 when going through the FEC array. This will allow
"off" to get printed for RTE_ETH_FEC_NOFEC mode.

Fixes: b19da32e3151 ("app/testpmd: add FEC command")
Cc: stable@dpdk.org
Signed-off-by: Karra Satwik <kaara.satwik@chelsio.com>
Signed-off-by: Rahul Lakkireddy <rahul.lakkireddy@chelsio.com>
Acked-by: Xiaoyun Li <xiaoyun.li@intel.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
app/test-pmd/config.c

index 3f6c864..a6a5baa 100644 (file)
@@ -3701,7 +3701,7 @@ show_fec_capability(unsigned int num, struct rte_eth_fec_capa *speed_fec_capa)
                printf("%s : ",
                        rte_eth_link_speed_to_str(speed_fec_capa[i].speed));
 
-               for (j = RTE_ETH_FEC_AUTO; j < RTE_DIM(fec_mode_name); j++) {
+               for (j = 0; j < RTE_DIM(fec_mode_name); j++) {
                        if (RTE_ETH_FEC_MODE_TO_CAPA(j) &
                                                speed_fec_capa[i].capa)
                                printf("%s ", fec_mode_name[j].name);