[dpdk-dev] [PATCH v2 02/13] eventdev: separate internal structures

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Create rte_eventdev_core.h and move all the internal data structures to this file. These structures are mostly used by drivers, but they need to be in the public header file as they are accessed by datapath inline functions for performance reasons. The accessibility of these

[dpdk-dev] [PATCH v2 01/13] eventdev: make driver interface as internal

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Mark all the driver specific functions as internal, remove `rte` prefix from `struct rte_eventdev_ops`. Remove experimental tag from internal functions. Remove `eventdev_pmd.h` from non-internal header files. Signed-off-by: Pavan Nikhilesh --- v2 Changes: - Rework inline

[dpdk-dev] [PATCH v2 03/13] eventdev: allocate max space for internal arrays

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Allocate max space for internal port, port config, queue config and link map arrays. Introduce new macro RTE_EVENT_MAX_PORTS_PER_DEV and set it to max possible value. This simplifies the port and queue reconfigure scenarios and will also allow inline functions to refer point

[dpdk-dev] [PATCH v2 04/13] eventdev: move inline APIs into separate structure

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Move fastpath inline function pointers from rte_eventdev into a separate structure accessed via a flat array. The intension is to make rte_eventdev and related structures private to avoid future API/ABI breakages.` Signed-off-by: Pavan Nikhilesh Acked-by: Ray Kinsella ---

[dpdk-dev] [PATCH v2 05/13] eventdev: use new API for inline functions

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Use new driver interface for the fastpath enqueue/dequeue inline functions. Signed-off-by: Pavan Nikhilesh Acked-by: Jay Jayatheerthan --- lib/eventdev/rte_event_crypto_adapter.h | 15 +--- lib/eventdev/rte_event_eth_tx_adapter.h | 15 lib/eventdev/rte_event

[dpdk-dev] [PATCH v2 06/13] eventdev: hide event device related structures

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Move rte_eventdev, rte_eventdev_data structures to eventdev_pmd.h. Signed-off-by: Pavan Nikhilesh --- drivers/event/dlb2/dlb2_inline_fns.h | 2 + drivers/event/dsw/dsw_evdev.h | 2 + drivers/event/octeontx/timvf_worker.h | 2 + drivers/net/octeontx/octeontx

[dpdk-dev] [PATCH v 07/13] eventdev: hide timer adapter PMD file

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Hide rte_event_timer_adapter_pmd.h file as it is an internal file. Remove rte_ prefix from rte_event_timer_adapter_ops structure. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cnxk_tim_evdev.c | 5 ++-- drivers/event/cnxk/cnxk_tim_evdev.h | 2

[dpdk-dev] [PATCH v2 07/13] eventdev: hide timer adapter PMD file

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Hide rte_event_timer_adapter_pmd.h file as it is an internal file. Remove rte_ prefix from rte_event_timer_adapter_ops structure. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cnxk_tim_evdev.c | 5 ++-- drivers/event/cnxk/cnxk_tim_evdev.h | 2

[dpdk-dev] [PATCH v2 08/13] eventdev: remove rte prefix for internal structs

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Remove rte_ prefix from rte_eth_event_enqueue_buffer, rte_event_eth_rx_adapter and rte_event_crypto_adapter as they are only used in rte_event_eth_rx_adapter.c and rte_event_crypto_adapter.c Signed-off-by: Pavan Nikhilesh Acked-by: Jay Jayatheerthan --- lib/eventdev/rte_

[dpdk-dev] [PATCH v2 09/13] eventdev: rearrange fields in timer object

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Rearrange fields in rte_event_timer data structure to remove holes. Also, remove use of volatile from rte_event_timer. Signed-off-by: Pavan Nikhilesh --- lib/eventdev/rte_event_timer_adapter.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/eve

[dpdk-dev] [PATCH v2 10/13] eventdev: move timer adapters memory to hugepage

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Move memory used by timer adapters to hugepage. Allocate memory on the first adapter create or lookup to address both primary and secondary process usecases. This will prevent TLB misses if any and aligns to memory structure of other subsystems. Signed-off-by: Pavan Nikhile

[dpdk-dev] [PATCH v2 11/13] eventdev: promote event vector API to stable

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Promote event vector configuration APIs to stable. Signed-off-by: Pavan Nikhilesh Acked-by: Jay Jayatheerthan Acked-by: Ray Kinsella --- lib/eventdev/rte_event_eth_rx_adapter.h | 2 -- lib/eventdev/rte_eventdev.h | 1 - lib/eventdev/version.map

[dpdk-dev] [PATCH v2 12/13] eventdev: make trace APIs internal

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Slowpath trace APIs are only used in rte_eventdev.c so make them as internal. Signed-off-by: Pavan Nikhilesh Acked-by: Jay Jayatheerthan --- lib/eventdev/{rte_eventdev_trace.h => eventdev_trace.h} | 0 lib/eventdev/eventdev_trace_points.c| 2 +- lib/e

[dpdk-dev] [PATCH v2 13/13] eventdev: mark trace variables as internal

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Mark rte_trace global variables as internal i.e. remove them from experimental section of version map. Some of them are used in inline APIs, mark those as global. Signed-off-by: Pavan Nikhilesh Acked-by: Ray Kinsella --- lib/eventdev/version.map | 77 ++--

Re: [dpdk-dev] [PATCH v3 1/5] ethdev: add API to negotiate delivery of Rx meta data

2021-10-03 Thread Ivan Malov
Hi Ori, Thanks for reviewing this. On 03/10/2021 10:42, Ori Kam wrote: Hi Andrew and Ivan, -Original Message- From: Andrew Rybchenko Sent: Friday, October 1, 2021 9:50 AM Subject: Re: [PATCH v3 1/5] ethdev: add API to negotiate delivery of Rx meta data On 9/30/21 10:07 PM, Ivan Mal

Re: [dpdk-dev] [PATCH] test/event_crypto: fix event crypto metadata write

2021-10-03 Thread Gujjar, Abhinandan S
Acked-by: Abhinandan Gujjar > -Original Message- > From: Shijith Thotton > Sent: Monday, September 27, 2021 8:59 PM > To: dev@dpdk.org > Cc: sta...@dpdk.org; Shijith Thotton ; > jer...@marvell.com; ano...@marvell.com; Gujjar, Abhinandan S > > Subject: [PATCH] test/event_crypto: fix even

Re: [dpdk-dev] [PATCH v4] doc: remove event crypto metadata deprecation note

2021-10-03 Thread Gujjar, Abhinandan S
Acked-by: Abhinandan Gujjar > -Original Message- > From: Shijith Thotton > Sent: Monday, September 27, 2021 8:53 PM > To: dev@dpdk.org > Cc: Shijith Thotton ; Gujjar, Abhinandan S > ; adwiv...@marvell.com; > ano...@marvell.com; gak...@marvell.com; jer...@marvell.com; > pbhagavat...@marve

Re: [dpdk-dev] [PATCH v5 5/5] devargs: parse global device syntax

2021-10-03 Thread Xueming(Steven) Li
On Tue, 2021-09-28 at 11:04 +0200, Thomas Monjalon wrote: > 28/09/2021 10:29, David Marchand: > > On Tue, Apr 13, 2021 at 5:15 AM Xueming Li wrote: > > > > > > When parsing a devargs, try to parse using the global device syntax > > > first. Fallback on legacy syntax on error. > > > > > > Example

Re: [dpdk-dev] [PATCH v3 1/5] ethdev: add API to negotiate delivery of Rx meta data

2021-10-03 Thread Ori Kam
Hi > -Original Message- > From: Ivan Malov > Subject: Re: [dpdk-dev] [PATCH v3 1/5] ethdev: add API to negotiate delivery > of Rx meta data > > > > On 01/10/2021 01:12, Ajit Khaparde wrote: > > On Thu, Sep 30, 2021 at 3:01 PM Ivan Malov > wrote: > >> > >> Hi Ajit, > >> > >> On 01/10/2

Re: [dpdk-dev] [PATCH v6 2/2] ethdev: change queue release callback

2021-10-03 Thread Matan Azrad
From: Xueming(Steven) Li > Currently, most ethdev callback API use queue ID as parameter, but Rx > and Tx queue release callback use queue object which is used by Rx and > Tx burst data plane callback. > > To align with other eth device queue configuration callbacks: > - queue release callbacks

Re: [dpdk-dev] [PATCH v3 1/5] ethdev: add API to negotiate delivery of Rx meta data

2021-10-03 Thread Ori Kam
Hi Andrew and Ivan, > -Original Message- > From: Andrew Rybchenko > Sent: Friday, October 1, 2021 9:50 AM > Subject: Re: [PATCH v3 1/5] ethdev: add API to negotiate delivery of Rx meta > data > > On 9/30/21 10:07 PM, Ivan Malov wrote: > > Hi Ori, > > > > On 30/09/2021 17:59, Ori Kam wro

Re: [dpdk-dev] [PATCH v3 1/5] ethdev: add API to negotiate delivery of Rx meta data

2021-10-03 Thread Ori Kam
Hi Ivan, > -Original Message- > From: Ivan Malov > Sent: Sunday, October 3, 2021 12:30 PM > data > > Hi Ori, > > Thanks for reviewing this. > No problem. > On 03/10/2021 10:42, Ori Kam wrote: > > Hi Andrew and Ivan, > > > > > >> -Original Message- > >> From: Andrew Rybchenko

Re: [dpdk-dev] [PATCH v1 01/12] ethdev: add ethdev item to flow API

2021-10-03 Thread Ori Kam
Hi Andrew and Ivan, > -Original Message- > From: Andrew Rybchenko > Sent: Friday, October 1, 2021 4:47 PM > Subject: [PATCH v1 01/12] ethdev: add ethdev item to flow API > > From: Ivan Malov > > For use with "transfer" flows. Supposed to match traffic transmitted by the > DPDK applicat

Re: [dpdk-dev] [PATCH v1 02/12] ethdev: add eswitch port item to flow API

2021-10-03 Thread Ori Kam
Hi Andrew and Ivan, > -Original Message- > From: Andrew Rybchenko > Sent: Friday, October 1, 2021 4:47 PM > Subject: [PATCH v1 02/12] ethdev: add eswitch port item to flow API > > From: Ivan Malov > > For use with "transfer" flows. Supposed to match traffic entering the e-switch > from

[dpdk-dev] [Bug 821] net/bnxt build failure with clang 3.4.2

2021-10-03 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=821 Bug ID: 821 Summary: net/bnxt build failure with clang 3.4.2 Product: DPDK Version: unspecified Hardware: All OS: All Status: UNCONFIRMED Severity: normal

Re: [dpdk-dev] [PATCH v3 1/5] ethdev: add API to negotiate delivery of Rx meta data

2021-10-03 Thread Ivan Malov
Hi Ori, On 03/10/2021 14:01, Ori Kam wrote: Hi Ivan, -Original Message- From: Ivan Malov Sent: Sunday, October 3, 2021 12:30 PM data Hi Ori, Thanks for reviewing this. No problem. On 03/10/2021 10:42, Ori Kam wrote: Hi Andrew and Ivan, -Original Message- From: Andre

Re: [dpdk-dev] [PATCH v1 01/12] ethdev: add ethdev item to flow API

2021-10-03 Thread Ivan Malov
Hi Ori, On 03/10/2021 14:52, Ori Kam wrote: Hi Andrew and Ivan, -Original Message- From: Andrew Rybchenko Sent: Friday, October 1, 2021 4:47 PM Subject: [PATCH v1 01/12] ethdev: add ethdev item to flow API From: Ivan Malov For use with "transfer" flows. Supposed to match traffic tr

Re: [dpdk-dev] [PATCH v1 2/7] eal/interrupts: implement get set APIs

2021-10-03 Thread Dmitry Kozlyuk
2021-09-03 18:10 (UTC+0530), Harman Kalra: > [...] > diff --git a/lib/eal/common/eal_common_interrupts.c > b/lib/eal/common/eal_common_interrupts.c > new file mode 100644 > index 00..2e4fed96f0 > --- /dev/null > +++ b/lib/eal/common/eal_common_interrupts.c > @@ -0,0 +1,506 @@ > +/* SPDX-Li

Re: [dpdk-dev] [PATCH v1 02/12] ethdev: add eswitch port item to flow API

2021-10-03 Thread Ivan Malov
On 03/10/2021 15:40, Ori Kam wrote: Hi Andrew and Ivan, -Original Message- From: Andrew Rybchenko Sent: Friday, October 1, 2021 4:47 PM Subject: [PATCH v1 02/12] ethdev: add eswitch port item to flow API From: Ivan Malov For use with "transfer" flows. Supposed to match traffic en

Re: [dpdk-dev] [PATCH v1 6/7] eal/interrupts: make interrupt handle structure opaque

2021-10-03 Thread Dmitry Kozlyuk
2021-09-03 18:11 (UTC+0530), Harman Kalra: > [...] > @@ -31,11 +54,40 @@ struct rte_intr_handle > *rte_intr_handle_instance_alloc(int size, > } > > for (i = 0; i < size; i++) { > + if (from_hugepage) > + intr_handle[i].efds = rte_zmalloc(NULL, > +

[dpdk-dev] [PATCH 1/3] examples/l3fwd: increase number of routes

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Increase the number of routes from 8 to 16 that are statically added for lpm and em mode as most of the SoCs support more than 8 interfaces. The number of routes added is equal to the number of ethernet devices ports enabled through port mask. Signed-off-by: Pavan Nikhilesh

[dpdk-dev] [PATCH 2/3] examples/l3fwd: print port bdf when adding routes

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Since the number of Ethernet ports have gone up, print the pci bdf along with the routes. This is also helpful for cases where allow listing order is not honored. Signed-off-by: Pavan Nikhilesh --- examples/l3fwd/l3fwd_fib.c | 16 ++-- examples/l3fwd/l3fwd_lpm

[dpdk-dev] [PATCH 3/3] examples/l3fwd: use reserved addresses for EM mode

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh The l3fwd example should use the reserved IPv4/v6 reserved address ranges defined in RFC5735, RFC5180 and RFC863 discard protocol for the port number in the exact match mode of L3 forwarding. Signed-off-by: Pavan Nikhilesh --- doc/guides/rel_notes/release_21_11.rst | 6

[dpdk-dev] [PATCH v4 1/3] examples/l3fwd: increase number of routes

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Increase the number of routes from 8 to 16 that are statically added for lpm and em mode as most of the SoCs support more than 8 interfaces. The number of routes added is equal to the number of ethernet devices ports enabled through port mask. Signed-off-by: Pavan Nikhilesh

[dpdk-dev] [PATCH v4 2/3] examples/l3fwd: print port bdf when adding routes

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Since the number of Ethernet ports have gone up, print the pci bdf along with the routes. This is also helpful for cases where allow listing order is not honored. Signed-off-by: Pavan Nikhilesh --- examples/l3fwd/l3fwd_fib.c | 16 ++-- examples/l3fwd/l3fwd_lpm

[dpdk-dev] [PATCH v4 3/3] examples/l3fwd: use reserved addresses for EM mode

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh The l3fwd example should use the reserved IPv4/v6 reserved address ranges defined in RFC5735, RFC5180 and RFC863 discard protocol for the port number in the exact match mode of L3 forwarding. Signed-off-by: Pavan Nikhilesh --- doc/guides/rel_notes/release_21_11.rst | 6

[dpdk-dev] [PATCH v4 1/3] net/thunderx: enable build only on 64-bit Linux

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Due to Linux kernel AF(Admin fuction) driver dependency, only enable build for 64-bit Linux. Signed-off-by: Pavan Nikhilesh Acked-by: Jerin Jacob --- v4 Changes: - Update commit message regarding dependency on AF driver. drivers/net/thunderx/meson.build | 4 ++-- 1 fi

[dpdk-dev] [PATCH v4 2/3] common/octeontx: enable build only on 64-bit Linux

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Due to Linux kernel AF(Admin fuction) driver dependency, only enable build for 64-bit Linux. Signed-off-by: Pavan Nikhilesh Acked-by: Jerin Jacob --- drivers/common/octeontx/meson.build | 4 ++-- drivers/compress/octeontx/meson.build | 6 ++ drivers/crypto/octeontx

[dpdk-dev] [PATCH v4 3/3] common/octeontx2: enable build only on 64-bit Linux

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Due to Linux kernel AF(Admin Fuction) driver dependency, only enable build for 64-bit Linux. Signed-off-by: Pavan Nikhilesh Acked-by: Jerin Jacob --- drivers/common/octeontx2/meson.build | 10 ++ drivers/event/octeontx2/meson.build | 4 ++-- drivers/mempool/o

Re: [dpdk-dev] [PATCH v3 3/7] ethdev: copy ethdev 'fast' API into separate structure

2021-10-03 Thread Ananyev, Konstantin
> >Copy public function pointers (rx_pkt_burst(), etc.) and related > >pointers to internal data from rte_eth_dev structure into a > >separate flat array. That array will remain in a public header. > >The intention here is to make rte_eth_dev and related structures > >internal. > >That should all

Re: [dpdk-dev] [PATCH v3 1/7] ethdev: allocate max space for internal queue array

2021-10-03 Thread Ananyev, Konstantin
> > >At queue configure stage always allocate space for maximum possible > >number (RTE_MAX_QUEUES_PER_PORT) of queue pointers. > >That will allow 'fast' inline functions (eth_rx_burst, etc.) to refer > >pointer to internal queue data without extra checking of current > >number > >of configured

Re: [dpdk-dev] [PATCH v4 1/3] security: add SA config option for inner pkt csum

2021-10-03 Thread Ananyev, Konstantin
> > Add inner packet IPv4 hdr and L4 checksum enable options > in conf. These will be used in case of protocol offload. > Per SA, application could specify whether the > checksum(compute/verify) can be offloaded to security device. > > Signed-off-by: Archana Muniganti > --- > doc/guides/cryp

Re: [dpdk-dev] [PATCH v3 3/7] ethdev: copy ethdev 'fast' API into separate structure

2021-10-03 Thread Pavan Nikhilesh Bhagavatula
> >> >Copy public function pointers (rx_pkt_burst(), etc.) and related >> >pointers to internal data from rte_eth_dev structure into a >> >separate flat array. That array will remain in a public header. >> >The intention here is to make rte_eth_dev and related structures >> >internal. >> >That shou

[dpdk-dev] [PATCH v3 1/2] hash: split x86 and SW hash CRC intrinsics

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Split x86 and SW hash crc intrinsics into a separate files. Signed-off-by: Pavan Nikhilesh --- v3 Changes: - Split x86 and SW hash crc functions into separate files. - Rename `rte_crc_arm64.h` to `hash_crc_arm64.h` as it is internal and not installed by meson build.

[dpdk-dev] [PATCH v3 2/2] hash: unify crc32 selection for x86 and Arm

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Merge crc32 hash calculation public API implementation for x86 and Arm. Select the best available CRC32 algorithm when unsupported algorithm on a given CPU architecture is requested by an application. Previously, if an application directly includes `rte_crc_arm64.h` without

Re: [dpdk-dev] [PATCH v3 1/5] ethdev: add API to negotiate delivery of Rx meta data

2021-10-03 Thread Ivan Malov
Hi Ori, On 04/10/2021 00:04, Ori Kam wrote: Hi Ivan, Sorry for the long review. -Original Message- From: Ivan Malov Sent: Sunday, October 3, 2021 8:30 PM Subject: Re: [PATCH v3 1/5] ethdev: add API to negotiate delivery of Rx meta data Hi Ori, On 03/10/2021 14:01, Ori Kam wrote: H

Re: [dpdk-dev] [PATCH v1 01/12] ethdev: add ethdev item to flow API

2021-10-03 Thread Ivan Malov
Hi Ori, On 04/10/2021 00:09, Ori Kam wrote: Hi Ivan, -Original Message- From: Ivan Malov Subject: Re: [PATCH v1 01/12] ethdev: add ethdev item to flow API Hi Ori, On 03/10/2021 14:52, Ori Kam wrote: Hi Andrew and Ivan, -Original Message- From: Andrew Rybchenko Sent: Frid

Re: [dpdk-dev] [PATCH v6 2/2] ethdev: change queue release callback

2021-10-03 Thread Ajit Khaparde
On Sun, Oct 3, 2021 at 12:38 AM Matan Azrad wrote: > > > From: Xueming(Steven) Li > > Currently, most ethdev callback API use queue ID as parameter, but Rx > > and Tx queue release callback use queue object which is used by Rx and > > Tx burst data plane callback. > > > > To align with other eth

Re: [dpdk-dev] [PATCH v3 1/5] ethdev: add API to negotiate delivery of Rx meta data

2021-10-03 Thread Ori Kam
Hi Ivan, Sorry for the long review. > -Original Message- > From: Ivan Malov > Sent: Sunday, October 3, 2021 8:30 PM > Subject: Re: [PATCH v3 1/5] ethdev: add API to negotiate delivery of Rx meta > data > > Hi Ori, > > On 03/10/2021 14:01, Ori Kam wrote: > > Hi Ivan, > > > >> -Origi

Re: [dpdk-dev] [PATCH v1 01/12] ethdev: add ethdev item to flow API

2021-10-03 Thread Ori Kam
Hi Ivan, > -Original Message- > From: Ivan Malov > Subject: Re: [PATCH v1 01/12] ethdev: add ethdev item to flow API > > Hi Ori, > > On 03/10/2021 14:52, Ori Kam wrote: > > Hi Andrew and Ivan, > > > >> -Original Message- > >> From: Andrew Rybchenko > >> Sent: Friday, October 1,

Re: [dpdk-dev] [PATCH v4 2/6] net/iavf: rework tx path

2021-10-03 Thread Wu, Jingjing
> -Original Message- > From: Nicolau, Radu > Sent: Friday, October 1, 2021 5:51 PM > To: Wu, Jingjing ; Xing, Beilei > ; Richardson, > Bruce ; Ananyev, Konstantin > > Cc: dev@dpdk.org; Doherty, Declan ; Sinha, Abhijit > ; Zhang, Qi Z ; Nicolau, Radu > > Subject: [PATCH v4 2/6] net/i

Re: [dpdk-dev] [PATCH v4 3/6] net/iavf: add support for asynchronous virt channel messages

2021-10-03 Thread Wu, Jingjing
> -Original Message- > From: Nicolau, Radu > Sent: Friday, October 1, 2021 5:51 PM > To: Wu, Jingjing ; Xing, Beilei > Cc: dev@dpdk.org; Doherty, Declan ; Sinha, Abhijit > ; Zhang, Qi Z ; Richardson, > Bruce > ; Ananyev, Konstantin > ; > Nicolau, Radu > Subject: [PATCH v4 3/6] net/i

Re: [dpdk-dev] [PATCH v4 4/6] net/iavf: add iAVF IPsec inline crypto support

2021-10-03 Thread Wu, Jingjing
> -Original Message- > From: Nicolau, Radu > Sent: Friday, October 1, 2021 5:51 PM > To: Wu, Jingjing ; Xing, Beilei > ; Ray Kinsella > > Cc: dev@dpdk.org; Doherty, Declan ; Sinha, Abhijit > ; Zhang, Qi Z ; Richardson, > Bruce > ; Ananyev, Konstantin > ; > Nicolau, Radu > Subject:

Re: [dpdk-dev] [PATCH v4 5/6] net/iavf: add xstats support for inline IPsec crypto

2021-10-03 Thread Wu, Jingjing
> -Original Message- > From: Nicolau, Radu > Sent: Friday, October 1, 2021 5:51 PM > To: Wu, Jingjing ; Xing, Beilei > Cc: dev@dpdk.org; Doherty, Declan ; Sinha, Abhijit > ; Zhang, Qi Z ; Richardson, > Bruce > ; Ananyev, Konstantin > ; > Nicolau, Radu > Subject: [PATCH v4 5/6] net/i

Re: [dpdk-dev] [PATCH v4 6/6] net/iavf: add watchdog for VFLR

2021-10-03 Thread Wu, Jingjing
> -Original Message- > From: Nicolau, Radu > Sent: Friday, October 1, 2021 5:52 PM > To: Wu, Jingjing ; Xing, Beilei > Cc: dev@dpdk.org; Doherty, Declan ; Sinha, Abhijit > ; Zhang, Qi Z ; Richardson, > Bruce > ; Ananyev, Konstantin > ; > Nicolau, Radu > Subject: [PATCH v4 6/6] net/i

[dpdk-dev] [PATCH v5 1/5] eventdev/rx_adapter: add event buffer size configurability

2021-10-03 Thread Naga Harish K S V
Currently event buffer is static array with a default size defined internally. To configure event buffer size from application, ``rte_event_eth_rx_adapter_create_with_params`` api is added which takes ``struct rte_event_eth_rx_adapter_params`` to configure event buffer size in addition other param

[dpdk-dev] [PATCH v5 2/5] test/event: add unit test for Rx adapter

2021-10-03 Thread Naga Harish K S V
this patch adds unit test for rte_event_eth_rx_adapter_create_with_params api and validate all possible input combinations. Signed-off-by: Naga Harish K S V --- app/test/test_event_eth_rx_adapter.c | 53 +--- 1 file changed, 49 insertions(+), 4 deletions(-) diff --git a/

[dpdk-dev] [PATCH v5 3/5] eventdev/rx_adapter: introduce per queue event buffer

2021-10-03 Thread Naga Harish K S V
To configure per queue event buffer size, application sets ``rte_event_eth_rx_adapter_params::use_queue_event_buf`` flag as true and is passed to ``rte_event_eth_rx_adapter_create_with_params`` api. The per queue event buffer size is populated in ``rte_event_eth_rx_adapter_queue_conf::event_buf_s

[dpdk-dev] [PATCH v5 4/5] eventdev/rx_adapter: implement per queue event buffer

2021-10-03 Thread Naga Harish K S V
this patch implement the per queue event buffer with required validations. Signed-off-by: Naga Harish K S V --- lib/eventdev/rte_event_eth_rx_adapter.c | 187 +--- 1 file changed, 138 insertions(+), 49 deletions(-) diff --git a/lib/eventdev/rte_event_eth_rx_adapter.c b/lib/

[dpdk-dev] [PATCH v5 5/5] test/event: add unit test for Rx adapter

2021-10-03 Thread Naga Harish K S V
this patch adds unit tests for checking per rx queue event buffer feature using rte_event_eth_rx_adapter_queue_add api. Signed-off-by: Naga Harish K S V --- app/test/test_event_eth_rx_adapter.c | 86 1 file changed, 86 insertions(+) diff --git a/app/test/test_event_

[dpdk-dev] [PATCH v4 1/2] hash: split x86 and SW hash CRC intrinsics

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Split x86 and SW hash crc intrinsics into a separate files. Signed-off-by: Pavan Nikhilesh --- v4 Changes: - Fix compilation issues v3 Changes: - Split x86 and SW hash crc functions into separate files. - Rename `rte_crc_arm64.h` to `hash_crc_arm64.h` as it is intern

[dpdk-dev] [PATCH v4 2/2] hash: unify crc32 selection for x86 and Arm

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Merge crc32 hash calculation public API implementation for x86 and Arm. Select the best available CRC32 algorithm when unsupported algorithm on a given CPU architecture is requested by an application. Previously, if an application directly includes `rte_crc_arm64.h` without

[dpdk-dev] [PATCH v5 1/3] net/thunderx: enable build only on 64-bit Linux

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Due to Linux kernel AF(Admin function) driver dependency, only enable build for 64-bit Linux. Signed-off-by: Pavan Nikhilesh Acked-by: Jerin Jacob --- v5 Changes - s/fuction/function. v4 Changes: - Update commit message regarding dependency on AF driver. drivers/ne

[dpdk-dev] [PATCH v5 2/3] common/octeontx: enable build only on 64-bit Linux

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Due to Linux kernel AF(Admin function) driver dependency, only enable build for 64-bit Linux. Signed-off-by: Pavan Nikhilesh Acked-by: Jerin Jacob --- drivers/common/octeontx/meson.build | 4 ++-- drivers/compress/octeontx/meson.build | 6 ++ drivers/crypto/octeont

[dpdk-dev] [PATCH v5 3/3] common/octeontx2: enable build only on 64-bit Linux

2021-10-03 Thread pbhagavatula
From: Pavan Nikhilesh Due to Linux kernel AF(Admin Function) driver dependency, only enable build for 64-bit Linux. Signed-off-by: Pavan Nikhilesh Acked-by: Jerin Jacob --- drivers/common/octeontx2/meson.build | 10 ++ drivers/event/octeontx2/meson.build | 4 ++-- drivers/mempool/

Re: [dpdk-dev] Recent change to make rte_cryptodev_pmd.h internal prevents some important functionality

2021-10-03 Thread Akhil Goyal
Hi Paul, Similar comment was discussed in ML for fips_validation app. https://mails.dpdk.org/archives/dev/2021-August/217781.html I believe Fan is working on it to fix the issue. Fan, Could you please share the update. Regards, Akhil Note: Please CC maintainers for a prompt response, or else ma

[dpdk-dev] [PATCH] crypto/cnxk: use IE engine group for IPsec

2021-10-03 Thread Archana Muniganti
Use IE engine group for cn9k IPsec. Signed-off-by: Archana Muniganti --- drivers/crypto/cnxk/cn9k_ipsec.c | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/drivers/crypto/cnxk/cn9k_ipsec.c b/drivers/crypto/cnxk/cn9k_ipsec.c index 63ae025030..9ca4d20c62 100644 --- a/dri

Re: [dpdk-dev] [PATCH] crypto/cnxk: use IE engine group for IPsec

2021-10-03 Thread Anoob Joseph
> > Use IE engine group for cn9k IPsec. > > Signed-off-by: Archana Muniganti > --- > drivers/crypto/cnxk/cn9k_ipsec.c | 9 ++--- > 1 file changed, 6 insertions(+), 3 deletions(-) > Acked-by: Anoob Joseph