app/testpmd: port info prints dynamically mapped flow types

Port info command prints information about all supported flow types,
including dynamically mapped ones.

Signed-off-by: Kirill Rybalchenko <kirill.rybalchenko@intel.com>

Reviewed-by: Jingjing Wu <jingjing.wu@intel.com>
This commit is contained in:
Kirill Rybalchenko 2017-09-20 16:06:27 +01:00 committed by Ferruh Yigit
parent c848b518bb
commit 8b94c81e33

View File

@ -500,12 +500,15 @@ port_infos_display(portid_t port_id)
char *p;
printf("Supported flow types:\n");
for (i = RTE_ETH_FLOW_UNKNOWN + 1; i < RTE_ETH_FLOW_MAX;
i++) {
for (i = RTE_ETH_FLOW_UNKNOWN + 1;
i < sizeof(dev_info.flow_type_rss_offloads) * CHAR_BIT; i++) {
if (!(dev_info.flow_type_rss_offloads & (1ULL << i)))
continue;
p = flowtype_to_str(i);
printf(" %s\n", (p ? p : "unknown"));
if (p)
printf(" %s\n", p);
else
printf(" user defined %d\n", i);
}
}