Re: [dpdk-dev] [PATCH v3 1/4] ethdev: fix integrity flow item
From: Ori Kam <hidden>
Date: 2021-05-02 05:54:23
Hi
-----Original Message----- From: Ajit Khaparde <ajit.khaparde@broadcom.com> Sent: Friday, April 30, 2021 12:20 AM To: Gregory Etelson <redacted> Subject: Re: [PATCH v3 1/4] ethdev: fix integrity flow item On Thu, Apr 29, 2021 at 11:37 AM Gregory Etelson [off-list ref] wrote:quoted
Add integrity item definition to the rte_flow_desc_item array. The new entry allows to build RTE flow item from a data stored in rte_flow_item_integrity type. Fixes: b10a421a1f3b ("ethdev: add packet integrity check flow rules") Signed-off-by: Gregory Etelson <redacted> Acked-by: Viacheslav Ovsiienko <redacted>Acked-by: Ajit Khaparde <ajit.khaparde@broadcom.com>quoted
--- lib/ethdev/rte_flow.c | 1 + 1 file changed, 1 insertion(+)diff --git a/lib/ethdev/rte_flow.c b/lib/ethdev/rte_flow.c index c7c7108933..8cb7a069c8 100644 --- a/lib/ethdev/rte_flow.c +++ b/lib/ethdev/rte_flow.c@@ -98,6 +98,7 @@ static const struct rte_flow_desc_datarte_flow_desc_item[] = {quoted
MK_FLOW_ITEM(PFCP, sizeof(struct rte_flow_item_pfcp)), MK_FLOW_ITEM(ECPRI, sizeof(struct rte_flow_item_ecpri)), MK_FLOW_ITEM(GENEVE_OPT, sizeof(structrte_flow_item_geneve_opt)),quoted
+ MK_FLOW_ITEM(INTEGRITY, sizeof(struct rte_flow_item_integrity)), MK_FLOW_ITEM(CONNTRACK, sizeof(uint32_t)), }; -- 2.31.1
Acked-by: Ori Kam <redacted> Best, Ori