DPDK patches and discussions
 help / color / mirror / Atom feed
From: Rongwei Liu <rongweil@nvidia.com>
To: <dev@dpdk.org>, <matan@nvidia.com>, <viacheslavo@nvidia.com>,
	<orika@nvidia.com>, <thomas@monjalon.net>
Subject: [PATCH v1 5/8] net/mlx5: generate srv6 modify header resource
Date: Mon, 17 Apr 2023 12:25:37 +0300	[thread overview]
Message-ID: <20230417092540.2617450-6-rongweil@nvidia.com> (raw)
In-Reply-To: <20230417092540.2617450-1-rongweil@nvidia.com>

Both checksum and IPv6 next_hdr needs to be updated when
adding or removing srv6 header into/from IPv6 packets.

1. Add srv6
   ste1 (push buffer with next_hdr 0) --> ste2 (IPv6 next_hdr to 0x2b)
   --> ste3 (load next hop IPv6 address, and srv6 next_hdr restore)
2. Remove srv6
   ste1 (set srv6 next_hdr 0 and save original) --> ste2 (load final
   IPv6 destination, restore srv6 next_hdr) --> ste3 (remove srv6 and
   copy srv6 next_hdr to ipv6 next_hdr)

Add helpers to generate the 2 modify header resources for add/remove
actions.

Remove srv6 should be shared globally and add srv6 can be shared or
unique per each flow rules.

Signed-off-by: Rongwei Liu <rongweil@nvidia.com>
---
 drivers/net/mlx5/mlx5.h         |  29 +++
 drivers/net/mlx5/mlx5_flow_dv.c | 386 ++++++++++++++++++++++++++++++++
 2 files changed, 415 insertions(+)

diff --git a/drivers/net/mlx5/mlx5.h b/drivers/net/mlx5/mlx5.h
index 3fbec4db9e..2cb6364957 100644
--- a/drivers/net/mlx5/mlx5.h
+++ b/drivers/net/mlx5/mlx5.h
@@ -2314,4 +2314,33 @@ void mlx5_flex_parser_clone_free_cb(void *tool_ctx,
 int mlx5_alloc_srh_flex_parser(struct rte_eth_dev *dev);
 
 void mlx5_free_srh_flex_parser(struct rte_eth_dev *dev);
+
+int
+flow_dv_generate_ipv6_routing_pop_mhdr1(struct rte_eth_dev *dev,
+					const struct rte_flow_attr *attr,
+					struct mlx5_modification_cmd *cmd,
+					uint32_t cmd_num);
+
+int
+flow_dv_generate_ipv6_routing_pop_mhdr2(struct rte_eth_dev *dev,
+					const struct rte_flow_attr *attr,
+					struct mlx5_modification_cmd *cmd,
+					uint32_t cmd_num);
+
+int
+flow_dv_generate_ipv6_routing_push_mhdr1(struct rte_eth_dev *dev,
+					 const struct rte_flow_attr *attr,
+					 struct mlx5_modification_cmd *cmd,
+					 uint32_t cmd_num);
+
+int
+flow_dv_generate_ipv6_routing_push_mhdr2(struct rte_eth_dev *dev,
+					 const struct rte_flow_attr *attr,
+					 struct mlx5_modification_cmd *cmd,
+					 uint32_t cmd_num, uint8_t *buf);
+
+int
+flow_dv_ipv6_routing_pop_mhdr_cmd(struct rte_eth_dev *dev, uint8_t *mh_data,
+				  uint8_t *anchor_id);
+
 #endif /* RTE_PMD_MLX5_H_ */
diff --git a/drivers/net/mlx5/mlx5_flow_dv.c b/drivers/net/mlx5/mlx5_flow_dv.c
index f136f43b0a..4a1f61eeb7 100644
--- a/drivers/net/mlx5/mlx5_flow_dv.c
+++ b/drivers/net/mlx5/mlx5_flow_dv.c
@@ -2128,6 +2128,392 @@ flow_dv_convert_action_modify_field
 			field, dcopy, resource, type, error);
 }
 
+/**
+ * Generate the 1st modify header data for IPv6 routing pop.
+ *
+ * @param[in] dev
+ *   Pointer to the rte_eth_dev structure.
+ * @param[in] attr
+ *   Pointer to the rte_flow table attribute.
+ * @param[in,out] cmd
+ *   Pointer to modify header command buffer.
+ * @param[in] cmd_num
+ *   Modify header command number.
+ *
+ * @return
+ *   Positive on success, a negative value otherwise.
+ */
+int
+flow_dv_generate_ipv6_routing_pop_mhdr1(struct rte_eth_dev *dev,
+					const struct rte_flow_attr *attr,
+					struct mlx5_modification_cmd *cmd,
+					uint32_t cmd_num)
+{
+	struct mlx5_priv *priv = dev->data->dev_private;
+	struct rte_flow_action_modify_data data;
+	struct field_modify_info field[MLX5_ACT_MAX_MOD_FIELDS] = {
+				{0, 0, MLX5_MODI_OUT_NONE} };
+	struct field_modify_info dcopy[MLX5_ACT_MAX_MOD_FIELDS] = {
+				{0, 0, MLX5_MODI_OUT_NONE} };
+	uint32_t mask[MLX5_ACT_MAX_MOD_FIELDS] = { 0 };
+	struct rte_flow_item item = {
+		.spec = NULL,
+		.mask = NULL
+	};
+	union {
+		struct mlx5_flow_dv_modify_hdr_resource resource;
+		uint8_t data[sizeof(struct mlx5_flow_dv_modify_hdr_resource) +
+			     sizeof(struct mlx5_modification_cmd) * MLX5_MHDR_MAX_CMD];
+	} dummy;
+	struct mlx5_flow_dv_modify_hdr_resource *resource;
+	uint32_t value = 0;
+	struct rte_flow_error error;
+
+#define IPV6_ROUTING_POP_MHDR_NUM1 3
+	if (cmd_num < IPV6_ROUTING_POP_MHDR_NUM1) {
+		DRV_LOG(ERR, "Not enough modify header buffer");
+		return -1;
+	}
+	memset(&data, 0, sizeof(data));
+	memset(&dummy, 0, sizeof(dummy));
+	/* save next_hdr to seg_left. */
+	data.field = RTE_FLOW_FIELD_FLEX_ITEM;
+	data.flex_handle = (struct rte_flow_item_flex_handle *)
+			   (uintptr_t)&priv->sh->srh_flex_parser.flex;
+	data.offset = offsetof(struct rte_ipv6_routing_ext, segments_left) * CHAR_BIT;
+	/* For COPY fill the destination field (dcopy) without mask. */
+	mlx5_flow_field_id_to_modify_info(&data, dcopy, NULL, 8, dev, attr, &error);
+	/* Then construct the source field (field) with mask. */
+	data.offset = offsetof(struct rte_ipv6_routing_ext, next_hdr) * CHAR_BIT;
+	mlx5_flow_field_id_to_modify_info(&data, field, mask, 8, dev, attr, &error);
+	item.mask = &mask;
+	resource = &dummy.resource;
+	if (flow_dv_convert_modify_action(&item, field, dcopy, resource,
+					  MLX5_MODIFICATION_TYPE_COPY, &error)) {
+		DRV_LOG(ERR, "Generate save srv6 next header modify header failed");
+		return -1;
+	}
+	MLX5_ASSERT(resource->actions_num == 1);
+	/* add nop. */
+	resource->actions[1].data0 = 0;
+	resource->actions[1].action_type = MLX5_MODIFICATION_TYPE_NOP;
+	resource->actions[1].data0 = RTE_BE32(resource->actions[1].data0);
+	resource->actions[1].data1 = 0;
+	resource->actions_num += 1;
+	/* clear srv6 next_hdr. */
+	memset(&field, 0, sizeof(field));
+	memset(&dcopy, 0, sizeof(dcopy));
+	memset(&mask, 0, sizeof(mask));
+	mlx5_flow_field_id_to_modify_info(&data, field, mask, 8, dev, attr, &error);
+	item.spec = (void *)(uintptr_t)&value;
+	if (flow_dv_convert_modify_action(&item, field, dcopy, resource,
+					  MLX5_MODIFICATION_TYPE_SET, &error)) {
+		DRV_LOG(ERR, "Generate clear srv6 next header modify header failed");
+		return -1;
+	}
+	MLX5_ASSERT(resource->actions_num == IPV6_ROUTING_POP_MHDR_NUM1);
+#undef IPV6_ROUTING_POP_MHDR_NUM1
+	memcpy(cmd, resource->actions,
+	       resource->actions_num * sizeof(struct mlx5_modification_cmd));
+	return resource->actions_num;
+}
+
+/**
+ * Generate the 2nd modify header data for IPv6 routing pop.
+ *
+ * @param[in] dev
+ *   Pointer to the rte_eth_dev structure.
+ * @param[in] attr
+ *   Pointer to the rte_flow table attribute.
+ * @param[in,out] cmd
+ *   Pointer to modify header command buffer.
+ * @param[in] cmd_num
+ *   Modify header command number.
+ *
+ * @return
+ *   Positive on success, a negative value otherwise.
+ */
+int
+flow_dv_generate_ipv6_routing_pop_mhdr2(struct rte_eth_dev *dev,
+					const struct rte_flow_attr *attr,
+					struct mlx5_modification_cmd *cmd,
+					uint32_t cmd_num)
+{
+	struct mlx5_priv *priv = dev->data->dev_private;
+	struct rte_flow_action_modify_data data;
+	struct field_modify_info field[MLX5_ACT_MAX_MOD_FIELDS] = {
+				{0, 0, MLX5_MODI_OUT_NONE} };
+	struct field_modify_info dcopy[MLX5_ACT_MAX_MOD_FIELDS] = {
+				{0, 0, MLX5_MODI_OUT_NONE} };
+	uint32_t mask[MLX5_ACT_MAX_MOD_FIELDS] = { 0 };
+	struct rte_flow_item item = {
+		.spec = NULL,
+		.mask = NULL
+	};
+	union {
+		struct mlx5_flow_dv_modify_hdr_resource resource;
+		uint8_t data[sizeof(struct mlx5_flow_dv_modify_hdr_resource) +
+			     sizeof(struct mlx5_modification_cmd) * MLX5_MHDR_MAX_CMD];
+	} dummy;
+	struct mlx5_flow_dv_modify_hdr_resource *resource;
+	struct rte_flow_error error;
+
+#define IPV6_ROUTING_POP_MHDR_NUM2 5
+	if (cmd_num < IPV6_ROUTING_POP_MHDR_NUM2) {
+		DRV_LOG(ERR, "Note enough modify header buffer");
+		return -1;
+	}
+	memset(&data, 0, sizeof(data));
+	memset(&dummy, 0, sizeof(dummy));
+	resource = &dummy.resource;
+	item.mask = &mask;
+	data.field = RTE_FLOW_FIELD_IPV6_DST;
+	data.level = 0;
+	data.offset = 0;
+	mlx5_flow_field_id_to_modify_info(&data, dcopy, NULL, 128, dev, attr, &error);
+	data.field = RTE_FLOW_FIELD_FLEX_ITEM;
+	data.offset = 32;
+	data.flex_handle = (struct rte_flow_item_flex_handle *)
+			   (uintptr_t)&priv->sh->srh_flex_parser.flex;
+	mlx5_flow_field_id_to_modify_info(&data, field, mask, 128, dev, attr, &error);
+	if (flow_dv_convert_modify_action(&item, field, dcopy, resource,
+					  MLX5_MODIFICATION_TYPE_COPY, &error)) {
+		DRV_LOG(ERR, "Generate load final IPv6 address modify header failed");
+		return -1;
+	}
+	MLX5_ASSERT(resource->actions_num == 4);
+	memset(&field, 0, sizeof(field));
+	memset(&dcopy, 0, sizeof(dcopy));
+	memset(&mask, 0, sizeof(mask));
+	/* copy seg_left to srv6.next_hdr */
+	data.offset = offsetof(struct rte_ipv6_routing_ext, next_hdr) * CHAR_BIT;
+	mlx5_flow_field_id_to_modify_info(&data, dcopy, NULL, 8, dev, attr, &error);
+	data.offset = offsetof(struct rte_ipv6_routing_ext, segments_left) * CHAR_BIT;
+	mlx5_flow_field_id_to_modify_info(&data, field, mask, 8, dev, attr, &error);
+	if (flow_dv_convert_modify_action(&item, field, dcopy, resource,
+					  MLX5_MODIFICATION_TYPE_COPY, &error)) {
+		DRV_LOG(ERR, "Generate restore srv6 next header modify header failed");
+		return -1;
+	}
+	MLX5_ASSERT(resource->actions_num == IPV6_ROUTING_POP_MHDR_NUM2);
+#undef IPV6_ROUTING_POP_MHDR_NUM2
+	memcpy(cmd, resource->actions,
+	       resource->actions_num * sizeof(struct mlx5_modification_cmd));
+	return resource->actions_num;
+}
+
+/**
+ * Generate the 2nd modify header data for IPv6 routing push.
+ *
+ * @param[in] dev
+ *   Pointer to the rte_eth_dev structure.
+ * @param[in] attr
+ *   Pointer to the rte_flow table attribute.
+ * @param[in,out] cmd
+ *   Pointer to modify header command buffer.
+ * @param[in] cmd_num
+ *   Modify header command number.
+ *
+ * @return
+ *   Positive on success, a negative value otherwise.
+ */
+int
+flow_dv_generate_ipv6_routing_push_mhdr1(struct rte_eth_dev *dev,
+					 const struct rte_flow_attr *attr,
+					 struct mlx5_modification_cmd *cmd,
+					 uint32_t cmd_num)
+{
+	struct rte_flow_action_modify_data data;
+	struct field_modify_info field[MLX5_ACT_MAX_MOD_FIELDS] = {
+				{0, 0, MLX5_MODI_OUT_NONE} };
+	struct field_modify_info dcopy[MLX5_ACT_MAX_MOD_FIELDS] = {
+				{0, 0, MLX5_MODI_OUT_NONE} };
+	uint32_t mask[MLX5_ACT_MAX_MOD_FIELDS] = { 0 };
+	struct rte_flow_item item = {
+		.spec = NULL,
+		.mask = NULL
+	};
+	union {
+		struct mlx5_flow_dv_modify_hdr_resource resource;
+		uint8_t data[sizeof(struct mlx5_flow_dv_modify_hdr_resource) +
+			     sizeof(struct mlx5_modification_cmd) * MLX5_MHDR_MAX_CMD];
+	} dummy;
+	struct mlx5_flow_dv_modify_hdr_resource *resource;
+	struct rte_flow_error error;
+	uint8_t value;
+
+#define IPV6_ROUTING_PUSH_MHDR_NUM1 1
+	if (cmd_num < IPV6_ROUTING_PUSH_MHDR_NUM1) {
+		DRV_LOG(ERR, "Not enough modify header buffer");
+		return -1;
+	}
+	memset(&data, 0, sizeof(data));
+	memset(&dummy, 0, sizeof(dummy));
+	resource = &dummy.resource;
+	/* Set IPv6 proto to 0x2b. */
+	data.field = RTE_FLOW_FIELD_IPV6_PROTO;
+	mlx5_flow_field_id_to_modify_info(&data, field, mask, 8, dev, attr, &error);
+	resource = &dummy.resource;
+	item.mask = &mask;
+	value = IPPROTO_ROUTING;
+	item.spec = (void *)(uintptr_t)&value;
+	if (flow_dv_convert_modify_action(&item, field, dcopy, resource,
+					  MLX5_MODIFICATION_TYPE_SET, &error)) {
+		DRV_LOG(ERR, "Generate modify IPv6 protocol to 0x2b failed");
+		return -1;
+	}
+	MLX5_ASSERT(resource->actions_num == IPV6_ROUTING_PUSH_MHDR_NUM1);
+#undef IPV6_ROUTING_PUSH_MHDR_NUM1
+	memcpy(cmd, resource->actions,
+	       resource->actions_num * sizeof(struct mlx5_modification_cmd));
+	return resource->actions_num;
+}
+
+/**
+ * Generate the 2nd modify header data for IPv6 routing push.
+ *
+ * @param[in] dev
+ *   Pointer to the rte_eth_dev structure.
+ * @param[in] attr
+ *   Pointer to the rte_flow table attribute.
+ * @param[in,out] cmd
+ *   Pointer to modify header command buffer.
+ * @param[in] cmd_num
+ *   Modify header command number.
+ *
+ * @return
+ *   Positive on success, a negative value otherwise.
+ */
+int
+flow_dv_generate_ipv6_routing_push_mhdr2(struct rte_eth_dev *dev,
+					 const struct rte_flow_attr *attr,
+					 struct mlx5_modification_cmd *cmd,
+					 uint32_t cmd_num, uint8_t *buf)
+{
+	struct mlx5_priv *priv = dev->data->dev_private;
+	struct rte_flow_action_modify_data data;
+	struct field_modify_info field[MLX5_ACT_MAX_MOD_FIELDS] = {
+				{0, 0, MLX5_MODI_OUT_NONE} };
+	struct field_modify_info dcopy[MLX5_ACT_MAX_MOD_FIELDS] = {
+				{0, 0, MLX5_MODI_OUT_NONE} };
+	uint32_t mask[MLX5_ACT_MAX_MOD_FIELDS] = { 0 };
+	struct rte_flow_item item = {
+		.spec = NULL,
+		.mask = NULL
+	};
+	union {
+		struct mlx5_flow_dv_modify_hdr_resource resource;
+		uint8_t data[sizeof(struct mlx5_flow_dv_modify_hdr_resource) +
+			     sizeof(struct mlx5_modification_cmd) * MLX5_MHDR_MAX_CMD];
+	} dummy;
+	struct mlx5_flow_dv_modify_hdr_resource *resource;
+	struct rte_flow_error error;
+	uint8_t next_hdr = *buf;
+
+#define IPV6_ROUTING_PUSH_MHDR_NUM2 5
+	if (cmd_num < IPV6_ROUTING_PUSH_MHDR_NUM2) {
+		DRV_LOG(ERR, "Not enough modify header buffer");
+		return -1;
+	}
+	memset(&data, 0, sizeof(data));
+	memset(&dummy, 0, sizeof(dummy));
+	resource = &dummy.resource;
+	item.mask = &mask;
+	item.spec = buf + sizeof(struct rte_ipv6_routing_ext) +
+		(*(buf + 3) - 1) * 16; /* seg_left-1 IPv6 address */
+	data.field = RTE_FLOW_FIELD_IPV6_DST;
+	mlx5_flow_field_id_to_modify_info(&data, field, mask, 128, dev, attr, &error);
+	if (flow_dv_convert_modify_action(&item, field, dcopy, resource,
+					  MLX5_MODIFICATION_TYPE_SET, &error)) {
+		DRV_LOG(ERR, "Generate load srv6 next hop modify header failed");
+		return -1;
+	}
+	MLX5_ASSERT(resource->actions_num == 4);
+	memset(&field, 0, sizeof(field));
+	memset(&mask, 0, sizeof(mask));
+	data.field = RTE_FLOW_FIELD_FLEX_ITEM;
+	data.flex_handle = (struct rte_flow_item_flex_handle *)
+			   (uintptr_t)&priv->sh->srh_flex_parser.flex;
+	data.offset = offsetof(struct rte_ipv6_routing_ext, next_hdr) * CHAR_BIT;
+	item.spec = (void *)(uintptr_t)&next_hdr;
+	mlx5_flow_field_id_to_modify_info(&data, field, mask, 8, dev, attr, &error);
+	if (flow_dv_convert_modify_action(&item, field, dcopy, resource,
+					  MLX5_MODIFICATION_TYPE_SET, &error)) {
+		DRV_LOG(ERR, "Generate srv6 next header restore modify header failed");
+		return -1;
+	}
+	MLX5_ASSERT(resource->actions_num == IPV6_ROUTING_PUSH_MHDR_NUM2);
+#undef IPV6_ROUTING_PUSH_MHDR_NUM2
+	memcpy(cmd, resource->actions,
+	       resource->actions_num * sizeof(struct mlx5_modification_cmd));
+	return resource->actions_num;
+}
+
+/**
+ * Generate IPv6 routing pop modification_cmd.
+ *
+ * @param[in] dev
+ *   Pointer to the rte_eth_dev structure.
+ * @param[in,out] mh_data
+ *   Pointer to modify header data buffer.
+ * @param[in,out] anchor_id
+ *   Anchor ID for REMOVE command.
+ *
+ * @return
+ *   Positive on success, a negative value otherwise.
+ */
+int
+flow_dv_ipv6_routing_pop_mhdr_cmd(struct rte_eth_dev *dev, uint8_t *mh_data,
+				  uint8_t *anchor_id)
+{
+	struct rte_flow_action_modify_data data;
+	struct field_modify_info field[MLX5_ACT_MAX_MOD_FIELDS] = {
+				{0, 0, MLX5_MODI_OUT_NONE} };
+	struct field_modify_info dcopy[MLX5_ACT_MAX_MOD_FIELDS] = {
+				{0, 0, MLX5_MODI_OUT_NONE} };
+	uint32_t mask[MLX5_ACT_MAX_MOD_FIELDS] = { 0  };
+	struct rte_flow_item item = {
+		.spec = NULL,
+		.mask = NULL
+	};
+	union {
+		struct mlx5_flow_dv_modify_hdr_resource resource;
+		uint8_t data[sizeof(struct mlx5_flow_dv_modify_hdr_resource) +
+			     sizeof(struct mlx5_modification_cmd) * MLX5_MHDR_MAX_CMD];
+	} dummy;
+	struct mlx5_flow_dv_modify_hdr_resource *resource;
+	struct rte_flow_error error;
+	struct mlx5_priv *priv = dev->data->dev_private;
+
+	if (!priv || !priv->sh->cdev->config.hca_attr.flex.parse_graph_anchor) {
+		DRV_LOG(ERR, "Doesn't support srv6 as reformat anchor");
+		return -1;
+	}
+	/* Restore IPv6 protocol from flex parser. */
+	memset(&data, 0, sizeof(data));
+	memset(&dummy, 0, sizeof(dummy));
+	data.field = RTE_FLOW_FIELD_IPV6_PROTO;
+	mlx5_flow_field_id_to_modify_info(&data, dcopy, NULL, 8, dev, NULL, &error);
+	/* Then construct the source field (field) with mask. */
+	data.field = RTE_FLOW_FIELD_FLEX_ITEM;
+	data.flex_handle = (struct rte_flow_item_flex_handle *)
+			   (uintptr_t)&priv->sh->srh_flex_parser.flex;
+	data.offset = offsetof(struct rte_ipv6_routing_ext, next_hdr) * CHAR_BIT;
+	mlx5_flow_field_id_to_modify_info(&data, field, mask, 8, dev, NULL, &error);
+	item.mask = &mask;
+	resource = &dummy.resource;
+	if (flow_dv_convert_modify_action(&item, field, dcopy, resource,
+					  MLX5_MODIFICATION_TYPE_COPY,
+					  &error)) {
+		DRV_LOG(ERR, "Generate copy IPv6 protocol from srv6 next header failed");
+		return -1;
+	}
+	MLX5_ASSERT(resource->actions_num == 1);
+	memcpy(mh_data, resource->actions, sizeof(struct mlx5_modification_cmd));
+	*anchor_id = priv->sh->srh_flex_parser.flex.devx_fp->anchor_id;
+	return 1;
+}
+
 /**
  * Validate MARK item.
  *
-- 
2.27.0


  parent reply	other threads:[~2023-04-17  9:26 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-17  9:25 [PATCH v1 0/8] add IPv6 extension push remove Rongwei Liu
2023-04-17  9:25 ` [PATCH v1 1/8] ethdev: add IPv6 extension push remove action Rongwei Liu
2023-05-24  6:55   ` Ori Kam
2023-05-24  7:39     ` [PATCH v1 0/2] add IPv6 extension push remove Rongwei Liu
2023-05-24  7:39       ` [PATCH v1 1/2] ethdev: add IPv6 extension push remove action Rongwei Liu
2023-05-24 10:30         ` Ori Kam
2023-05-24  7:39       ` [PATCH v1 2/2] app/testpmd: add IPv6 extension push remove cli Rongwei Liu
2023-06-02 14:39       ` [PATCH v1 0/2] add IPv6 extension push remove Ferruh Yigit
2023-07-10  2:32         ` Rongwei Liu
2023-07-10  8:55           ` Ferruh Yigit
2023-07-10 14:41             ` Stephen Hemminger
2023-07-11  6:16               ` Thomas Monjalon
2023-09-19  8:12                 ` [PATCH v3] net/mlx5: add test for live migration Rongwei Liu
2023-10-16  8:19                   ` Thomas Monjalon
2023-10-16  8:25                     ` Rongwei Liu
2023-10-16  9:26                       ` Rongwei Liu
2023-10-16  9:26                       ` Thomas Monjalon
2023-10-16  9:29                         ` Rongwei Liu
2023-10-25  9:07                           ` Rongwei Liu
2023-10-16  9:22                     ` [PATCH v4] " Rongwei Liu
2023-10-25  9:36                       ` [PATCH v5] " Rongwei Liu
2023-10-25  9:41                         ` Thomas Monjalon
2023-10-25  9:45                           ` [PATCH v6] " Rongwei Liu
2023-10-25  9:48                           ` [PATCH v5] " Rongwei Liu
2023-10-25  9:50                           ` [PATCH v7] " Rongwei Liu
2023-10-25 13:10                             ` Thomas Monjalon
2023-10-26  8:15                             ` Raslan Darawsheh
2023-04-17  9:25 ` [PATCH v1 2/8] app/testpmd: add IPv6 extension push remove cli Rongwei Liu
2023-05-24  7:06   ` Ori Kam
2023-04-17  9:25 ` [PATCH v1 3/8] net/mlx5/hws: add no reparse support Rongwei Liu
2023-04-17  9:25 ` [PATCH v1 4/8] net/mlx5: sample the srv6 last segment Rongwei Liu
2023-10-31  9:42   ` [PATCH v2 0/6] support IPv6 extension push remove Rongwei Liu
2023-10-31  9:42     ` [PATCH v2 1/6] net/mlx5: sample the srv6 last segment Rongwei Liu
2023-10-31  9:42     ` [PATCH v2 2/6] net/mlx5/hws: fix potential wrong errno value Rongwei Liu
2023-10-31  9:42     ` [PATCH v2 3/6] net/mlx5/hws: add IPv6 routing extension push remove actions Rongwei Liu
2023-10-31  9:42     ` [PATCH v2 4/6] net/mlx5/hws: add setter for IPv6 routing push remove Rongwei Liu
2023-10-31  9:42     ` [PATCH v2 5/6] net/mlx5: implement " Rongwei Liu
2023-10-31  9:42     ` [PATCH v2 6/6] net/mlx5/hws: add stc reparse support for srv6 push pop Rongwei Liu
2023-10-31 10:51     ` [PATCH v3 0/6] support IPv6 extension push remove Rongwei Liu
2023-10-31 10:51       ` [PATCH v3 1/6] net/mlx5: sample the srv6 last segment Rongwei Liu
2023-10-31 10:51       ` [PATCH v3 2/6] net/mlx5/hws: fix potential wrong errno value Rongwei Liu
2023-10-31 10:51       ` [PATCH v3 3/6] net/mlx5/hws: add IPv6 routing extension push remove actions Rongwei Liu
2023-10-31 10:51       ` [PATCH v3 4/6] net/mlx5/hws: add setter for IPv6 routing push remove Rongwei Liu
2023-10-31 10:51       ` [PATCH v3 5/6] net/mlx5: implement " Rongwei Liu
2023-10-31 10:51       ` [PATCH v3 6/6] net/mlx5/hws: add stc reparse support for srv6 push pop Rongwei Liu
2023-11-01  4:44       ` [PATCH v4 00/13] support IPv6 push remove action Rongwei Liu
2023-11-01  4:44         ` [PATCH v4 01/13] net/mlx5/hws: support insert header action Rongwei Liu
2023-11-01  4:44         ` [PATCH v4 02/13] net/mlx5/hws: support remove " Rongwei Liu
2023-11-01  4:44         ` [PATCH v4 03/13] net/mlx5/hws: allow jump to TIR over FDB Rongwei Liu
2023-11-01  4:44         ` [PATCH v4 04/13] net/mlx5/hws: support dynamic re-parse Rongwei Liu
2023-11-01  4:44         ` [PATCH v4 05/13] net/mlx5/hws: dynamic re-parse for modify header Rongwei Liu
2023-11-01  4:44         ` [PATCH v4 06/13] net/mlx5/hws: fix incorrect re-parse on complex rules Rongwei Liu
2023-11-01  4:44         ` [PATCH v4 07/13] net/mlx5: sample the srv6 last segment Rongwei Liu
2023-11-01  4:44         ` [PATCH v4 08/13] net/mlx5/hws: fix potential wrong rte_errno value Rongwei Liu
2023-11-01  4:44         ` [PATCH v4 09/13] net/mlx5/hws: add IPv6 routing extension push remove actions Rongwei Liu
2023-11-01  4:44         ` [PATCH v4 10/13] net/mlx5/hws: add setter for IPv6 routing push remove Rongwei Liu
2023-11-01  4:44         ` [PATCH v4 11/13] net/mlx5: implement " Rongwei Liu
2023-11-01  4:44         ` [PATCH v4 12/13] net/mlx5/hws: fix srv6 push compilation failure Rongwei Liu
2023-11-01  4:44         ` [PATCH v4 13/13] net/mlx5/hws: add stc reparse support for srv6 push pop Rongwei Liu
2023-11-02 13:44         ` [PATCH v4 00/13] support IPv6 push remove action Raslan Darawsheh
2023-04-17  9:25 ` Rongwei Liu [this message]
2023-04-17  9:25 ` [PATCH v1 6/8] net/mlx5/hws: add IPv6 routing extension push pop actions Rongwei Liu
2023-04-17  9:25 ` [PATCH v1 7/8] net/mlx5/hws: add setter for IPv6 routing push pop Rongwei Liu
2023-04-17  9:25 ` [PATCH v1 8/8] net/mlx5: implement " Rongwei Liu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230417092540.2617450-6-rongweil@nvidia.com \
    --to=rongweil@nvidia.com \
    --cc=dev@dpdk.org \
    --cc=matan@nvidia.com \
    --cc=orika@nvidia.com \
    --cc=thomas@monjalon.net \
    --cc=viacheslavo@nvidia.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).