[dpdk-dev] [RFC] ethdev: add generic TTL rewrite actions

Jack Min jackmin at mellanox.com
Tue Aug 7 16:20:53 CEST 2018


There is a need to rewrite TTL by decrease or just set it directly,
and it's not necessary to check if the final result is zero or not.

This is slightly different from the one defined by openflow and
make the actions more generic.




Signed-off-by: Xiaoyu Min <jackmin at mellanox.com>
---
 lib/librte_ethdev/rte_flow.h | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/lib/librte_ethdev/rte_flow.h b/lib/librte_ethdev/rte_flow.h
index f8ba71cdb..fbf88f9fd 100644
--- a/lib/librte_ethdev/rte_flow.h
+++ b/lib/librte_ethdev/rte_flow.h
@@ -1505,6 +1505,26 @@ enum rte_flow_action_type {
         * error.
         */
        RTE_FLOW_ACTION_TYPE_NVGRE_DECAP,
+
+       /**
+        * Decrease TTL value directly
+        *
+        * If flow pattern doesn't define a valid RTE_FLOW_ITEM_TYPE_IPV4, or
+        * RTE_FLOW_ITEM_TYPE_IPV6, the PMD should return a
+        * RTE_FLOW_ERROR_TYPE_ACTION error.
+        */
+       RTE_FLOW_ACTION_TYPE_DEC_TTL,
+
+       /**
+        * Set TTL value
+        *
+        * If flow pattern doesn't define a valid RTE_FLOW_ITEM_TYPE_IPV4, or
+        * RTE_FLOW_ITEM_TYPE_IPV6, the PMD should return a
+        * RTE_FLOW_ERROR_TYPE_ACTION error.
+        *
+        * See struct rte_flow_action_set_ttl
+        */
+       RTE_FLOW_ACTION_TYPE_SET_TTL,
 };
 
 /**
@@ -1868,6 +1888,20 @@ struct rte_flow_action_nvgre_encap {
        struct rte_flow_item *definition;
 };
 
+/**
+ * @warning
+ * @b EXPERIMENTAL: this structure may change without prior notice
+ *
+ * RTE_FLOW_ACTION_TYPE_SET_TTL
+ *
+ * Set the TTL value directly for IPv4 or IPv6
+ * The RTE_FLOW_ITEM_TYPE_IPV4 or RTE_FLOW_ITEM_TYPE_IPV6
+ * must be present in pattern
+ */
+struct rte_flow_action_set_ttl {
+       uint8_t ttl_value;
+}
+
 /*
  * Definition of a single action.
  *
-- 
2.17.1



More information about the dev mailing list