From 7dc01afc0e85056f73d3a14b47e16cfaf0d96192 Mon Sep 17 00:00:00 2001 From: Ivan Malov Date: Wed, 17 Nov 2021 00:41:27 +0300 Subject: [PATCH] net/sfc: fix printout labels for decrease TTL actions Fixes: 60e53c078d01 ("net/sfc: support decrement IP TTL actions in transfer flows") Signed-off-by: Ivan Malov Reviewed-by: Andrew Rybchenko Reviewed-by: Andy Moreton --- drivers/net/sfc/sfc_mae.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/sfc/sfc_mae.c b/drivers/net/sfc/sfc_mae.c index d046cc2b36..08e28b13c9 100644 --- a/drivers/net/sfc/sfc_mae.c +++ b/drivers/net/sfc/sfc_mae.c @@ -3543,6 +3543,8 @@ sfc_mae_rule_parse_action_represented_port(struct sfc_adapter *sa, static const char * const action_names[] = { [RTE_FLOW_ACTION_TYPE_VXLAN_DECAP] = "VXLAN_DECAP", [RTE_FLOW_ACTION_TYPE_OF_POP_VLAN] = "OF_POP_VLAN", + [RTE_FLOW_ACTION_TYPE_OF_DEC_NW_TTL] = "OF_DEC_NW_TTL", + [RTE_FLOW_ACTION_TYPE_DEC_TTL] = "DEC_TTL", [RTE_FLOW_ACTION_TYPE_OF_PUSH_VLAN] = "OF_PUSH_VLAN", [RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_VID] = "OF_SET_VLAN_VID", [RTE_FLOW_ACTION_TYPE_OF_SET_VLAN_PCP] = "OF_SET_VLAN_PCP", -- 2.39.5