Re: [dpdk-dev] [PATCH v2] net/mlx5: fix NVGRE matching

2019-07-23 Thread Raslan Darawsheh
Hi, > -Original Message- > From: dev On Behalf Of Dekel Peled > Sent: Monday, July 22, 2019 6:37 PM > To: Yongseok Koh ; Slava Ovsiienko > ; Shahaf Shuler > Cc: Jack Min ; Ori Kam ; > dev@dpdk.org; sta...@dpdk.org > Subject: [dpdk-dev] [PATCH v2] net/mlx5: fix N

Re: [dpdk-dev] [PATCH v2] net/mlx5: fix NVGRE matching

2019-07-22 Thread Jack Min
On Mon, 19-07-22, 18:36, Dekel Peled wrote: > NVGRE has a GRE header with c_rsvd0_ver value 0x2000 and protocol > value 0x6558. > These should be matched when item_nvgre is provided. > > This patch adds validation function of NVGRE item. > It also updates the translate function of NVGRE item, to a

[dpdk-dev] [PATCH v2] net/mlx5: fix NVGRE matching

2019-07-22 Thread Dekel Peled
NVGRE has a GRE header with c_rsvd0_ver value 0x2000 and protocol value 0x6558. These should be matched when item_nvgre is provided. This patch adds validation function of NVGRE item. It also updates the translate function of NVGRE item, to add the required values, if they were not specified. Ori