[PATCH v2 1/2] security: add fallback security processing and Rx inject

2023-09-29 Thread Anoob Joseph
Add alternate datapath API for security processing which would do Rx injection (similar to loopback) after successful security processing. With inline protocol offload, variable part of the session context (AR windows, lifetime etc in case of IPsec), is not accessible to the application. If packet

[PATCH v2 2/2] test/cryptodev: add Rx inject test

2023-09-29 Thread Anoob Joseph
From: Vidya Sagar Velumuri Add test to verify Rx inject. The test case added would push a known vector to cryptodev which would be injected to ethdev Rx. The test case verifies that the packet is received from ethdev Rx and is processed successfully. It also verifies that the userdata matches wit

Re: [PATCH v5 12/12] app/test: add event DMA adapter auto-test

2023-09-29 Thread Jerin Jacob
On Fri, Sep 29, 2023 at 9:46 AM Amit Prakash Shukla wrote: > > Added testsuite to test the dma adapter functionality. > The testsuite detects event and DMA device capability > and accordingly dma adapter is configured and modes are > tested. Test command: > > /app/test/dpdk-test event_dma_adapter_

Re: [PATCH v6 1/6] eal: provide rte stdatomics optional atomics API

2023-09-29 Thread David Marchand
On Thu, Sep 28, 2023 at 10:06 AM Thomas Monjalon wrote: > > 22/08/2023 23:00, Tyler Retzlaff: > > --- a/lib/eal/include/generic/rte_rwlock.h > > +++ b/lib/eal/include/generic/rte_rwlock.h > > @@ -32,6 +32,7 @@ > > #include > > #include > > #include > > +#include > > I'm not sure about addin

[PATCH v7 00/12] event DMA adapter library support

2023-09-29 Thread Amit Prakash Shukla
This series adds support for event DMA adapter library. API's defined as part of this library can be used by the application for DMA transfer of data using event based mechanism. v7: - Resolved review comments. v6: - Resolved review comments. - Updated git commit message. v5: - Resolved review c

[PATCH v7 01/12] eventdev/dma: introduce DMA adapter

2023-09-29 Thread Amit Prakash Shukla
Introduce event dma adapter interface to transfer packets between dma device and event device. Signed-off-by: Amit Prakash Shukla Acked-by: Jerin Jacob --- MAINTAINERS |6 + doc/api/doxy-api-index.md |1 + doc/guides/eventdevs/featur

[PATCH v7 02/12] eventdev/dma: support adapter capabilities get

2023-09-29 Thread Amit Prakash Shukla
Added a new eventdev API rte_event_dma_adapter_caps_get(), to get DMA adapter capabilities supported by the driver. Signed-off-by: Amit Prakash Shukla --- lib/eventdev/meson.build| 2 +- lib/eventdev/rte_eventdev.c | 23 +++ 2 files changed, 24 insertions(+), 1 deletion(

[PATCH v7 03/12] eventdev/dma: support adapter create and free

2023-09-29 Thread Amit Prakash Shukla
Added API support to create and free DMA adapter. Create function shall be called with event device to be associated with the adapter and port configuration to setup an event port. Signed-off-by: Amit Prakash Shukla --- config/rte_config.h | 1 + lib/eventdev/meson.build

[PATCH v7 04/12] eventdev/dma: support vchan add and delete

2023-09-29 Thread Amit Prakash Shukla
Added API support to add and delete vchan's from the DMA adapter. DMA devid and vchan are added to the addapter instance by calling rte_event_dma_adapter_vchan_add and deleted using rte_event_dma_adapter_vchan_del. Signed-off-by: Amit Prakash Shukla --- lib/eventdev/rte_event_dma_adapter.c | 204

[PATCH v7 05/12] eventdev/dma: support adapter service function

2023-09-29 Thread Amit Prakash Shukla
Added support for DMA adapter service function for event devices. Enqueue and dequeue of event from eventdev and DMA device are done based on the adapter mode and the supported HW capabilities. Signed-off-by: Amit Prakash Shukla --- lib/eventdev/rte_event_dma_adapter.c | 592

[PATCH v7 06/12] eventdev/dma: support adapter start and stop

2023-09-29 Thread Amit Prakash Shukla
Added API support to start and stop DMA adapter. Signed-off-by: Amit Prakash Shukla --- lib/eventdev/rte_event_dma_adapter.c | 69 1 file changed, 69 insertions(+) diff --git a/lib/eventdev/rte_event_dma_adapter.c b/lib/eventdev/rte_event_dma_adapter.c index 1d8bae

[PATCH v7 07/12] eventdev/dma: support adapter service ID get

2023-09-29 Thread Amit Prakash Shukla
Added API support to get DMA adapter service ID. Service id returned in the variable by the API call shall be used by application to map a service core. Signed-off-by: Amit Prakash Shukla --- lib/eventdev/rte_event_dma_adapter.c | 17 + 1 file changed, 17 insertions(+) diff --gi

[PATCH v7 08/12] eventdev/dma: support adapter runtime params

2023-09-29 Thread Amit Prakash Shukla
Added support to set and get runtime params for DMA adapter. The parameters that can be set/get are defined in struct rte_event_dma_adapter_runtime_params. Signed-off-by: Amit Prakash Shukla --- lib/eventdev/rte_event_dma_adapter.c | 93 1 file changed, 93 insertions

[PATCH v7 09/12] eventdev/dma: support adapter stats

2023-09-29 Thread Amit Prakash Shukla
Added DMA adapter stats API support to get and reset stats. DMA SW adapter stats and eventdev driver supported stats for enqueue and dequeue are reported by get API. Signed-off-by: Amit Prakash Shukla --- lib/eventdev/rte_event_dma_adapter.c | 95 1 file changed, 95

[PATCH v7 10/12] eventdev/dma: support adapter enqueue

2023-09-29 Thread Amit Prakash Shukla
Added API support to enqueue a DMA operation to the DMA driver. Signed-off-by: Amit Prakash Shukla --- lib/eventdev/rte_event_dma_adapter.c | 13 + 1 file changed, 13 insertions(+) diff --git a/lib/eventdev/rte_event_dma_adapter.c b/lib/eventdev/rte_event_dma_adapter.c index 6c67e6

[PATCH v7 11/12] eventdev/dma: support adapter event port get

2023-09-29 Thread Amit Prakash Shukla
Added support for DMA adapter event port get. Signed-off-by: Amit Prakash Shukla --- lib/eventdev/rte_event_dma_adapter.c | 16 1 file changed, 16 insertions(+) diff --git a/lib/eventdev/rte_event_dma_adapter.c b/lib/eventdev/rte_event_dma_adapter.c index f299914dec..af4b5ad38

[PATCH v7 12/12] app/test: add event DMA adapter auto-test

2023-09-29 Thread Amit Prakash Shukla
Added testsuite to test the dma adapter functionality. The testsuite detects event and DMA device capability and accordingly dma adapter is configured and modes are tested. Test command: sudo /app/test/dpdk-test --vdev=dma_skeleton \ event_dma_adapter_autotest Signed-off-by: Amit Prakash Shukla

RE: [PATCH v6 1/6] eal: provide rte stdatomics optional atomics API

2023-09-29 Thread Morten Brørup
> From: David Marchand [mailto:david.march...@redhat.com] > Sent: Friday, 29 September 2023 10.04 > > On Thu, Sep 28, 2023 at 10:06 AM Thomas Monjalon wrote: > > > > 22/08/2023 23:00, Tyler Retzlaff: [...] > > > +/* The memory order is an enumerated type in C11. */ > > > +typedef memory_order r

Re: [PATCH v6 1/6] eal: provide rte stdatomics optional atomics API

2023-09-29 Thread David Marchand
On Fri, Sep 29, 2023 at 10:54 AM Morten Brørup wrote: > In my opinion, our move to C11 thus makes RTE_BUILD_BUG_ON obsolete. That's my thought too. > > We should mark RTE_BUILD_BUG_ON as deprecated, and disallow RTE_BUILD_BUG_ON > in new code. Perhaps checkpatches could catch this? For a clea

RE: [PATCH v16 1/8] net/ntnic: initial commit which adds register defines

2023-09-29 Thread Christian Koue Muf
On 9/21/2023 4:05 PM, Ferruh Yigit wrote: >On 9/20/2023 2:17 PM, Thomas Monjalon wrote: >> Hello, >> >> 19/09/2023 11:06, Christian Koue Muf: >>> On 9/18/23 10:34 AM, Ferruh Yigit wrote: On 9/15/2023 7:37 PM, Morten Brørup wrote: >> From: Ferruh Yigit [mailto:ferruh.yi...@amd.com] >>

Re: [PATCH v6 1/6] eal: provide rte stdatomics optional atomics API

2023-09-29 Thread Bruce Richardson
On Fri, Sep 29, 2023 at 11:02:38AM +0200, David Marchand wrote: > On Fri, Sep 29, 2023 at 10:54 AM Morten Brørup > wrote: > > In my opinion, our move to C11 thus makes RTE_BUILD_BUG_ON obsolete. > > That's my thought too. > > > > > We should mark RTE_BUILD_BUG_ON as deprecated, and disallow >

RE: [EXT] Re: [PATCH v4 0/3] Introduce event link profiles

2023-09-29 Thread Pavan Nikhilesh Bhagavatula
> On Thu, Sep 28, 2023 at 3:42 PM wrote: > > > > From: Pavan Nikhilesh > > + @Thomas Monjalon @David Marchand @Aaron Conole @Michael > Santana > > There is CI failure in apply stage[1] where it is taking main tree > commit. Not sure why it is taking main tree? > > Pavan, > > Could you rese

Re: [PATCH v6 1/6] eal: provide rte stdatomics optional atomics API

2023-09-29 Thread David Marchand
On Fri, Sep 29, 2023 at 11:26 AM Bruce Richardson wrote: > > On Fri, Sep 29, 2023 at 11:02:38AM +0200, David Marchand wrote: > > On Fri, Sep 29, 2023 at 10:54 AM Morten Brørup > > wrote: > > > In my opinion, our move to C11 thus makes RTE_BUILD_BUG_ON obsolete. > > > > That's my thought too. > >

Re: [PATCH v16 1/8] net/ntnic: initial commit which adds register defines

2023-09-29 Thread Ferruh Yigit
On 9/29/2023 10:21 AM, Christian Koue Muf wrote: > On 9/21/2023 4:05 PM, Ferruh Yigit wrote: >> On 9/20/2023 2:17 PM, Thomas Monjalon wrote: >>> Hello, >>> >>> 19/09/2023 11:06, Christian Koue Muf: On 9/18/23 10:34 AM, Ferruh Yigit wrote: > On 9/15/2023 7:37 PM, Morten Brørup wrote: >>

[PATCH v8 00/12] add CLI based graph application

2023-09-29 Thread skori
From: Sunil Kumar Kori In the continuation of following feedback https://patches.dpdk.org/project/dpdk/patch/20230425131516.3308612-5-vattun...@marvell.com/ this patch series adds dpdk-graph application to exercise various usecases using graph. 1. Each use case is defined in terms of .cli file w

[PATCH v8 01/12] app/graph: add application framework to read CLI

2023-09-29 Thread skori
From: Sunil Kumar Kori It adds base framework to read a given .cli file as a command line parameter "-s". Example: # ./dpdk-graph -c 0xff -- -s ./app/graph/examples/dummy.cli Each .cli file will contain commands to configure different module like mempool, ethdev, lookup tables, graph etc. Comm

[PATCH v8 02/12] app/graph: add telnet connectivity framework

2023-09-29 Thread skori
From: Sunil Kumar Kori It adds framework to initiate a telnet session with application. Some configurations and debug commands are exposed as runtime APIs. Those commands can be invoked using telnet session. Application initiates a telnet server with host address 0.0.0.0 and port number 8086 by

[PATCH v8 03/12] app/graph: add parser utility APIs

2023-09-29 Thread skori
From: Sunil Kumar Kori It adds some helper functions to parse IPv4, IPv6 and MAC addresses string into respective datatype. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- app/graph/meson.build | 1 + app/graph/module_api.h | 1 + app/graph/utils.c | 156 ++

[PATCH v8 04/12] app/graph: add mempool command line interfaces

2023-09-29 Thread skori
From: Rakesh Kudurumalla It adds mempool module which will be creating mempools. Following commands are exposed: - mempool size buffers \ cache numa - help mempool User will add this command in .cli file according to its need. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rake

[PATCH v8 05/12] app/graph: add ethdev command line interfaces

2023-09-29 Thread skori
From: Sunil Kumar Kori It adds ethdev module to configure ethernet devices. Following commands are exposed: - ethdev rxq txq - ethdev mtu - ethdev promiscuous - ethdev show - ethdev stats - ethdev ip4 addr add netmask - ethdev ip6 addr add netmask - help ethdev Signed-of

[PATCH v8 06/12] app/graph: add ipv4_lookup command line interfaces

2023-09-29 Thread skori
From: Sunil Kumar Kori It adds ipv4_lookup module to configure LPM table. This LPM table will be used for IPv4 lookup and forwarding. Following commands are exposed: - ipv4_lookup route add ipv4 netmask via - help ipv4_lookup Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumal

[PATCH v8 07/12] app/graph: add ipv6_lookup command line interfaces

2023-09-29 Thread skori
From: Rakesh Kudurumalla It adds ipv6_lookup module to configure LPM6 table. This LPM6 table will be used for IPv6 lookup and forwarding. Following commands are exposed: - ipv6_lookup route add ipv6 netmask via - help ipv6_lookup Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudur

[PATCH v8 08/12] app/graph: add neigh command line interfaces

2023-09-29 Thread skori
From: Sunil Kumar Kori It adds neigh module to configure arp/neigh. This module uses ipv4_rewrite and ipv6_rewrite node to write neigh information. Following commands are exposed: - neigh add ipv4 - neigh add ipv6 - help neigh Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kuduru

[PATCH v8 09/12] app/graph: add ethdev_rx command line interfaces

2023-09-29 Thread skori
From: Rakesh Kudurumalla It adds ethdev_rx module to create port-queue-core mapping. Mapping will be used to launch graph worker thread and dequeue packets on mentioned core from desired port/queue. Following commands are exposed: - ethdev_rx map port queue core - help ethdev_rx Signed-of

[PATCH v8 10/12] app/graph: add graph command line interfaces

2023-09-29 Thread skori
From: Rakesh Kudurumalla It adds graph module to create a graph for a given use case like l3fwd. Following commands are exposed: - graph [bsz ] [tmo ] [coremask ] \ model pcap_enable <0 | 1> num_pcap_pkts \ pcap_file - graph start - graph stats show - help graph Signed-o

[PATCH v8 11/12] app/graph: add CLI option to enable graph stats

2023-09-29 Thread skori
From: Sunil Kumar Kori It adds application's command line parameter "--enable-graph-stats" to enable dumping graph stats on console. By default, no graph stats will be printed on console but same can be dumped via telnet session using "graph stats show" command. Signed-off-by: Sunil Kumar Kori

[PATCH v8 12/12] app/graph: add l3fwd use case

2023-09-29 Thread skori
From: Rakesh Kudurumalla It adds an use case l3fwd. It contains a dedicated l3fwd.cli file mentioning commands to configure the required resources. Once application successfully parses the l3fwd.cli then a graph is created having below nodes: - ethdev_rx -> pkt_cls - pkt_cls -> ip4_lookup -

Re: [PATCH v3 3/9] net/nfp: initialize IPsec related content

2023-09-29 Thread Ferruh Yigit
On 9/29/2023 3:08 AM, Chaoyong He wrote: > From: Chang Miao > > If enable IPsec capability bit, driver need to Initialize IPsec. > Set security context and security offload capabilities in datapath. > Define private session and add SA array for each PF to save all > SA data in driver. Add interna

Re: [PATCH v3 0/9] add the support of ipsec offload

2023-09-29 Thread Ferruh Yigit
On 9/29/2023 3:08 AM, Chaoyong He wrote: > This patch series add the support of ipsec offload feature, includes: > * Implement the communication channel between PMD and firmware through > mailbox. > * Implement the ipsec offload related APIs based the security framework. > * Implement the ipsec p

Re: [PATCH v16 1/8] net/ntnic: initial commit which adds register defines

2023-09-29 Thread Thomas Monjalon
29/09/2023 11:46, Ferruh Yigit: > On 9/29/2023 10:21 AM, Christian Koue Muf wrote: > > On 9/21/2023 4:05 PM, Ferruh Yigit wrote: > >> On 9/20/2023 2:17 PM, Thomas Monjalon wrote: > >>> Hello, > >>> > >>> 19/09/2023 11:06, Christian Koue Muf: > On 9/18/23 10:34 AM, Ferruh Yigit wrote: > > O

Re: [PATCH v6 1/6] eal: provide rte stdatomics optional atomics API

2023-09-29 Thread Thomas Monjalon
29/09/2023 11:34, David Marchand: > On Fri, Sep 29, 2023 at 11:26 AM Bruce Richardson > wrote: > > > > On Fri, Sep 29, 2023 at 11:02:38AM +0200, David Marchand wrote: > > > On Fri, Sep 29, 2023 at 10:54 AM Morten Brørup > > > wrote: > > > > In my opinion, our move to C11 thus makes RTE_BUILD_BUG

[PATCH v3] vhost: add IRQ suppression

2023-09-29 Thread Maxime Coquelin
Guest notifications offloading, which has been introduced in v23.07, aims at offloading syscalls out of the datapath. This patch optimizes the offloading by not offloading the guest notification for a given virtqueue if one is already being offloaded by the application. With a single VDUSE device

Re: [PATCH v6 1/2] node: add IPv4 local node to handle local pkts

2023-09-29 Thread Nithin Dabilpuram
Series-acked-by: Nithin Dabilpuram On Fri, Sep 29, 2023 at 1:21 AM Rakesh Kudurumalla wrote: > > Local or Host destined pkts can be redirected IPv4 local node > using IP4 Lookup node entries with prefix of 32 and be redirected > to this IP4 local node for further processing. > > Signed-off-by:

Re: [PATCH v6 1/2] node: add IPv4 local node to handle local pkts

2023-09-29 Thread Nithin Dabilpuram
Acked-by: Nithin Dabilpuram On Fri, Sep 29, 2023 at 4:24 PM Nithin Dabilpuram wrote: > > Series-acked-by: Nithin Dabilpuram > > > On Fri, Sep 29, 2023 at 1:21 AM Rakesh Kudurumalla > wrote: > > > > Local or Host destined pkts can be redirected IPv4 local node > > using IP4 Lookup node entries

Re: [PATCH v6 2/2] node: add UDP v4 support

2023-09-29 Thread Nithin Dabilpuram
Acked-by: Nithin Dabilpuram On Thu, Sep 28, 2023 at 4:06 PM Rakesh Kudurumalla wrote: > > IPv4 UDP packets are given to application > with specified UDP destination port given > by user. > > Signed-off-by: Rakesh Kudurumalla > --- > doc/api/doxy-api-index.md | 3 +- > doc

Re: [PATCH 0/2] ethdev: add group set miss actions API

2023-09-29 Thread Ferruh Yigit
On 9/20/2023 1:52 PM, Tomer Shmilovich wrote: > Introduce new group set miss actions API: > rte_flow_group_set_miss_actions(). > > A group's miss actions are a set of actions to be performed > in case of a miss on a group, i.e. when a packet didn't hit any flow > rules in the group. > > Currently

Re: [PATCH v6 1/6] eal: provide rte stdatomics optional atomics API

2023-09-29 Thread David Marchand
On Fri, Sep 29, 2023 at 12:26 PM Thomas Monjalon wrote: > > 29/09/2023 11:34, David Marchand: > > On Fri, Sep 29, 2023 at 11:26 AM Bruce Richardson > > wrote: > > > > > > On Fri, Sep 29, 2023 at 11:02:38AM +0200, David Marchand wrote: > > > > On Fri, Sep 29, 2023 at 10:54 AM Morten Brørup > > >

Re: [PATCH v3] net/af_xdp: fix missing UMEM feature

2023-09-29 Thread Ferruh Yigit
On 9/28/2023 10:32 AM, Bruce Richardson wrote: > On Thu, Sep 28, 2023 at 09:25:53AM +, Shibin Koikkara Reeny wrote: >> Shared UMEM feature is missing in the af_xdp driver build >> after the commit 33d66940e9ba ("build: use C11 standard"). >> >> Runtime Error log while using Shared UMEM feature:

Re: [PATCH v6 1/6] eal: provide rte stdatomics optional atomics API

2023-09-29 Thread Thomas Monjalon
29/09/2023 13:38, David Marchand: > On Fri, Sep 29, 2023 at 12:26 PM Thomas Monjalon wrote: > > > > 29/09/2023 11:34, David Marchand: > > > On Fri, Sep 29, 2023 at 11:26 AM Bruce Richardson > > > wrote: > > > > > > > > On Fri, Sep 29, 2023 at 11:02:38AM +0200, David Marchand wrote: > > > > > On F

[PATCH v8 00/12] event DMA adapter library support

2023-09-29 Thread Amit Prakash Shukla
This series adds support for event DMA adapter library. API's defined as part of this library can be used by the application for DMA transfer of data using event based mechanism. v8: - Re-arranged DMA adapter section in release notes. v7: - Resolved review comments. v6: - Resolved review comment

[PATCH v8 01/12] eventdev/dma: introduce DMA adapter

2023-09-29 Thread Amit Prakash Shukla
Introduce event dma adapter interface to transfer packets between dma device and event device. Signed-off-by: Amit Prakash Shukla Acked-by: Jerin Jacob --- MAINTAINERS |6 + doc/api/doxy-api-index.md |1 + doc/guides/eventdevs/featur

[PATCH v8 02/12] eventdev/dma: support adapter capabilities get

2023-09-29 Thread Amit Prakash Shukla
Added a new eventdev API rte_event_dma_adapter_caps_get(), to get DMA adapter capabilities supported by the driver. Signed-off-by: Amit Prakash Shukla --- lib/eventdev/meson.build| 2 +- lib/eventdev/rte_eventdev.c | 23 +++ 2 files changed, 24 insertions(+), 1 deletion(

[PATCH v8 03/12] eventdev/dma: support adapter create and free

2023-09-29 Thread Amit Prakash Shukla
Added API support to create and free DMA adapter. Create function shall be called with event device to be associated with the adapter and port configuration to setup an event port. Signed-off-by: Amit Prakash Shukla --- config/rte_config.h | 1 + lib/eventdev/meson.build

[PATCH v8 04/12] eventdev/dma: support vchan add and delete

2023-09-29 Thread Amit Prakash Shukla
Added API support to add and delete vchan's from the DMA adapter. DMA devid and vchan are added to the addapter instance by calling rte_event_dma_adapter_vchan_add and deleted using rte_event_dma_adapter_vchan_del. Signed-off-by: Amit Prakash Shukla --- lib/eventdev/rte_event_dma_adapter.c | 204

[PATCH v8 05/12] eventdev/dma: support adapter service function

2023-09-29 Thread Amit Prakash Shukla
Added support for DMA adapter service function for event devices. Enqueue and dequeue of event from eventdev and DMA device are done based on the adapter mode and the supported HW capabilities. Signed-off-by: Amit Prakash Shukla --- lib/eventdev/rte_event_dma_adapter.c | 592

[PATCH v8 06/12] eventdev/dma: support adapter start and stop

2023-09-29 Thread Amit Prakash Shukla
Added API support to start and stop DMA adapter. Signed-off-by: Amit Prakash Shukla --- lib/eventdev/rte_event_dma_adapter.c | 69 1 file changed, 69 insertions(+) diff --git a/lib/eventdev/rte_event_dma_adapter.c b/lib/eventdev/rte_event_dma_adapter.c index 1d8bae

[PATCH v8 07/12] eventdev/dma: support adapter service ID get

2023-09-29 Thread Amit Prakash Shukla
Added API support to get DMA adapter service ID. Service id returned in the variable by the API call shall be used by application to map a service core. Signed-off-by: Amit Prakash Shukla --- lib/eventdev/rte_event_dma_adapter.c | 17 + 1 file changed, 17 insertions(+) diff --gi

[PATCH v8 08/12] eventdev/dma: support adapter runtime params

2023-09-29 Thread Amit Prakash Shukla
Added support to set and get runtime params for DMA adapter. The parameters that can be set/get are defined in struct rte_event_dma_adapter_runtime_params. Signed-off-by: Amit Prakash Shukla --- lib/eventdev/rte_event_dma_adapter.c | 93 1 file changed, 93 insertions

[PATCH v8 09/12] eventdev/dma: support adapter stats

2023-09-29 Thread Amit Prakash Shukla
Added DMA adapter stats API support to get and reset stats. DMA SW adapter stats and eventdev driver supported stats for enqueue and dequeue are reported by get API. Signed-off-by: Amit Prakash Shukla --- lib/eventdev/rte_event_dma_adapter.c | 95 1 file changed, 95

[PATCH v8 10/12] eventdev/dma: support adapter enqueue

2023-09-29 Thread Amit Prakash Shukla
Added API support to enqueue a DMA operation to the DMA driver. Signed-off-by: Amit Prakash Shukla --- lib/eventdev/rte_event_dma_adapter.c | 13 + 1 file changed, 13 insertions(+) diff --git a/lib/eventdev/rte_event_dma_adapter.c b/lib/eventdev/rte_event_dma_adapter.c index 6c67e6

[PATCH v8 11/12] eventdev/dma: support adapter event port get

2023-09-29 Thread Amit Prakash Shukla
Added support for DMA adapter event port get. Signed-off-by: Amit Prakash Shukla --- lib/eventdev/rte_event_dma_adapter.c | 16 1 file changed, 16 insertions(+) diff --git a/lib/eventdev/rte_event_dma_adapter.c b/lib/eventdev/rte_event_dma_adapter.c index f299914dec..af4b5ad38

[PATCH v8 12/12] app/test: add event DMA adapter auto-test

2023-09-29 Thread Amit Prakash Shukla
Added testsuite to test the dma adapter functionality. The testsuite detects event and DMA device capability and accordingly dma adapter is configured and modes are tested. Test command: sudo /app/test/dpdk-test --vdev=dma_skeleton \ event_dma_adapter_autotest Signed-off-by: Amit Prakash Shukla

RE: [PATCH v3 4/7] cryptodev: set private and public keys in EC session

2023-09-29 Thread Power, Ciara
Hi Gowrishankar, > -Original Message- > From: Gowrishankar Muthukrishnan > Sent: Thursday, September 28, 2023 6:09 PM > To: dev@dpdk.org > Cc: ano...@marvell.com; Akhil Goyal ; Fan Zhang > ; Ji, Kai ; Kusztal, ArkadiuszX > ; Power, Ciara ; > Gowrishankar Muthukrishnan > Subject: [PATCH

Re: [PATCH 11/11] net/ngbe: add YT PHY fiber mode autoneg 100M support

2023-09-29 Thread Ferruh Yigit
On 9/28/2023 10:47 AM, Jiawen Wu wrote: > Support auto-neg 100M for YT PHY fiber mode. > > Signed-off-by: Jiawen Wu > --- > doc/guides/rel_notes/release_23_11.rst | 4 ++ > drivers/net/ngbe/base/ngbe_phy_yt.c| 66 +++--- > 2 files changed, 52 insertions(+), 18 deletions(

Re: [PATCH 00/11] Wanguxn NICs fixes and supports

2023-09-29 Thread Ferruh Yigit
On 9/28/2023 10:47 AM, Jiawen Wu wrote: > Fix some bugs in txgbe/ngbe driver, and support new feature in > ngbe driver. > > Jiawen Wu (11): > net/txgbe: add Tx queue maximum limit > net/txgbe: fix GRE tunnel packet checksum > net/ngbe: fix to set flow control > net/ngbe: prevent the NIC fr

Re: [PATCH v2] net/tap: resolve stringop-overflow with gcc 12 on ppc64le

2023-09-29 Thread Ferruh Yigit
On 6/7/2023 7:47 PM, Ferruh Yigit wrote: > On 5/16/2023 10:55 AM, Ferruh Yigit wrote: >> On 5/16/2023 2:28 AM, Stephen Hemminger wrote: >>> On Tue, 16 May 2023 00:35:56 +0100 >>> Ferruh Yigit wrote: >>> Yes only some scripts and possible applications that hotplug tap interface with hardc

[PATCH] doc: add cnxk dmadev performance tuning details

2023-09-29 Thread Amit Prakash Shukla
Updated cnxk DMA driver document to explain about performance tuning parameters for kernel module. Signed-off-by: Amit Prakash Shukla --- doc/guides/dmadevs/cnxk.rst | 30 ++ 1 file changed, 30 insertions(+) diff --git a/doc/guides/dmadevs/cnxk.rst b/doc/guides/dmade

Re: [PATCH] net/dpaa2: change threshold value

2023-09-29 Thread Ferruh Yigit
On 6/9/2023 3:20 PM, Ferruh Yigit wrote: > On 5/15/2023 9:16 AM, Sachin Saxena (OSS) wrote: >> On 5/8/2023 4:11 PM, Tianli Lai wrote: >>> Caution: This is an external email. Please take care when clicking >>> links or opening attachments. When in doubt, report the message using >>> the 'Report this

Re: [PATCH] net/sfc: support packet replay in transfer flows

2023-09-29 Thread Ferruh Yigit
On 9/27/2023 11:36 AM, Ivan Malov wrote: > Packet replay enables users to leverage multiple counters in > one flow and allows to request delivery to multiple ports. > > A given flow rule may use either one inline count action > and multiple indirect counters or just multiple indirect > counters. T

Re: [PATCH v6 0/6] rte atomics API for optional stdatomic

2023-09-29 Thread David Marchand
Hello, On Tue, Aug 22, 2023 at 11:00 PM Tyler Retzlaff wrote: > > This series introduces API additions prefixed in the rte namespace that allow > the optional use of stdatomics.h from C11 using enable_stdatomics=true for > targets where enable_stdatomics=false no functional change is intended. >

[PATCH] ci: test stdatomic API

2023-09-29 Thread David Marchand
Add some compilation tests with C11 atomics enabled. The headers check can't be enabled (as gcc and clang don't provide stdatomic before C++23). Signed-off-by: David Marchand --- .ci/linux-build.sh| 6 +- .github/workflows/build.yml | 8 devtools/test-meson-builds.sh |

Re: [PATCH 0/2] Add eventdev tests to test suites

2023-09-29 Thread David Marchand
On Thu, Sep 28, 2023 at 5:14 PM Bruce Richardson wrote: > > The eventdev library includes a selftest API which can be used by > drivers for testing. Add the relevant automated self-test commands > into meson test suites as appropriate. > > Bruce Richardson (2): > event/sw: add self tests to fast

Re: [PATCH] eal/linux: prevent deadlocks on rte init and cleanup

2023-09-29 Thread David Marchand
Hello Jonathan, On Thu, Jul 20, 2023 at 7:19 AM Jonathan Erb wrote: > > Resolves a deadlock that can occur when multiple secondary > processes are starting and stopping. A deadlock can occur because > eal_memalloc_init() is taking a second unnecessary read lock. > If another DPDK process that is

Re: [PATCH v1] net/memif: fix segfault with large burst size

2023-09-29 Thread Ferruh Yigit
On 9/4/2023 8:10 AM, Joyce Kong wrote: > There will be a segfault when Rx burst size is greater than > MAX_PKT_BURST of memif. Fix the issue by correcting the > wrong mbuf index in eth_memif_rx, which results in accessing > invalid memory address. > > Bugzilla ID: 1273 > Fixes: aa17df860891 ("net/

Re: [PATCH] net/virtio: fix descriptors buffer addresses on 32 bits builds

2023-09-29 Thread Dave Johnson (davejo)
Hi Maxime, I back ported the patch to v22.11.2 and it worked for us on both the testpmd app and with our 32-bit DPDK (virtio-pci) application. The change to set the mbuf_addr_mask was moved under virtio_init_queue() in v22.11.2 (see below). I’m in the process of updating the application to v23.

Re: [PATCH 1/3] vhost: fix build for powerpc

2023-09-29 Thread Maxime Coquelin
On 8/31/23 14:10, Bruce Richardson wrote: When building on Ubuntu using the packaged powerpc compiler[1], a warning is issued about the print format of the __u64 values. ../../lib/vhost/vduse.c: In function ‘vduse_vring_setup’: ../../lib/vhost/vhost.h:676:17: error: format ‘%llx’ expects argu

Re: [PATCH] gpu: add support for rtx 6000 variant

2023-09-29 Thread David Marchand
Hello, On Fri, Apr 29, 2022 at 6:53 PM Cliff Burdick wrote: > > Added second GPU PCI device ID for RTX 6000 > > Signed-off-by: Cliff Burdick > --- > drivers/gpu/cuda/cuda.c| 6 +- > drivers/gpu/cuda/devices.h | 3 ++- > 2 files changed, 7 insertions(+), 2 deletions(-) Is this patch still

Re: [PATCH] gpu/cuda: Add missing stdlib include

2023-09-29 Thread David Marchand
On Tue, Sep 26, 2023 at 8:24 PM Aaron Conole wrote: > > > From: John Romein > > getenv needs stdlib.h to be included. > > Bugzilla ID: 1133 > > Fixes: 24c77594e08f ("gpu/cuda: map GPU memory with GDRCopy") > Signed-off-by: John Romein Thanks for the patch, it seems to be a duplicate of the prio

Re: [PATCH] gpu/cuda: fix getenv related build error

2023-09-29 Thread David Marchand
On Thu, Aug 3, 2023 at 6:25 PM Levend Sayar wrote: > > If gdrapi.h is available, meson sets DRIVERS_GPU_CUDA_GDRCOPY_H as 1. > This causes gdrcopy.c build to give an error; > because compiler can not find signature of getenv. > stdlib.h is included for the definition of getenv function. > There w

Re: [PATCH v3] bus/cdx: provide driver flag for optional resource mapping

2023-09-29 Thread David Marchand
On Tue, Jul 11, 2023 at 7:52 AM Abhijit Gangurde wrote: > @@ -383,10 +384,12 @@ cdx_probe_one_driver(struct rte_cdx_driver *dr, > CDX_BUS_DEBUG(" probe device %s using driver: %s", dev_name, > dr->driver.name); > > - ret = cdx_vfio_map_resource(dev); > - if (re

DPDK Release Status Meeting 2023-09-28

2023-09-29 Thread Mcnamara, John
Release status meeting minutes 2023-09-28 = Agenda: * Release Dates * Subtrees * Roadmaps * LTS * Defects * Opens Participants: * AMD * ARM [No] * Debian/Microsoft [No] * Intel * Marvell * Nvidia [No] * Red Hat Release Dates - The following ar

Re: [PATCH v2 0/2] update rsu implementation

2023-09-29 Thread David Marchand
Hello, On Fri, Jun 10, 2022 at 4:17 AM Wei Huang wrote: > > The first patch introduce PMCI driver to provide interface to access > PMCI functions which include flash controller. > The second patch update RSU (Remote System Update) implementation > to adapt with PMCI controller. Is this series st

Re: [PATCH] hash: fix SSE comparison

2023-09-29 Thread David Marchand
On Wed, Sep 6, 2023 at 4:31 AM Jieqiang Wang wrote: > > __mm_cmpeq_epi16 returns 0x if the corresponding 16-bit elements are > equal. In original SSE2 implementation for function compare_signatures, > it utilizes _mm_movemask_epi8 to create mask from the MSB of each 8-bit > element, while we s

Re: [PATCH 1/1] hash: add SVE support for bulk key lookup

2023-09-29 Thread David Marchand
On Thu, Aug 17, 2023 at 11:24 PM Harjot Singh wrote: > > From: Harjot Singh > > - Implemented Vector Length Agnostic SVE code for comparing signatures > in bulk lookup. > - Added Defines in code for SVE code support. > - New Optimised SVE code is 1-2 CPU cycle slower than NEON for N2 > processor.

Re: [PATCH v9] hash: add XOR32 hash function

2023-09-29 Thread David Marchand
On Tue, Jul 11, 2023 at 12:00 AM Bili Dong wrote: > > An XOR32 hash is needed in the Software Switch (SWX) Pipeline for its > use case in P4. We implement it in this patch so it could be easily > registered in the pipeline later. > > Signed-off-by: Bili Dong Review, please. -- David Marchand

[PATCH v3 1/2] security: add fallback security processing and Rx inject

2023-09-29 Thread Anoob Joseph
Add alternate datapath API for security processing which would do Rx injection (similar to loopback) after successful security processing. With inline protocol offload, variable part of the session context (AR windows, lifetime etc in case of IPsec), is not accessible to the application. If packet

[PATCH v3 2/2] test/cryptodev: add Rx inject test

2023-09-29 Thread Anoob Joseph
From: Vidya Sagar Velumuri Add test to verify Rx inject. The test case added would push a known vector to cryptodev which would be injected to ethdev Rx. The test case verifies that the packet is received from ethdev Rx and is processed successfully. It also verifies that the userdata matches wit

Re: [PATCH] lib/hash: new feature adding existing key

2023-09-29 Thread David Marchand
On Mon, Mar 13, 2023 at 8:36 AM Abdullah Ömer Yamaç wrote: > > In some use cases inserting data with the same key shouldn't be > overwritten. We use a new flag in this patch to disable overwriting > data for the same key. > > Signed-off-by: Abdullah Ömer Yamaç If this patch is still relevant, pl

[RFC] rte_ether_unformat: accept more inputs

2023-09-29 Thread Stephen Hemminger
This updates rte_ether_addr_unformat() to accept more types of input. There have been requests to handle Windows and other formats. Signed-off-by: Stephen Hemminger --- Marking this as RFC until unit tests are added. lib/net/rte_ether.c | 78 +++-- lib/ne

[PATCH v3 00/12] VRB2 bbdev PMD introduction

2023-09-29 Thread Nicolas Chautru
v3: updates based on v2 review: - split into smaller incremental commits - FFT windowing exposed through a more generic structure - refactor using wrapper functions to manage device variants - removed custom dump function - consider the request unsupport SO option as an error instead of fall-back.

[PATCH v3 01/12] bbdev: add FFT window width member in driver info

2023-09-29 Thread Nicolas Chautru
This exposes the width of each windowing shape being configured on the device. This allows to distinguish different version of the flexible pointwise windowing applied to the FFT and expose this platform configuration to the application. The SRS processing chain (https://doc.dpdk.org/guides/prog_g

[PATCH v3 03/12] baseband/acc: remove the 4G SO capability for VRB1

2023-09-29 Thread Nicolas Chautru
This removes the specific capability and support of LTE Decoder Soft Output option on the VRB1 PMD. This is triggered as a vendor decision to defeature the related optional capability so that to avoid theoretical risk of race conditions impacting the device reliability. That optional APP LLR outpu

[PATCH v3 02/12] baseband/acc: add FFT window width in the VRB PMD

2023-09-29 Thread Nicolas Chautru
This allows to expose the FFT window width being introduced in previous commit based on what is configured dynamically on the device platform. Signed-off-by: Nicolas Chautru --- drivers/baseband/acc/acc_common.h | 3 +++ drivers/baseband/acc/rte_vrb_pmd.c | 29 + 2

[PATCH v3 04/12] baseband/acc: allocate FCW memory separately

2023-09-29 Thread Nicolas Chautru
This allows more flexibility to the FCW size for the unified driver. No actual functional change. Signed-off-by: Nicolas Chautru --- drivers/baseband/acc/acc_common.h | 4 +++- drivers/baseband/acc/rte_vrb_pmd.c | 25 - 2 files changed, 27 insertions(+), 2 deletions(-)

[PATCH v3 05/12] baseband/acc: add support for MLD operation

2023-09-29 Thread Nicolas Chautru
There is no functionality related to the MLD operation but allows the unified PMD to support the operation being added moving forward. Signed-off-by: Nicolas Chautru Reviewed-by: Maxime Coquelin --- drivers/baseband/acc/acc_common.h | 1 + drivers/baseband/acc/rte_vrb_pmd.c | 39 +

[PATCH v3 06/12] baseband/acc: refactor to allow unified driver extension

2023-09-29 Thread Nicolas Chautru
Adding a few functions and common code prior to extending the VRB driver. Signed-off-by: Nicolas Chautru --- drivers/baseband/acc/acc_common.h | 164 +++--- drivers/baseband/acc/rte_acc100_pmd.c | 4 +- drivers/baseband/acc/rte_vrb_pmd.c| 62 +- 3 files cha

[PATCH v3 07/12] baseband/acc: adding VRB2 device variant

2023-09-29 Thread Nicolas Chautru
No functionality exposed only device enumeration and configuration. Signed-off-by: Nicolas Chautru --- doc/guides/bbdevs/features/vrb2.ini| 14 ++ doc/guides/bbdevs/index.rst| 1 + doc/guides/bbdevs/vrb2.rst | 206 + doc/guides/rel_notes/rel

[PATCH v3 09/12] baseband/acc: add FFT support to VRB2 variant

2023-09-29 Thread Nicolas Chautru
Support for the FFT the processing specific to the VRB2 variant. Signed-off-by: Nicolas Chautru --- drivers/baseband/acc/rte_vrb_pmd.c | 132 - 1 file changed, 128 insertions(+), 4 deletions(-) diff --git a/drivers/baseband/acc/rte_vrb_pmd.c b/drivers/baseband/acc/r

[PATCH v3 08/12] baseband/acc: add FEC capabilities for the VRB2 variant

2023-09-29 Thread Nicolas Chautru
New implementation for some of the FEC features specific to the VRB2 variant. Signed-off-by: Nicolas Chautru --- drivers/baseband/acc/rte_vrb_pmd.c | 567 - 1 file changed, 548 insertions(+), 19 deletions(-) diff --git a/drivers/baseband/acc/rte_vrb_pmd.c b/drivers/

[PATCH v3 10/12] baseband/acc: add MLD support in VRB2 variant

2023-09-29 Thread Nicolas Chautru
Adding the capability for the MLD-TS processing specific to the VRB2 variant. Signed-off-by: Nicolas Chautru --- drivers/baseband/acc/rte_vrb_pmd.c | 378 + 1 file changed, 378 insertions(+) diff --git a/drivers/baseband/acc/rte_vrb_pmd.c b/drivers/baseband/acc/rte_

  1   2   >