Re: [dpdk-dev] aligned commit logs

2019-06-30 Thread Ivan Malov
Hi Thomas, I must confess that such compactness is somewhat distinct, and it might look pretty strange. But please rest assured that it does not stand for some really special thing. So, this occasional finding can be taken with a grain of salt. Ivan On 29.06.2019 22:49, Thomas Monjalon wrot

[dpdk-dev] [PATCH v8 0/3] add actions to modify header fields

2019-06-30 Thread Dekel Peled
Patch [1] implemented set of header modification actions in MLX PMD, based on ethdev and testpmd updates included in [2]. This series implements support of additional header modification actions, in ethdev, testpmd, and MLX5 PMD. Original work by Xiaoyu Min. [1] http://patches.dpdk.org/patch/4931

[dpdk-dev] [PATCH v8 3/3] net/mlx5: update modify header using Direct Verbs

2019-06-30 Thread Dekel Peled
This patch implements additional actions of packet header modifications. Add actions: - INC_TCP_SEQ - Increase sequence number in the outermost TCP header. - DEC_TCP_SEQ - Decrease sequence number in the outermost TCP header. - INC_TCP_ACK - Increase acknowledgment number in the outermost TCP

[dpdk-dev] [PATCH v8 2/3] app/testpmd: add actions to modify TCP header fields

2019-06-30 Thread Dekel Peled
Add actions: - INC_TCP_SEQ - Increase sequence number in the outermost TCP header. - DEC_TCP_SEQ - Decrease sequence number in the outermost TCP header. - INC_TCP_ACK - Increase acknowledgment number in the outermost TCP header. - DEC_TCP_ACK - Decrease acknowledgment number in the

[dpdk-dev] [PATCH v8 1/3] ethdev: add actions to modify TCP header fields

2019-06-30 Thread Dekel Peled
Add actions: - INC_TCP_SEQ - Increase sequence number in the outermost TCP header. - DEC_TCP_SEQ - Decrease sequence number in the outermost TCP header. - INC_TCP_ACK - Increase acknowledgment number in the outermost TCP header. - DEC_TCP_ACK - Decrease acknowledgment number in the

Re: [dpdk-dev] [PATCH] cryptodev: extend api of asymmetric crypto by sessionless

2019-06-30 Thread Shally Verma
> -Original Message- > From: Trahe, Fiona > Sent: Friday, June 28, 2019 10:58 PM > To: Shally Verma ; Akhil Goyal ; > Kusztal, ArkadiuszX ; dev@dpdk.org > Cc: Trahe, Fiona > Subject: [EXT] RE: [PATCH] cryptodev: extend api of asymmetric crypto by > sessionless > > External Email > >

Re: [dpdk-dev] [EXT] [PATCH 1/3] cryptodev: rework api of rsa algorithm

2019-06-30 Thread Shally Verma
> -Original Message- > From: Trahe, Fiona > Sent: Friday, June 28, 2019 10:25 PM > To: Kusztal, ArkadiuszX ; Shally Verma > ; dev@dpdk.org > Cc: akhil.go...@nxp.com; shally.ve...@caviumnetworks.com; Trahe, Fiona > > Subject: RE: [EXT] [PATCH 1/3] cryptodev: rework api of rsa algorithm

Re: [dpdk-dev] [EXT] [PATCH v4 2/6] app/test-compress-perf: add ptest command line option

2019-06-30 Thread Shally Verma
> -Original Message- > From: Tomasz Jozwiak > Sent: Friday, June 28, 2019 3:56 AM > To: dev@dpdk.org; fiona.tr...@intel.com; tjozwia...@gmail.com; Shally > Verma ; arturx.tryb...@intel.com > Subject: [EXT] [PATCH v4 2/6] app/test-compress-perf: add ptest command > line option > > Exter

Re: [dpdk-dev] [EXT] [PATCH v4 3/6] app/test-compress-perf: add verification test case

2019-06-30 Thread Shally Verma
> -Original Message- > From: Tomasz Jozwiak > Sent: Friday, June 28, 2019 3:56 AM > To: dev@dpdk.org; fiona.tr...@intel.com; tjozwia...@gmail.com; Shally > Verma ; arturx.tryb...@intel.com > Subject: [EXT] [PATCH v4 3/6] app/test-compress-perf: add verification test > case > > External

Re: [dpdk-dev] [EXT] [PATCH v4 5/6] doc: update dpdk-test-compress-perf description

2019-06-30 Thread Shally Verma
> -Original Message- > From: Tomasz Jozwiak > Sent: Friday, June 28, 2019 3:56 AM > To: dev@dpdk.org; fiona.tr...@intel.com; tjozwia...@gmail.com; Shally > Verma ; arturx.tryb...@intel.com > Subject: [EXT] [PATCH v4 5/6] doc: update dpdk-test-compress-perf > description > > External Em

Re: [dpdk-dev] [EXT] [PATCH v4 6/6] app/test-compress-perf: add force process termination

2019-06-30 Thread Shally Verma
> -Original Message- > From: Tomasz Jozwiak > Sent: Friday, June 28, 2019 3:56 AM > To: dev@dpdk.org; fiona.tr...@intel.com; tjozwia...@gmail.com; Shally > Verma ; arturx.tryb...@intel.com > Subject: [EXT] [PATCH v4 6/6] app/test-compress-perf: add force process > termination > > Exter

[dpdk-dev] [RFC 2/5] ticketlock: use new API to reduce contention on aarch64

2019-06-30 Thread Gavin Hu
While using ticket lock, cores repeatedly poll the lock variable. This is replaced by rte_wait_until_equal API. Running ticketlock_autotest on ThunderX2, with different numbers of cores and depths of rings, 3%~8% performance gains were measured. Signed-off-by: Gavin Hu Reviewed-by: Honnappa Naga

[dpdk-dev] [RFC 3/5] ring: use wfe to wait for ring tail update on aarch64

2019-06-30 Thread Gavin Hu
Instead of polling for tail to be updated, use wfe instruction. 50%~70% performance gain was measured by running ring_perf_autotest on ThunderX2. Signed-off-by: Gavin Hu Reviewed-by: Ruifeng Wang Reviewed-by: Steve Capper Reviewed-by: Ola Liljedahl Reviewed-by: Honnappa Nagarahalli --- lib

[dpdk-dev] [RFC 0/5] use WFE for locks and ring on aarch64

2019-06-30 Thread Gavin Hu
DPDK has multiple use cases where the core repeatedly polls a location in memory. This polling results in many cache and memory transactions. Arm architecture provides WFE (Wait For Event) instruction, which allows the cpu core to enter a low power state until woken up by the update to the memory

[dpdk-dev] [RFC 1/5] eal: add the APIs to wait until equal

2019-06-30 Thread Gavin Hu
The rte_wait_until_equal_xxx APIs abstract the functionality of 'polling for a memory location to become equal to a given value'. Signed-off-by: Gavin Hu Reviewed-by: Ruifeng Wang Reviewed-by: Steve Capper Reviewed-by: Ola Liljedahl Reviewed-by: Honnappa Nagarahalli --- .../common/include/ar

[dpdk-dev] [RFC 4/5] spinlock: use wfe to reduce contention on aarch64

2019-06-30 Thread Gavin Hu
In acquiring a spinlock, cores repeatedly poll the lock variable. This is replaced by rte_wait_until_equal API. 20% performance gain was measured by running spinlock_autotest on 14 isolated cores of ThunderX2. Signed-off-by: Gavin Hu Reviewed-by: Ruifeng Wang Reviewed-by: Phil Yang Reviewed-by

[dpdk-dev] [RFC 5/5] config: add WFE config entry for aarch64

2019-06-30 Thread Gavin Hu
Add the RTE_USE_WFE configuration entry for aarch64, disabled by default. It can be enabled selectively based on the performance benchmarking. Signed-off-by: Gavin Hu Reviewed-by: Ruifeng Wang Reviewed-by: Steve Capper Reviewed-by: Honnappa Nagarahalli --- config/arm/meson.build | 1 + co

[dpdk-dev] [PATCH 1/2] app/eventdev: fix order test port creation

2019-06-30 Thread pbhagavatula
From: Pavan Nikhilesh Configure event ports based on the underlying event device info rather than using hardcoded values. Cc: sta...@dpdk.org Fixes: 5710e751813e ("app/testeventdev: add order port setup") Signed-off-by: Pavan Nikhilesh --- app/test-eventdev/test_order_common.c | 32 ++

[dpdk-dev] [PATCH 2/2] test/eventdev: fix producer core validity checks

2019-06-30 Thread pbhagavatula
From: Pavan Nikhilesh When producer type is event timer adapter producer lcore checks are skipped. Since, timer adapter relies on SW to arm timers producer lcore is essential for its functionality. Verify producer lcore validity when producer type is event timer adapter. Cc: sta...@dpdk.org Fixe

[dpdk-dev] [PATCH v2 00/57] OCTEON TX2 Ethdev driver

2019-06-30 Thread jerinj
From: Jerin Jacob This patchset adds support for OCTEON TX2 ethdev driver. v2: # Moved maintainers file to the first patch(Ferruh) # removed reference to to v19.05(Ferruh) # Makefile/Meson CFLAGS moved to specific patches(Ferruh) # Move Documentation updates to specific patches(Ferruh) # rework

[dpdk-dev] [PATCH v2 02/57] net/octeontx2: add ethdev probe and remove

2019-06-30 Thread jerinj
From: Jerin Jacob add basic PCIe ethdev probe and remove. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram --- drivers/net/octeontx2/Makefile | 8 ++- drivers/net/octeontx2/meson.build | 14 - drivers/net/octeontx2/otx2_ethdev.c | 93 + drive

[dpdk-dev] [PATCH v2 01/57] net/octeontx2: add build and doc infrastructure

2019-06-30 Thread jerinj
From: Jerin Jacob Adding bare minimum PMD library and doc build infrastructure and claim the maintainership for octeontx2 PMD. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram Signed-off-by: Kiran Kumar K --- MAINTAINERS | 9 ++ config/common

[dpdk-dev] [PATCH v2 03/57] net/octeontx2: add device init and uninit

2019-06-30 Thread jerinj
From: Jerin Jacob Add basic init and uninit function which includes attaching LF device to probed PCIe device. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram Signed-off-by: Sunil Kumar Kori Signed-off-by: Vamsi Attunuru --- drivers/net/octeontx2/Makefile | 1 + drivers/n

[dpdk-dev] [PATCH v2 04/57] net/octeontx2: add devargs parsing functions

2019-06-30 Thread jerinj
From: Jerin Jacob add various devargs command line options supported by this driver. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram Signed-off-by: Pavan Nikhilesh Signed-off-by: Kiran Kumar K Signed-off-by: Vamsi Attunuru --- doc/guides/nics/octeontx2.rst | 67 +

[dpdk-dev] [PATCH v2 05/57] net/octeontx2: handle device error interrupts

2019-06-30 Thread jerinj
From: Jerin Jacob Handle device specific error and ras interrupts. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram Signed-off-by: Harman Kalra --- drivers/net/octeontx2/Makefile | 1 + drivers/net/octeontx2/meson.build | 1 + drivers/net/octeontx2/otx2_ethdev.c

[dpdk-dev] [PATCH v2 06/57] net/octeontx2: add info get operation

2019-06-30 Thread jerinj
From: Jerin Jacob Add device information get operation. Signed-off-by: Jerin Jacob Signed-off-by: Vamsi Attunuru Signed-off-by: Harman Kalra --- doc/guides/nics/features/octeontx2.ini | 4 ++ doc/guides/nics/features/octeontx2_vec.ini | 4 ++ doc/guides/nics/features/octeontx2_vf.ini

[dpdk-dev] [PATCH v2 07/57] net/octeontx2: add device configure operation

2019-06-30 Thread jerinj
From: Jerin Jacob Add device configure operation. This would call lf_alloc mailbox to allocate a NIX LF and upon return, AF will return the attributes for the select LF. Signed-off-by: Jerin Jacob Signed-off-by: Vamsi Attunuru Signed-off-by: Nithin Dabilpuram --- drivers/net/octeontx2/otx2_e

[dpdk-dev] [PATCH v2 10/57] net/octeontx2: add register dump support

2019-06-30 Thread jerinj
From: Kiran Kumar K Add register dump support and mark Registers dump in features. Signed-off-by: Kiran Kumar K Signed-off-by: Jerin Jacob --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/features/octeontx2_vec.ini | 1 + doc/guides/nics/features/octeontx2_vf.ini |

[dpdk-dev] [PATCH v2 08/57] net/octeontx2: handle queue specific error interrupts

2019-06-30 Thread jerinj
From: Jerin Jacob Handle queue specific error interrupts. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram --- doc/guides/nics/octeontx2.rst | 1 + drivers/net/octeontx2/otx2_ethdev.c | 16 +- drivers/net/octeontx2/otx2_ethdev.h | 9 ++ drivers/net/octeontx2/

[dpdk-dev] [PATCH v2 09/57] net/octeontx2: add context debug utils

2019-06-30 Thread jerinj
From: Jerin Jacob Add RQ,SQ,CQ context and CQE structure dump utils. Signed-off-by: Jerin Jacob Signed-off-by: Vivek Sharma --- doc/guides/nics/octeontx2.rst | 2 +- drivers/net/octeontx2/Makefile| 1 + drivers/net/octeontx2/meson.build | 1 + drivers/net

[dpdk-dev] [PATCH v2 11/57] net/octeontx2: add link stats operations

2019-06-30 Thread jerinj
From: Vamsi Attunuru Add link stats related operations and mark respective items in the documentation. Signed-off-by: Vamsi Attunuru Signed-off-by: Nithin Dabilpuram --- doc/guides/nics/features/octeontx2.ini | 2 + doc/guides/nics/features/octeontx2_vec.ini | 2 + doc/guides/nics/fea

[dpdk-dev] [PATCH v2 13/57] net/octeontx2: add extended stats operations

2019-06-30 Thread jerinj
From: Kiran Kumar K Add extended operations and updated the feature list. Signed-off-by: Kiran Kumar K Signed-off-by: Vamsi Attunuru --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/features/octeontx2_vec.ini | 1 + doc/guides/nics/features/octeontx2_vf.ini | 1 +

[dpdk-dev] [PATCH v2 15/57] net/octeontx2: add unicast MAC filter

2019-06-30 Thread jerinj
From: Sunil Kumar Kori Add unicast MAC filter for PF device and update the respective feature list. Signed-off-by: Sunil Kumar Kori Signed-off-by: Vamsi Attunuru --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/features/octeontx2_vec.ini | 1 + doc/guides/nics/octeontx2

[dpdk-dev] [PATCH v2 12/57] net/octeontx2: add basic stats operation

2019-06-30 Thread jerinj
From: Kiran Kumar K Add basic stat operation and updated the feature list. Signed-off-by: Kiran Kumar K Signed-off-by: Vamsi Attunuru --- doc/guides/nics/features/octeontx2.ini | 2 + doc/guides/nics/features/octeontx2_vec.ini | 2 + doc/guides/nics/features/octeontx2_vf.ini | 2 +

[dpdk-dev] [PATCH v2 14/57] net/octeontx2: add promiscuous and allmulticast mode

2019-06-30 Thread jerinj
From: Vamsi Attunuru Add promiscuous and allmulticast mode for PF devices and update the respective feature list. Signed-off-by: Vamsi Attunuru Signed-off-by: Sunil Kumar Kori --- doc/guides/nics/features/octeontx2.ini | 2 + doc/guides/nics/features/octeontx2_vec.ini | 2 + doc/guides/

[dpdk-dev] [PATCH v2 18/57] net/octeontx2: add Tx queue setup and release

2019-06-30 Thread jerinj
From: Jerin Jacob Add Tx queue setup and release. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/features/octeontx2_vec.ini | 1 + doc/guides/nics/features/octeontx2_vf.ini | 1 + doc/guides/nics/octeont

[dpdk-dev] [PATCH v2 16/57] net/octeontx2: add RSS support

2019-06-30 Thread jerinj
From: Vamsi Attunuru Add RSS support and expose RSS related functions to implement RSS action for rte_flow driver. Signed-off-by: Vamsi Attunuru Signed-off-by: Kiran Kumar K --- doc/guides/nics/features/octeontx2.ini | 4 + doc/guides/nics/features/octeontx2_vec.ini | 4 + doc/guides/

[dpdk-dev] [PATCH v2 20/57] net/octeontx2: add queue start and stop operations

2019-06-30 Thread jerinj
From: Nithin Dabilpuram Add queue start and stop operations. Tx queue needs to update the flow control value, Which will be added in sub subsequent patch. Signed-off-by: Nithin Dabilpuram Signed-off-by: Vamsi Attunuru --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/feat

[dpdk-dev] [PATCH v2 21/57] net/octeontx2: introduce traffic manager

2019-06-30 Thread jerinj
From: Nithin Dabilpuram Introduce traffic manager infra and default hierarchy creation. Upon ethdev configure, a default hierarchy is created with one-to-one mapped tm nodes. This topology will be overridden when user explicitly creates and commits a new hierarchy using rte_tm interface. Signed

[dpdk-dev] [PATCH v2 19/57] net/octeontx2: handle port reconfigure

2019-06-30 Thread jerinj
From: Vamsi Attunuru setup tx & rx queues with the previous configuration during port reconfig, it handles cases like port reconfigure without reconfiguring tx & rx queues. Signed-off-by: Vamsi Attunuru Signed-off-by: Nithin Dabilpuram --- drivers/net/octeontx2/otx2_ethdev.c | 180 +++

[dpdk-dev] [PATCH v2 17/57] net/octeontx2: add Rx queue setup and release

2019-06-30 Thread jerinj
From: Jerin Jacob Add Rx queue setup and release. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram Signed-off-by: Vamsi Attunuru --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/features/octeontx2_vec.ini | 1 + doc/guides/nics/features/octeontx2_vf.ini |

[dpdk-dev] [PATCH v2 22/57] net/octeontx2: alloc and free TM HW resources

2019-06-30 Thread jerinj
From: Krzysztof Kanas Allocate and free shaper/scheduler hardware resources for nodes of hirearchy levels in sw. Signed-off-by: Krzysztof Kanas Signed-off-by: Nithin Dabilpuram --- drivers/net/octeontx2/otx2_tm.c | 350 1 file changed, 350 insertions(+) diff

[dpdk-dev] [PATCH v2 23/57] net/octeontx2: configure TM HW resources

2019-06-30 Thread jerinj
From: Nithin Dabilpuram This patch sets up and configure hierarchy in hw nodes. Since all the registers are with RVU AF, register configuration is also done using mbox communication. Signed-off-by: Nithin Dabilpuram Signed-off-by: Krzysztof Kanas --- drivers/net/octeontx2/otx2_tm.c | 504

[dpdk-dev] [PATCH v2 27/57] net/octeontx2: add Rx and Tx descriptor operations

2019-06-30 Thread jerinj
From: Jerin Jacob Add Rx and Tx queue descriptor related operations. Signed-off-by: Jerin Jacob Signed-off-by: Kiran Kumar K --- doc/guides/nics/features/octeontx2.ini | 2 + doc/guides/nics/features/octeontx2_vec.ini | 2 + doc/guides/nics/features/octeontx2_vf.ini | 2 + drivers/net

[dpdk-dev] [PATCH v2 26/57] net/octeontx2: add queue info and pool supported operations

2019-06-30 Thread jerinj
From: Nithin Dabilpuram Add Rx and Tx queue info get and pool ops supported operations. Signed-off-by: Nithin Dabilpuram Signed-off-by: Kiran Kumar K --- drivers/net/octeontx2/otx2_ethdev.c | 3 ++ drivers/net/octeontx2/otx2_ethdev.h | 5 +++ drivers/net/octeontx2/otx2_ethdev_ops.c

[dpdk-dev] [PATCH v2 24/57] net/octeontx2: enable Tx through traffic manager

2019-06-30 Thread jerinj
From: Krzysztof Kanas This patch enables pkt transmit through traffic manager hierarchy by clearing software XOFF on the nodes and linking tx queues to corresponding leaf nodes. It also adds support to start and stop tx queue using traffic manager. Signed-off-by: Krzysztof Kanas Signed-off-by:

[dpdk-dev] [PATCH v2 25/57] net/octeontx2: add ptype support

2019-06-30 Thread jerinj
From: Jerin Jacob The fields from CQE needs to be converted to ptype and rx ol flags in mbuf. This patch adds create lookup memory for those items to be used in Fastpath. Signed-off-by: Jerin Jacob Signed-off-by: Kiran Kumar K Signed-off-by: Harman Kalra --- doc/guides/nics/features/octeontx

[dpdk-dev] [PATCH v2 29/57] net/octeontx2: add flow control support

2019-06-30 Thread jerinj
From: Vamsi Attunuru Add flow control operations and exposed otx2_nix_update_flow_ctrl_mode() to enable on the configured mode in dev_start(). Signed-off-by: Vamsi Attunuru Signed-off-by: Nithin Dabilpuram --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/features/octeon

[dpdk-dev] [PATCH v2 28/57] net/octeontx2: add module EEPROM dump

2019-06-30 Thread jerinj
From: Vamsi Attunuru add module EEPROM dump operation. Signed-off-by: Vamsi Attunuru --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/features/octeontx2_vec.ini | 1 + doc/guides/nics/features/octeontx2_vf.ini | 1 + drivers/net/octeontx2/otx2_ethdev.c| 2 + d

[dpdk-dev] [PATCH v2 36/57] net/octeontx2: add flow parsing for outer layers

2019-06-30 Thread jerinj
From: Kiran Kumar K Adding functionality to parse outer layers from ld to lh. These will be used parse outer layers L2, L3, L4 and tunnel types. Signed-off-by: Kiran Kumar K Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/Makefile | 1 + drivers/net/octeontx2/meson.build

[dpdk-dev] [PATCH v2 37/57] net/octeontx2: add flow actions support

2019-06-30 Thread jerinj
From: Kiran Kumar K Adding support to parse flow actions like drop, count, mark, rss, queue. On egress side, only drop and count actions were supported. Signed-off-by: Kiran Kumar K Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/otx2_flow_parse.c | 210 1 file

[dpdk-dev] [PATCH v2 38/57] net/octeontx2: add flow parse actions support

2019-06-30 Thread jerinj
From: Kiran Kumar K Adding support to parse flow actions like drop, count, mark, rss, queue. On egress side, only drop and count actions were supported. Signed-off-by: Kiran Kumar K Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/otx2_flow_parse.c | 276 drivers

[dpdk-dev] [PATCH v2 39/57] net/octeontx2: add flow operations

2019-06-30 Thread jerinj
From: Kiran Kumar K Adding the initial flow ops like flow_create and flow_validate. These will be used to alloc and write flow rule to device and validate the flow rule. Signed-off-by: Kiran Kumar K Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/Makefile| 1 + drivers/net/octeont

[dpdk-dev] [PATCH v2 40/57] net/octeontx2: add flow destroy ops support

2019-06-30 Thread jerinj
From: Kiran Kumar K Adding few more flow operations like flow_destroy, flow_isolate and flow_flush. Signed-off-by: Kiran Kumar K Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/otx2_flow.c | 206 ++ drivers/net/octeontx2/otx2_rx.h | 3 + 2 files changed,

[dpdk-dev] [PATCH v2 44/57] net/octeontx2: support VLAN offloads

2019-06-30 Thread jerinj
From: Vivek Sharma Support configuring VLAN offloads for an ethernet device and dynamic promiscuous mode configuration for VLAN filters where filters are updated according to promiscuous mode of the device. Signed-off-by: Vivek Sharma --- doc/guides/nics/features/octeontx2.ini | 2 + doc

[dpdk-dev] [PATCH v2 43/57] net/octeontx2: implement VLAN utility functions

2019-06-30 Thread jerinj
From: Vivek Sharma Implement accessory functions needed for VLAN functionality. Introduce VLAN related structures as well. Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/Makefile | 1 + drivers/net/octeontx2/meson.build | 1 + drivers/net/octeontx2/otx2_ethdev.c | 10 ++ dri

[dpdk-dev] [PATCH v2 42/57] net/octeontx2: connect flow API to ethdev ops

2019-06-30 Thread jerinj
From: Vivek Sharma Connect rte_flow driver ops to ethdev via .filter_ctrl op. Signed-off-by: Vivek Sharma Signed-off-by: Kiran Kumar K --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/features/octeontx2_vec.ini | 1 + doc/guides/nics/features/octeontx2_vf.ini | 1 + d

[dpdk-dev] [PATCH v2 41/57] net/octeontx2: add flow init and fini

2019-06-30 Thread jerinj
From: Kiran Kumar K Adding the flow init and fini functionality. These will be called from dev init and will initialize and de-initialize the flow related memory. Signed-off-by: Kiran Kumar K Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/otx2_flow.c | 315 +

[dpdk-dev] [PATCH v2 47/57] net/octeontx2: add FW version get operation

2019-06-30 Thread jerinj
From: Vamsi Attunuru Add firmware version get operation. Signed-off-by: Vamsi Attunuru --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/features/octeontx2_vec.ini | 1 + doc/guides/nics/features/octeontx2_vf.ini | 1 + drivers/net/octeontx2/otx2_ethdev.c| 1 +

[dpdk-dev] [PATCH v2 32/57] net/octeontx2: introducing flow driver

2019-06-30 Thread jerinj
From: Kiran Kumar K Introducing flow infra for octeontx2. This will be used to maintain rte_flow rules. Create, destroy, validate, query, flush, isolate flow operations will be supported. Signed-off-by: Kiran Kumar K Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/otx2_flow.h | 388 +++

[dpdk-dev] [PATCH v2 31/57] net/octeontx2: add remaining PTP operations

2019-06-30 Thread jerinj
From: Harman Kalra Add remaining PTP configuration/slowpath operations. Timesync feature is available only for PF devices. Signed-off-by: Harman Kalra Signed-off-by: Zyta Szpak --- doc/guides/nics/features/octeontx2.ini | 2 + drivers/net/octeontx2/otx2_ethdev.c| 6 ++ drivers/net/oct

[dpdk-dev] [PATCH v2 46/57] net/octeontx2: support VLAN TPID and PVID for Tx

2019-06-30 Thread jerinj
From: Vivek Sharma Implement support for setting VLAN TPID and PVID for Tx packets. Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/otx2_ethdev.c | 2 + drivers/net/octeontx2/otx2_ethdev.h | 5 +- drivers/net/octeontx2/otx2_vlan.c | 193 3 files changed

[dpdk-dev] [PATCH v2 30/57] net/octeontx2: add PTP base support

2019-06-30 Thread jerinj
From: Harman Kalra Add PTP enable and disable operations. Signed-off-by: Harman Kalra Signed-off-by: Zyta Szpak --- doc/guides/nics/octeontx2.rst | 1 + drivers/net/octeontx2/Makefile | 1 + drivers/net/octeontx2/meson.build | 1 + drivers/net/octeontx2/otx2_ethdev.c | 22

[dpdk-dev] [PATCH v2 34/57] net/octeontx2: add flow mbox utility functions

2019-06-30 Thread jerinj
From: Kiran Kumar K Adding mailbox utility functions for rte_flow. These will be used to alloc, reserve and write the entries to the device on request. Signed-off-by: Kiran Kumar K Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/otx2_flow.h | 6 + drivers/net/octeontx2/otx2_flow

[dpdk-dev] [PATCH v2 33/57] net/octeontx2: add flow utility functions

2019-06-30 Thread jerinj
From: Kiran Kumar K First pass rte_flow utility functions for octeontx2. These will be used to communicate with AF driver. Signed-off-by: Kiran Kumar K Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/Makefile | 1 + drivers/net/octeontx2/meson.build | 1 + drivers/net

[dpdk-dev] [PATCH v2 49/57] net/octeontx2: add Rx multi segment version

2019-06-30 Thread jerinj
From: Nithin Dabilpuram Add multi segment version of packet Receive function. Signed-off-by: Nithin Dabilpuram Signed-off-by: Pavan Nikhilesh --- doc/guides/nics/features/octeontx2.ini | 2 + doc/guides/nics/features/octeontx2_vec.ini | 1 + doc/guides/nics/features/octeontx2_vf.ini |

[dpdk-dev] [PATCH v2 48/57] net/octeontx2: add Rx burst support

2019-06-30 Thread jerinj
From: Jerin Jacob Add Rx burst support. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram Signed-off-by: Pavan Nikhilesh Signed-off-by: Harman Kalra --- drivers/net/octeontx2/Makefile | 1 + drivers/net/octeontx2/meson.build | 2 +- drivers/net/octeontx2/otx2_ethdev.c |

[dpdk-dev] [PATCH v2 35/57] net/octeontx2: add flow MCAM utility functions

2019-06-30 Thread jerinj
From: Kiran Kumar K Adding MCAM utility functions to alloc and write the entries. These will be used to arrange the flow rules based on priority. Signed-off-by: Kiran Kumar K Signed-off-by: Vivek Sharma --- drivers/net/octeontx2/otx2_flow.h | 6 - drivers/net/octeontx2/otx2_flow_utils

[dpdk-dev] [PATCH v2 50/57] net/octeontx2: add Rx vector version

2019-06-30 Thread jerinj
From: Jerin Jacob Add vector version of packet Receive function. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram --- doc/guides/nics/octeontx2.rst | 1 + drivers/net/octeontx2/Makefile| 1 + drivers/net/octeontx2/meson.build | 2 + drivers/net/octeontx2/otx2_rx.c |

[dpdk-dev] [PATCH v2 45/57] net/octeontx2: support VLAN filters

2019-06-30 Thread jerinj
From: Vivek Sharma Support setting up VLAN filters so as to allow tagged packet's reception after VLAN HW Filter offload is enabled. Signed-off-by: Vivek Sharma --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/features/octeontx2_vec.ini | 1 + doc/guides/nics/features/

[dpdk-dev] [PATCH v2 54/57] net/octeontx2: add device start operation

2019-06-30 Thread jerinj
From: Nithin Dabilpuram Add device start operation and update the correct function pointers for Rx and Tx burst functions. This patch also update the octeontx2 NIC specific documentation. Signed-off-by: Nithin Dabilpuram Signed-off-by: Vamsi Attunuru Signed-off-by: Jerin Jacob --- doc/guide

[dpdk-dev] [PATCH v2 53/57] net/octeontx2: add Tx vector version

2019-06-30 Thread jerinj
From: Nithin Dabilpuram Add vector version of packet transmit function. Signed-off-by: Nithin Dabilpuram Signed-off-by: Pavan Nikhilesh --- drivers/net/octeontx2/otx2_tx.c | 883 +++- 1 file changed, 882 insertions(+), 1 deletion(-) diff --git a/drivers/net/octeon

[dpdk-dev] [PATCH v2 55/57] net/octeontx2: add device stop and close operations

2019-06-30 Thread jerinj
From: Nithin Dabilpuram Add device stop, close and reset operations. Signed-off-by: Nithin Dabilpuram Signed-off-by: Vamsi Attunuru --- drivers/net/octeontx2/otx2_ethdev.c | 75 + 1 file changed, 75 insertions(+) diff --git a/drivers/net/octeontx2/otx2_ethdev.c b

[dpdk-dev] [PATCH v2 57/57] net/octeontx2: add Rx interrupts support

2019-06-30 Thread jerinj
From: Harman Kalra This patch implements rx interrupts feature required for power saving. These interrupts can be enabled/disabled on demand. Signed-off-by: Harman Kalra --- doc/guides/nics/features/octeontx2.ini| 1 + doc/guides/nics/features/octeontx2_vf.ini | 1 + doc/guides/nics/oc

[dpdk-dev] [PATCH v2 51/57] net/octeontx2: add Tx burst support

2019-06-30 Thread jerinj
From: Jerin Jacob Add Tx burst support. Signed-off-by: Jerin Jacob Signed-off-by: Nithin Dabilpuram Signed-off-by: Pavan Nikhilesh Signed-off-by: Harman Kalra --- doc/guides/nics/features/octeontx2.ini | 5 + doc/guides/nics/features/octeontx2_vec.ini | 5 + doc/guides/nics/features

[dpdk-dev] [PATCH v2 56/57] net/octeontx2: add MTU set operation

2019-06-30 Thread jerinj
From: Vamsi Attunuru Add MTU set operation and MTU update feature. Signed-off-by: Vamsi Attunuru Signed-off-by: Sunil Kumar Kori --- doc/guides/nics/features/octeontx2.ini | 1 + doc/guides/nics/features/octeontx2_vec.ini | 1 + doc/guides/nics/octeontx2.rst | 1 + drivers

[dpdk-dev] [PATCH v2 52/57] net/octeontx2: add Tx multi segment version

2019-06-30 Thread jerinj
From: Nithin Dabilpuram Add multi segment version of packet Transmit function. Signed-off-by: Nithin Dabilpuram Signed-off-by: Pavan Nikhilesh --- drivers/net/octeontx2/otx2_ethdev.h | 4 ++ drivers/net/octeontx2/otx2_tx.c | 58 + drivers/net/octeontx2/otx2_tx.h |

Re: [dpdk-dev] [RFC 1/5] eal: add the APIs to wait until equal

2019-06-30 Thread Stephen Hemminger
On Mon, 1 Jul 2019 00:21:12 +0800 Gavin Hu wrote: > +#ifdef RTE_USE_WFE > +#define rte_wait_until_equal_relaxed(addr, expected) do {\ > + typeof(*addr) tmp; \ > + if (__builtin_constant_p((expected))) \ > + do { \ > + if (s

Re: [dpdk-dev] [RFC 0/5] use WFE for locks and ring on aarch64

2019-06-30 Thread Stephen Hemminger
On Mon, 1 Jul 2019 00:21:11 +0800 Gavin Hu wrote: > DPDK has multiple use cases where the core repeatedly polls a location in > memory. This polling results in many cache and memory transactions. > > Arm architecture provides WFE (Wait For Event) instruction, which allows > the cpu core to ente

Re: [dpdk-dev] [EXT] [PATCH v4 3/6] app/test-compress-perf: add verification test case

2019-06-30 Thread Tomasz Jozwiak
Hi Shally, Thx for the review. My comments below: -Original Message- From: Tomasz Jozwiak Sent: Friday, June 28, 2019 3:56 AM To: dev@dpdk.org; fiona.tr...@intel.com; tjozwia...@gmail.com; Shally Verma ; arturx.tryb...@intel.com Subject: [EXT] [PATCH v4 3/6] app/test-compress-perf:

Re: [dpdk-dev] [dpdk-stable] [PATCH v3] app/testpmd: remove port stop check for macsec

2019-06-30 Thread Thomas Monjalon
27/06/2019 19:23, Ferruh Yigit: > On 6/10/2019 7:07 AM, Wei Zhao wrote: > > There is no need to do such a check when set macsec for ixgbe, and > > reconfig_device_queueand is also useless. If we do not delete this > > unnessary code, users have to stop port before enable or disable > > macsec, then

Re: [dpdk-dev] [PATCH v4 01/10] baseband/turbo_sw: baseband/turbo_sw: dependency patch

2019-06-30 Thread Mokhtar, Amr
> -Original Message- > From: Chautru, Nicolas > Sent: Monday 24 June 2019 03:53 > To: akhil.go...@nxp.com; dev@dpdk.org > Cc: tho...@monjalon.net; Yigit, Ferruh ; > Mokhtar, Amr ; Chautru, Nicolas > > Subject: [PATCH v4 01/10] baseband/turbo_sw: baseband/turbo_sw: > dependency patch > >

Re: [dpdk-dev] [PATCH v4 02/10] baseband/fpga_lte_fec: dependency patch

2019-06-30 Thread Mokhtar, Amr
> -Original Message- > From: Chautru, Nicolas > Sent: Monday 24 June 2019 03:53 > To: akhil.go...@nxp.com; dev@dpdk.org > Cc: tho...@monjalon.net; Yigit, Ferruh ; > Mokhtar, Amr ; Chautru, Nicolas > > Subject: [PATCH v4 02/10] baseband/fpga_lte_fec: dependency patch > > Not meant for r

Re: [dpdk-dev] [PATCH v4 03/10] bbdev: renaming non-generic LTE specific structure

2019-06-30 Thread Mokhtar, Amr
> -Original Message- > From: Chautru, Nicolas > Sent: Monday 24 June 2019 03:53 > To: akhil.go...@nxp.com; dev@dpdk.org > Cc: tho...@monjalon.net; Yigit, Ferruh ; > Mokhtar, Amr ; Chautru, Nicolas > > Subject: [PATCH v4 03/10] bbdev: renaming non-generic LTE specific > structure > > Ren

Re: [dpdk-dev] [PATCH v4 04/10] bbdev: extension of BBDEV API for 5G FEC

2019-06-30 Thread Mokhtar, Amr
> -Original Message- > From: Chautru, Nicolas > Sent: Monday 24 June 2019 03:53 > To: akhil.go...@nxp.com; dev@dpdk.org > Cc: tho...@monjalon.net; Yigit, Ferruh ; > Mokhtar, Amr ; Chautru, Nicolas > > Subject: [PATCH v4 04/10] bbdev: extension of BBDEV API for 5G FEC > > Extension to BBD

Re: [dpdk-dev] [PATCH v4 05/10] docs/guides: updating bbdev API for 5GNR operations

2019-06-30 Thread Mokhtar, Amr
> -Original Message- > From: Chautru, Nicolas > Sent: Monday 24 June 2019 03:53 > To: akhil.go...@nxp.com; dev@dpdk.org > Cc: tho...@monjalon.net; Yigit, Ferruh ; > Mokhtar, Amr ; Chautru, Nicolas > > Subject: [PATCH v4 05/10] docs/guides: updating bbdev API for 5GNR > operations > > Th

Re: [dpdk-dev] [PATCH v4 06/10] baseband/turbo_sw: extension of turbosw PMD for 5G

2019-06-30 Thread Mokhtar, Amr
> -Original Message- > From: Chautru, Nicolas > Sent: Monday 24 June 2019 03:53 > To: akhil.go...@nxp.com; dev@dpdk.org > Cc: tho...@monjalon.net; Yigit, Ferruh ; > Mokhtar, Amr ; Chautru, Nicolas > > Subject: [PATCH v4 06/10] baseband/turbo_sw: extension of turbosw PMD > for 5G > > Imp

Re: [dpdk-dev] [PATCH v4 07/10] docs/guides: updating building steps for BBDEV PMD

2019-06-30 Thread Mokhtar, Amr
> -Original Message- > From: Chautru, Nicolas > Sent: Monday 24 June 2019 03:53 > To: akhil.go...@nxp.com; dev@dpdk.org > Cc: tho...@monjalon.net; Yigit, Ferruh ; > Mokhtar, Amr ; Chautru, Nicolas > > Subject: [PATCH v4 07/10] docs/guides: updating building steps for BBDEV > PMD > > Thi

Re: [dpdk-dev] [PATCH v4 08/10] test-bbdev: update of bbdev test-app for 5GNR

2019-06-30 Thread Mokhtar, Amr
> -Original Message- > From: Chautru, Nicolas > Sent: Monday 24 June 2019 03:53 > To: akhil.go...@nxp.com; dev@dpdk.org > Cc: tho...@monjalon.net; Yigit, Ferruh ; > Mokhtar, Amr ; Chautru, Nicolas > > Subject: [PATCH v4 08/10] test-bbdev: update of bbdev test-app for 5GNR > > Extending

Re: [dpdk-dev] [PATCH v4 09/10] test-bbdev: test vectors for 5GNR verification

2019-06-30 Thread Mokhtar, Amr
> -Original Message- > From: Chautru, Nicolas > Sent: Monday 24 June 2019 03:53 > To: akhil.go...@nxp.com; dev@dpdk.org > Cc: tho...@monjalon.net; Yigit, Ferruh ; > Mokhtar, Amr ; Chautru, Nicolas > > Subject: [PATCH v4 09/10] test-bbdev: test vectors for 5GNR verification > > Adding LD

Re: [dpdk-dev] [PATCH v4 10/10] doc: announce bbdev changes

2019-06-30 Thread Mokhtar, Amr
> -Original Message- > From: Chautru, Nicolas > Sent: Monday 24 June 2019 03:53 > To: akhil.go...@nxp.com; dev@dpdk.org > Cc: tho...@monjalon.net; Yigit, Ferruh ; > Mokhtar, Amr ; Chautru, Nicolas > > Subject: [PATCH v4 10/10] doc: announce bbdev changes > > Update of the release notes

Re: [dpdk-dev] [EXT] [PATCH v4 3/6] app/test-compress-perf: add verification test case

2019-06-30 Thread Shally Verma
From: Tomasz Jozwiak Sent: Monday, July 1, 2019 2:33 AM To: Shally Verma ; dev@dpdk.org; fiona.tr...@intel.com; arturx.tryb...@intel.com Subject: Re: [EXT] [PATCH v4 3/6] app/test-compress-perf: add verification test case … + if (ctx != NULL) { + ctx->mem.dev_id = dev_id; +

Re: [dpdk-dev] [PATCH v5 1/2] net/mlx5: fix crashing testpmd on null drv opts

2019-06-30 Thread Slava Ovsiienko
Acked-by: Viacheslav Ovsiienko Thanks > -Original Message- > From: dev On Behalf Of Moti Haimovsky > Sent: Wednesday, June 19, 2019 7:52 > To: Shahaf Shuler > Cc: dev@dpdk.org; sta...@dpdk.org > Subject: [dpdk-dev] [PATCH v5 1/2] net/mlx5: fix crashing testpmd on null drv > opts > > ml

Re: [dpdk-dev] [PATCH] event/dpaa2: fix to return correct value for timeout ticks

2019-06-30 Thread Jerin Jacob Kollanukkaran
> -Original Message- > From: Hemant Agrawal > Sent: Thursday, June 27, 2019 3:06 PM > To: dev@dpdk.org > Cc: Jerin Jacob Kollanukkaran ; Nipun Gupta > ; sta...@dpdk.org > Subject: [EXT] [PATCH] event/dpaa2: fix to return correct value for timeout > ticks > > > ---

Re: [dpdk-dev] [PATCH] app/testpmd: add profiling for Rx/Tx burst routines

2019-06-30 Thread Slava Ovsiienko
I think we should compromise: keep existing RTE_TEST_PMD_RECORD_CORE_CYCLES and extend with runtime switch under this build-time option: #ifdef RTE_TEST_PMD_RECORD_CORE_CYCLES if (record_tx) .. gather tx related stats... if (record_rx) .. gather rx related stats... #endif This is very specifi

[dpdk-dev] [PATCH v2 0/3] update ice code that were not working correctly

2019-06-30 Thread Leyi Rong
Main changes: 1. Add support for IPv6 based switch filters 2. Add support for ethertype switch filters 3. fix inner L2 offset in GRE dummy packet Leyi Rong (3): net/ice/base: add support for IPv6 based switch filters net/ice/base: add support for ethertype switch filters net/ice/base: fix in

[dpdk-dev] [PATCH v2 3/3] net/ice/base: fix inner L2 offset in GRE dummy packet

2019-06-30 Thread Leyi Rong
The offset for the inner L2 header in the dummy GRE packet was off by 2 bytes so updated the offset. Fixes: 423be7ac8951 ("net/ice/base: enable additional switch rules") Signed-off-by: Paul M Stillwell Jr Signed-off-by: Leyi Rong --- drivers/net/ice/base/ice_switch.c | 2 +- 1 file changed, 1

[dpdk-dev] [PATCH v2 1/3] net/ice/base: add support for IPv6 based switch filters

2019-06-30 Thread Leyi Rong
- Add IPv6 switch rule support. - Add IPv6 training packet. - Correct name of IPv6 header variable. - Fix enum values so that they point to the proper ice_prot_ext_tbl_entry field. Signed-off-by: Kevin Scott Signed-off-by: Paul M Stillwell Jr Signed-off-by: Leyi Rong --- drivers/net/ice/base

[dpdk-dev] [PATCH v2 2/3] net/ice/base: add support for ethertype switch filters

2019-06-30 Thread Leyi Rong
Add protocol definitions for ethertype. Add ice_ethtype_hdr structure definition into the ice_prot_hdr union. Add ethtype offsets into the training packet maps. Signed-off-by: Dan Nowlin Signed-off-by: Paul M Stillwell Jr Signed-off-by: Leyi Rong Tested-by: Wei Zhao --- drivers/net/ice/base/i

Re: [dpdk-dev] [PATCH 1/4] ethdev: add GRE key field to flow API

2019-06-30 Thread Ori Kam
Hi Jack, I know I acked this patch, but after Dekel patch, https://patches.dpdk.org/patch/55667/ Where it was decided to remove structures for just one variable, and simply use the value. I wish if possible that you will also modify this patch to match this new convention. Thanks, Ori Kam >

  1   2   >