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
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
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
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
---
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
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
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
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
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_
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
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
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
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
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 ++--
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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,
> +
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
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
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
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
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
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
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
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
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
> >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
>
> >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
>
> 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
>
>> >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
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.
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
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
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
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
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
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,
> -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
> -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
> -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:
> -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
> -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
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
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/
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
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/
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_
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
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
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
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
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/
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
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
>
> 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
68 matches
Mail list logo