From 64be0e779fac9acd96088c62c30b98cca8d0148a Mon Sep 17 00:00:00 2001 From: Dmitry Kozlyuk Date: Tue, 9 Nov 2021 11:00:57 +0200 Subject: [PATCH] ethdev: fix device capability to string translation Add support for RTE_ETH_DEV_CAPA_FLOW_{RULE,SHARED_OBJECT}_KEEP to rte_eth_dev_capability_name(), missed when adding the capabilities. Fixes: 1d5a3d68c0f9 ("ethdev: add capability to keep flow rules on restart") Fixes: 2c9cd45de7e6 ("ethdev: add capability to keep shared objects on restart") Reported-by: Ali Alnubani Signed-off-by: Dmitry Kozlyuk Acked-by: Xueming Li Tested-by: Ali Alnubani Reviewed-by: Ferruh Yigit --- lib/ethdev/rte_ethdev.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/ethdev/rte_ethdev.c b/lib/ethdev/rte_ethdev.c index 8e679e4003..a1d475a292 100644 --- a/lib/ethdev/rte_ethdev.c +++ b/lib/ethdev/rte_ethdev.c @@ -171,6 +171,8 @@ static const struct { {RTE_ETH_DEV_CAPA_RUNTIME_RX_QUEUE_SETUP, "RUNTIME_RX_QUEUE_SETUP"}, {RTE_ETH_DEV_CAPA_RUNTIME_TX_QUEUE_SETUP, "RUNTIME_TX_QUEUE_SETUP"}, {RTE_ETH_DEV_CAPA_RXQ_SHARE, "RXQ_SHARE"}, + {RTE_ETH_DEV_CAPA_FLOW_RULE_KEEP, "FLOW_RULE_KEEP"}, + {RTE_ETH_DEV_CAPA_FLOW_SHARED_OBJECT_KEEP, "FLOW_SHARED_OBJECT_KEEP"}, }; /**