Add IPv6 flow label to the list of RSS types. Example to configure IPv6 flow label based RSS: flow create 0 ingress pattern eth / ipv6 / tcp / end actions rss types ipv6-flow-label end / end Signed-off-by: Ajit Khaparde --- app/test-pmd/config.c | 1 + 1 file changed, 1 insertion(+) diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c index 2c4dedd603..3c5c5bac67 100644 --- a/app/test-pmd/config.c +++ b/app/test-pmd/config.c @@ -148,6 +148,7 @@ const struct rss_type_info rss_type_table[] = { { "l4-src-only", RTE_ETH_RSS_L4_SRC_ONLY }, { "l3-dst-only", RTE_ETH_RSS_L3_DST_ONLY }, { "l3-src-only", RTE_ETH_RSS_L3_SRC_ONLY }, + { "ipv6-flow-label", RTE_ETH_RSS_IPV6_FLOW_LABEL }, { NULL, 0}, }; -- 2.39.2 (Apple Git-143)