Re: [dpdk-dev] [PATCH v3 1/2] ethdev: add new ext hdr for gtp psc

2021-04-04 Thread Raslan Darawsheh
> -Original Message- > From: Ferruh Yigit > Sent: Thursday, April 1, 2021 7:51 PM > To: Raslan Darawsheh ; dev@dpdk.org > Cc: Ori Kam ; andrew.rybche...@oktetlabs.ru; > ivan.ma...@oktetlabs.ru; ying.a.w...@intel.com; olivier.m...@6wind.com; > Slava Ovsiienko ; Shiri Kuzin > Subject: Re:

Re: [dpdk-dev] [PATCH v3 2/2] ethdev: update qfi definition

2021-04-04 Thread Raslan Darawsheh
Hi Ferruh, > -Original Message- > From: Ferruh Yigit > Sent: Thursday, April 1, 2021 7:54 PM > To: Raslan Darawsheh ; dev@dpdk.org > Cc: Ori Kam ; andrew.rybche...@oktetlabs.ru; > ivan.ma...@oktetlabs.ru; ying.a.w...@intel.com; olivier.m...@6wind.com; > Slava Ovsiienko ; Shiri Kuzin ; > s

[dpdk-dev] [PATCH v4 0/2] fix gtp psc qfi support

2021-04-04 Thread Raslan Darawsheh
This is fixing the gtp psc support to match the RFC 38415-g30 v2: introduce new header definition for gtp psc update commit msg for rte flow item change. v3: fixed typo in comment Cc relevant people. v4: update hdr definition to have hdr suffix. update variable name to be hdr in the

[dpdk-dev] [PATCH v4 2/2] ethdev: update qfi definition

2021-04-04 Thread Raslan Darawsheh
qfi field is 8 bits which represent single bit for PPP (paging Policy Presence) single bit for RQI (Reflective QoS Indicator) and 6 bits for qfi (QoS Flow Identifier) based on RFC 38415-g30 This update the doxygen format and the mask for qfi to properly identify the full 8 bits of the field. note

[dpdk-dev] [PATCH v4 1/2] ethdev: add new ext hdr for gtp psc

2021-04-04 Thread Raslan Darawsheh
Define new rte header for gtp PDU session container based on RFC 38415-g30 Signed-off-by: Raslan Darawsheh --- lib/librte_net/rte_gtp.h | 34 ++ 1 file changed, 34 insertions(+) diff --git a/lib/librte_net/rte_gtp.h b/lib/librte_net/rte_gtp.h index 6a6f9b238d..08

[dpdk-dev] [PATCH v4 0/7] Add support for VXLAN and NVGRE encap as a sample actions

2021-04-04 Thread Salem Sol
This series adds support for VXLAN and NVGRE encap as a sample actions with the proper documentation, this series depends on [1] and [2] for the documentation part. [1] http://patches.dpdk.org/project/dpdk/patch/1615907899-399082-1-git-send-email-jiaw...@nvidia.com/ [2] http://patches.dpdk.org/

[dpdk-dev] [PATCH v4 2/7] net/mlx5: support VXLAN encap action in sample

2021-04-04 Thread Salem Sol
Add support for VXLAN encap as a sample action and validate it. Signed-off-by: Salem Sol --- doc/guides/rel_notes/release_21_05.rst | 6 ++ drivers/net/mlx5/mlx5_flow_dv.c| 11 +++ 2 files changed, 17 insertions(+) diff --git a/doc/guides/rel_notes/release_21_05.rst b/doc/

[dpdk-dev] [PATCH v4 4/7] app/testpmd: support VXLAN encap for sample action

2021-04-04 Thread Salem Sol
Add support for rte_flow_action_vxlan_encap as a sample action. The example of test-pmd command: 1. set vxlan ip-version ... vni ... udp-src ... set raw_encap 1 eth src.../ ipv4.../... set sample_actions 2 vxlan_encap / port_id id 0 / end flow create 0 ... pattern eth / end actions

[dpdk-dev] [PATCH v4 1/7] app/testpmd: store VXLAN/NVGRE encap data globally

2021-04-04 Thread Salem Sol
From: Jiawei Wang With the current code the VXLAN/NVGRE parsing routine stored the configuration of the header on stack, this might lead to overwriting the data on the stack. This patch stores the external data of vxlan and nvgre encap into global data as a pre-step to supporting vxlan and nvgre

[dpdk-dev] [PATCH v4 3/7] net/mlx5: support NVGRE encap action in sample

2021-04-04 Thread Salem Sol
Add support for NVGRE encap as a sample action and validate it. Signed-off-by: Salem Sol --- doc/guides/rel_notes/release_21_05.rst | 2 +- drivers/net/mlx5/mlx5_flow_dv.c| 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/guides/rel_notes/release_21_05.rst b/doc/g

[dpdk-dev] [PATCH v4 5/7] app/testpmd: support NVGRE encap for sample action

2021-04-04 Thread Salem Sol
Add support for rte_flow_action_nvge_encap as a sample action. The example of test-pmd command: 1. set nvgre ip-version ... tni ... ip-src ... ip-dst ... set raw_encap 1 eth src... / ipv4... /... set sample_actions 2 nvgre / port_id id 0 / end flow create 0 ... pattern eth / end acti

[dpdk-dev] [PATCH v4 6/7] doc: update sample actions support in testpmd guide

2021-04-04 Thread Salem Sol
Update documentation for sample action usage in testpmd utilizing rte_flow_action_vxlan_encap and rte_flow_action_nvgre_encap and show the command line example. Signed-off-by: Salem Sol --- doc/guides/testpmd_app_ug/testpmd_funcs.rst | 24 + 1 file changed, 24 insertions(+)

[dpdk-dev] [PATCH v4 7/7] doc: update sample actions support in mlx5 guide

2021-04-04 Thread Salem Sol
Updates the documentation with the added support for sample actions VXLAN and NVGRE encap in E-Switch steering flow. Signed-off-by: Salem Sol --- doc/guides/nics/mlx5.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/guides/nics/mlx5.rst b/doc/guides/nics/mlx5.rst i

Re: [dpdk-dev] [PATCH 1/2] [RFC]: ethdev: add pre-defined meter policy API

2021-04-04 Thread Matan Azrad
Hi Cristian From: Dumitrescu, Cristian > Hi Matan, > > > -Original Message- > > From: Matan Azrad > > Sent: Monday, March 29, 2021 9:44 PM > > To: Dumitrescu, Cristian ; Li Zhang > > ; Dekel Peled ; Ori Kam > > ; Slava Ovsiienko ; Shahaf > > Shuler ; lir...@marvell.com; Singh, Jasvinder

[dpdk-dev] vfio error

2021-04-04 Thread hamidreza Kheirabadi
Hi, I have a dpdk application which binds nic with igb_uio. My problem is whenever the kernel updates, I must recompile igb_uio.ko as well. I want to use vfio instead but I got an error: Error: bind failed for :06:00.0 - Cannot bind to driver vfio-pci Error: unbind failed for :06:00.0 - Ca

Re: [dpdk-dev] vfio error

2021-04-04 Thread Stephen Hemminger
Look at kernel log (dmesg). Probably you don't have VT-d enabled. On Sun, Apr 4, 2021, 7:40 AM hamidreza Kheirabadi < hamidreza.kheirab...@gmail.com> wrote: > Hi, > I have a dpdk application which binds nic with igb_uio. My problem is > whenever the kernel updates, I must recompile igb_uio.ko a

[dpdk-dev] [PATCH v2] cryptodev: support multiple cipher data-units

2021-04-04 Thread Matan Azrad
In cryptography, a block cipher is a deterministic algorithm operating on fixed-length groups of bits, called blocks. A block cipher consists of two paired algorithms, one for encryption and the other for decryption. Both algorithms accept two inputs: an input block of size n bits and a key of siz

Re: [dpdk-dev] [PATCH v4 3/3] test/event_crypto: use crypto adapter enqueue API

2021-04-04 Thread Shijith Thotton
On Sat, Apr 03, 2021 at 11:08:28AM +, Gujjar, Abhinandan S wrote: > > > > -Original Message- > > From: Shijith Thotton > > Sent: Friday, April 2, 2021 10:31 PM > > To: dev@dpdk.org > > Cc: Shijith Thotton ; tho...@monjalon.net; > > jer...@marvell.com; Gujjar, Abhinandan S ; > > heman

Re: [dpdk-dev] [PATCH RFC] raw: add dpaa qdma driver

2021-04-04 Thread Gagandeep Singh
Hi Thomas, > -Original Message- > From: Thomas Monjalon > Sent: Thursday, March 25, 2021 2:56 AM > To: Gagandeep Singh ; Hemant Agrawal > > Cc: dev@dpdk.org; Nipun Gupta ; Peng Ma > > Subject: Re: [dpdk-dev] [PATCH RFC] raw: add dpaa qdma driver > > 25/09/2020 08:10, Hemant Agrawal: >