[dpdk-dev] [PATCH 1/2] app/test: uninit vdevs in event eth Rx adapter autotest

2020-10-03 Thread Jayatheerthan, Jay
From: "Jay Jayatheerthan" adapter_multi_eth_add_del() does vdev init but doesn't uninit them. This causes issues when running event_eth_rx_adapter_autotest multiple times. The fix does vdev uninit before exiting the test. Signed-off-by: Jay Jayatheerthan --- app/test/test_event_eth_rx_adapter

[dpdk-dev] [PATCH 2/2] app/test: add net null dev creation in Rx adapter autotest

2020-10-03 Thread Jayatheerthan, Jay
From: "Jay Jayatheerthan" Allows creation of net_null if vdev EAL option is not specified and uninit vdev created in the test. The change also adds error checks for vdev init and uninit. Signed-off-by: Jay Jayatheerthan --- app/test/test_event_eth_rx_adapter.c | 61 +++-

Re: [dpdk-dev] [PATCH 1/2] baseband/fpga_5gnr_fec: fix API naming

2020-10-03 Thread Tom Rix
On 10/2/20 1:59 AM, Maxime Coquelin wrote: > DPDK APIs have to be prefixed with "rte_" in order to avoid > namespace pollution. > > Let's fix it while fpga_5gnr_fec API is still experimental. > > Signed-off-by: Maxime Coquelin > --- > app/test-bbdev/test_bbdev_perf.c | 6 +++-

Re: [dpdk-dev] [PATCH 2/2] baseband/fpga_lte_fec: fix API naming

2020-10-03 Thread Tom Rix
On 10/2/20 1:59 AM, Maxime Coquelin wrote: > DPDK APIs have to be prefixed with "rte_" in order to avoid > namespace pollution. > > Let's fix it while fpga_lte_fec API is still experimental. > > Signed-off-by: Maxime Coquelin > --- > app/test-bbdev/test_bbdev_perf.c | 6 +++--

[dpdk-dev] [PATCH v3 00/10] RTE flow shared action

2020-10-03 Thread Andrey Vesnovaty
This patchset introduces shared action for RTE flow. V3 changes: - implement testpmd for shared action - fix flow_filtering example application - add conf arg to shared action create API Notes: PMD implementation should be considered as draft Andrey Vesnovaty (10): ethdev: add flow shared acti

[dpdk-dev] [PATCH v3 01/10] ethdev: add flow shared action API

2020-10-03 Thread Andrey Vesnovaty
This commit introduces extension of DPDK flow action API enabling sharing of single rte_flow_action in multiple flows. The API intended for PMDs where multiple HW offloaded flows can reuse the same HW essence/object representing flow action and modification of such an essence/object effects all the

[dpdk-dev] [PATCH v3 02/10] ethdev: add conf arg to shared action icreate API

2020-10-03 Thread Andrey Vesnovaty
Add configuration argument to shared action create interface. Currently there is only ingress & egress fields but more fields can be added later. Shared action configuration & implementation are PMD specific. Signed-off-by: Andrey Vesnovaty --- lib/librte_ethdev/rte_flow.c| 4 +++- lib/

[dpdk-dev] [PATCH v3 03/10] common/mlx5: modify advanced Rx object via DevX

2020-10-03 Thread Andrey Vesnovaty
From: Andrey Vesnovaty Implement mlx5_devx_cmd_modify_tir() to modify TIR object using DevX API. Add related structs in mlx5_prm.h. Signed-off-by: Andrey Vesnovaty --- drivers/common/mlx5/mlx5_devx_cmds.c | 84 +++ drivers/common/mlx5/mlx5_devx_cmds.h | 10 +++

[dpdk-dev] [PATCH v3 06/10] net/mlx5: shared action PMD create conf arg

2020-10-03 Thread Andrey Vesnovaty
Add support for configuration argument in shared action create API. Configuration structure forwarded to verbs/devx layer. Signed-off-by: Andrey Vesnovaty --- drivers/net/mlx5/mlx5_flow.c | 23 ++- drivers/net/mlx5/mlx5_flow.h | 9 ++--- 2 files changed, 20 insertions(+)

[dpdk-dev] [PATCH v3 05/10] net/mlx5: shared action PMD

2020-10-03 Thread Andrey Vesnovaty
From: Andrey Vesnovaty Implement rte_flow shared action API for mlx5 PMD. Handle shared action on flow create/destroy. Signed-off-by: Andrey Vesnovaty --- drivers/net/mlx5/mlx5.c | 1 + drivers/net/mlx5/mlx5.h | 2 + drivers/net/mlx5/mlx5_defs.h | 3 + drivers/net/mlx5/mlx5_flo

[dpdk-dev] [PATCH v3 04/10] net/mlx5: modify hash Rx queue objects

2020-10-03 Thread Andrey Vesnovaty
From: Andrey Vesnovaty Implement mlx5_hrxq_modify() to modify hash RX queue object. This commit relays on capability to modify TIR object via DevX. Signed-off-by: Andrey Vesnovaty --- drivers/net/mlx5/mlx5.h | 4 + drivers/net/mlx5/mlx5_devx.c | 178 +++

[dpdk-dev] [PATCH v3 07/10] net/mlx5: driver support for shared action

2020-10-03 Thread Andrey Vesnovaty
From: Andrey Vesnovaty Implement shared action create/destroy/update/query. Implement RSS shared action and handle shared RSS on flow apply and release. Note: currently implemented for sharede RSS action only Signed-off-by: Andrey Vesnovaty --- drivers/net/mlx5/mlx5_flow_dv.c | 671 ++

[dpdk-dev] [PATCH v3 09/10] examples/flow_filtering: utilize shared RSS action

2020-10-03 Thread Andrey Vesnovaty
From: Andrey Vesnovaty This commit give very first shared RSS action usage example. Queue action used by the flow replaced by shared RSS action having single queue. On each RX burst queue switched 0 <-> 1 utilizing rte_flow_shared_action_update() API. User supposed to observe consistent queue swi

[dpdk-dev] [PATCH v3 08/10] net/mlx5: shared action create conf drv support

2020-10-03 Thread Andrey Vesnovaty
Add support for configuration argument in shared action validate/create API. Currently the inly shared action implemented is RSS. For shared RSS action configuration argument ignpred but it can be utilized by other types of shared actions. Signed-off-by: Andrey Vesnovaty --- drivers/net/mlx5/mlx

[dpdk-dev] [PATCH v3 10/10] app/testpmd: support shared action

2020-10-03 Thread Andrey Vesnovaty
This patch adds shared action support to testpmd CLI. All shared actions created via testpmd CLI assigned ID for further reference in other CLI commands. Shared action ID supplied as CLI argument or assigned by testpmd is similar to flow ID & limited to scope of testpdm CLI. Create shared action

[dpdk-dev] [PATCH v6 0/3] pmdinfogen: rewrite in Python

2020-10-03 Thread Dmitry Kozlyuk
This patchset implements existing pmdinfogen logic in Python, replaces and removes the old code. The goals of rewriting are: * easier maintenance by using a more high-level language, * simpler build process without host application and libelf, * foundation for adding Windows support. Travis CI sc

[dpdk-dev] [PATCH v6 1/3] pmdinfogen: add Python implementation

2020-10-03 Thread Dmitry Kozlyuk
Using a high-level, interpreted language simplifies maintenance and build process. Furthermore, ELF handling is delegated to pyelftools package. Original logic is kept, the copyright recognizes that. Signed-off-by: Dmitry Kozlyuk --- buildtools/pmdinfogen.py | 189 +++

[dpdk-dev] [PATCH v6 2/3] build: use Python pmdinfogen

2020-10-03 Thread Dmitry Kozlyuk
Like for other build scripts, use Python interpreter to run pmdinfogen. Adjust wrapper script accordingly and also don't suppress stderr from ar and pmdinfogen. Add python3-pyelftools to CI configuration. The package is available on all major distributions. FreeBSD has no system requirements secti

[dpdk-dev] [PATCH v6 3/3] pmdinfogen: remove C implementation

2020-10-03 Thread Dmitry Kozlyuk
Delete the files no longer used in build process. Add myself as maintainer of new implementation. Signed-off-by: Dmitry Kozlyuk --- MAINTAINERS| 3 +- buildtools/pmdinfogen/meson.build | 14 - buildtools/pmdinfogen/pmdinfogen.c | 456 - bui