11/07/2020 20:58, Ivan Dyukov:
> 11.07.2020 14:27, Thomas Monjalon пишет:
> > 11/07/2020 12:43, Ivan Dyukov:
> >> +__rte_experimental
> >> +int rte_eth_link_printf(const char *const fmt,
> >> + const struct rte_eth_link *eth_link);
> >>
> > Maybe I missed your reply,
> > I sti
Hi Bing,
On Sat, Jul 11, 2020 at 04:25:49AM +, Bing Zhao wrote:
> Hi Olivier,
> Many thanks for your comments.
[...]
> > > +/**
> > > + * eCPRI Common Header
> > > + */
> > > +RTE_STD_C11
> > > +struct rte_ecpri_common_hdr {
> > > +#if RTE_BYTE_ORDER == RTE_LITTLE_ENDIAN
> > > + uint32_t siz
This patch set contains two commits.
1. header definition of the ethdev API
2. testpmd support for the eCPRI flow item
---
v2: Add dw0 for the eCPRI common header to switch the endianess, and
use fixed u32 value with big-endian for rte_flow_item_ecpri_mask.
It is due to the fact that globa
Add a new item "rte_flow_item_ecpri" in order to match eCRPI header.
eCPRI is a packet based protocol used in the fronthaul interface of
5G networks. Header format definition could be found in the
specification via the link below:
https://www.gigalight.com/downloads/standards/ecpri-specification.p
In order to verify offloading of eCPRI protocol via flow rules, the
command line of flow creation should support the parsing of the eCPRI
pattern.
Based on the specification, one eCPRI message will have the common
header and payload. Payload format is various based on the type field
of the common
Hi,
Reviewed-by: Rosen Xu
> -Original Message-
> From: Richardson, Bruce
> Sent: Thursday, July 09, 2020 23:21
> To: Nipun Gupta ; Hemant Agrawal
>
> Cc: dev@dpdk.org; Xu, Rosen ; Zhang, Tianfei
> ; Li, Xiaoyun ; Wu, Jingjing
> ; Satha Rao ; Mahipal
> Challa ; Jerin Jacob ;
> Richardso
Hi,
Reviewed-by: Rosen Xu
> -Original Message-
> From: Richardson, Bruce
> Sent: Thursday, July 09, 2020 23:21
> To: Nipun Gupta ; Hemant Agrawal
>
> Cc: dev@dpdk.org; Xu, Rosen ; Zhang, Tianfei
> ; Li, Xiaoyun ; Wu, Jingjing
> ; Satha Rao ; Mahipal
> Challa ; Jerin Jacob ;
> Richardso
Hi,
Reviewed-by: Rosen Xu
> -Original Message-
> From: Richardson, Bruce
> Sent: Thursday, July 09, 2020 23:21
> To: Nipun Gupta ; Hemant Agrawal
>
> Cc: dev@dpdk.org; Xu, Rosen ; Zhang, Tianfei
> ; Li, Xiaoyun ; Wu, Jingjing
> ; Satha Rao ; Mahipal
> Challa ; Jerin Jacob ;
> Richardso
Hi Olivier,
Thanks
BR. Bing
> -Original Message-
> From: Olivier Matz
> Sent: Sunday, July 12, 2020 9:18 PM
> To: Bing Zhao
> Cc: Ori Kam ; john.mcnam...@intel.com;
> marko.kovace...@intel.com; Thomas Monjalon
> ; ferruh.yi...@intel.com;
> arybche...@solarflare.com; akhil.go...@nxp.com;
On Sun, Jul 12, 2020 at 02:28:03PM +, Bing Zhao wrote:
> Hi Olivier,
> Thanks
>
> BR. Bing
>
> > -Original Message-
> > From: Olivier Matz
> > Sent: Sunday, July 12, 2020 9:18 PM
> > To: Bing Zhao
> > Cc: Ori Kam ; john.mcnam...@intel.com;
> > marko.kovace...@intel.com; Thomas Monja
On Sun, Jul 12, 2020 at 09:35:02PM +0800, Bing Zhao wrote:
> Add a new item "rte_flow_item_ecpri" in order to match eCRPI header.
>
> eCPRI is a packet based protocol used in the fronthaul interface of
> 5G networks. Header format definition could be found in the
> specification via the link below
Many thanks for your big help.
BR. Bing
> -Original Message-
> From: Olivier Matz
> Sent: Sunday, July 12, 2020 10:46 PM
> To: Bing Zhao
> Cc: Ori Kam ; john.mcnam...@intel.com;
> marko.kovace...@intel.com; Thomas Monjalon
> ; ferruh.yi...@intel.com;
> arybche...@solarflare.com; akhil.g
Hi Oz,
I started to learn about this and have a couple of questions below.
Thank you in advance.
On Tue, Jun 9, 2020 at 8:07 AM Oz Shlomo wrote:
>
> Rte_flow API provides the building blocks for vendor agnostic flow
> classification offloads. The rte_flow match and action primitives are fine
>
On Sun, 12 Jul 2020 09:35:23 +0200
Thomas Monjalon wrote:
> 11/07/2020 20:58, Ivan Dyukov:
> > 11.07.2020 14:27, Thomas Monjalon пишет:
> > > 11/07/2020 12:43, Ivan Dyukov:
> > >> +__rte_experimental
> > >> +int rte_eth_link_printf(const char *const fmt,
> > >> + const s
12.07.2020 10:35, Thomas Monjalon пишет:
> 11/07/2020 20:58, Ivan Dyukov:
>> 11.07.2020 14:27, Thomas Monjalon пишет:
>>> 11/07/2020 12:43, Ivan Dyukov:
+__rte_experimental
+int rte_eth_link_printf(const char *const fmt,
+ const struct rte_eth_link *eth_link);
>
From: Yuval Avnery
Add the DRV_LOG macro which should be used for error prints.
Signed-off-by: Yuval Avnery
Acked-by: Ori Kam
---
drivers/regex/mlx5/Makefile | 1 +
drivers/regex/mlx5/mlx5_regex.c | 4
drivers/regex/mlx5/mlx5_regex_utils.h | 19 +++
3 f
From: Yuval Avnery
This commit introduce the RegEx poll mode drivers class, and
adds Mellanox RegEx PMD.
Signed-off-by: Yuval Avnery
Signed-off-by: Ori Kam
---
v2:
* Add documantion.
---
MAINTAINERS | 12 +++
config/common_base
From: Yuval Avnery
Add regex commands structs to support regex.
Signed-off-by: Yuval Avnery
Acked-by: Viacheslav Ovsiienko
---
drivers/common/mlx5/mlx5_prm.h | 89 +-
1 file changed, 88 insertions(+), 1 deletion(-)
diff --git a/drivers/common/mlx5/mlx
This patch series introduce the Mellanox BF2 RegEx PMD.
Mellanox BF2 RegEx PMD implement the API defined in the
regexdev lib [1].
This PMD allows a DPDK application to offload the RegEx functionality
to Mellanox BF2 RegEx engine.
[1] https://patches.dpdk.org/cover/72792/
v2:
* Rebase.
* Add
From: Yuval Avnery
Added General purpose PRM MMO structs, and regex specific structs.
Signed-off-by: Yuval Avnery
Signed-off-by: Ori Kam
---
drivers/common/mlx5/mlx5_prm.h | 40
1 file changed, 40 insertions(+)
diff --git a/drivers/common/mlx5/mlx5_pr
From: Parav Pandit
This commit indroduce the mlx5_rxp_csrs.h file. This file holds all the
relevant defines for the RXP engine.
Signed-off-by: Parav Pandit
Signed-off-by: Ori Kam
---
drivers/regex/mlx5/mlx5_rxp_csrs.h | 338 +
1 file changed, 338 insertions
This commits add the write and read RXP registers functionality.
Signed-off-by: Ori Kam
Acked-by: Viacheslav Ovsiienko
---
drivers/common/mlx5/mlx5_devx_cmds.c| 78 +
drivers/common/mlx5/mlx5_devx_cmds.h| 10
drivers/common/mlx5/rte_common_m
This commit checks the engine status.
Signed-off-by: Ori Kam
---
drivers/regex/mlx5/mlx5_regex.c | 28
1 file changed, 28 insertions(+)
diff --git a/drivers/regex/mlx5/mlx5_regex.c b/drivers/regex/mlx5/mlx5_regex.c
index d264ecd..c469a10 100644
--- a/drivers/regex/m
This commit adds the database set command for the RXP engine.
Signed-off-by: Ori Kam
Acked-by: Viacheslav Ovsiienko
---
drivers/common/mlx5/mlx5_devx_cmds.c| 104
drivers/common/mlx5/mlx5_devx_cmds.h| 8 +-
drivers/common/mlx5/rte_common_mlx5_
From: Yuval Avnery
Update hca cap struct and common query hca cap function.
Signed-off-by: Yuval Avnery
Acked-by: Viacheslav Ovsiienko
---
drivers/common/mlx5/mlx5_devx_cmds.c | 3 +++
drivers/common/mlx5/mlx5_devx_cmds.h | 2 ++
drivers/common/mlx5/mlx5_prm.h | 9 +++--
3 files ch
This commit adds the probe function to the RegEx PMD.
Signed-off-by: Parav Pandit
Signed-off-by: Ori Kam
---
drivers/regex/mlx5/Makefile | 3 +
drivers/regex/mlx5/meson.build | 2 +-
drivers/regex/mlx5/mlx5_regex.c | 215
drivers/regex/mlx5/mlx5
This commit adds the creation of CQ
Signed-off-by: Ori Kam
---
drivers/regex/mlx5/Makefile | 1 +
drivers/regex/mlx5/meson.build | 1 +
drivers/regex/mlx5/mlx5_regex.c | 1 +
drivers/regex/mlx5/mlx5_regex.h | 4 +-
drivers/regex/mlx5/mlx5_regex_contro
This commit introduce the SQ creation.
The SQ is used for enqueuing a job.
In order to support out of order matches, we create number
os SQ per one applicaiton QP.
Signed-off-by: Ori Kam
---
drivers/regex/mlx5/mlx5_regex.h | 2 +
drivers/regex/mlx5/mlx5_regex_control.c | 168 +
From: Francis Kelly
This commit introduce the ability to program rules to the
RegEx engine.
Signed-off-by: Francis Kelly
---
drivers/regex/mlx5/mlx5_regex.c | 34 ++
drivers/regex/mlx5/mlx5_regex.h | 56 ++-
drivers/regex/mlx5/mlx5_rxp.c | 1015 +--
dr
This commit implements the configure function.
This function is responsible to configure the RegEx engine.
Signed-off-by: Ori Kam
---
drivers/regex/mlx5/mlx5_regex.c | 2 +
drivers/regex/mlx5/mlx5_regex.h | 15 +++
drivers/regex/mlx5/mlx5_rxp.c | 279 +++-
This commit adds the get info function.
Signed-off-by: Ori Kam
---
drivers/regex/mlx5/Makefile | 1 +
drivers/regex/mlx5/meson.build | 1 +
drivers/regex/mlx5/mlx5_regex.c | 5 -
drivers/regex/mlx5/mlx5_regex.h | 5 +
drivers/regex/mlx5/mlx5_rxp.c | 41
Add the start, stop and close functions.
In current implementation they are empty functions
and are only exists in order that when called
from rte level, the function will return with success code.
Signed-off-by: Ori Kam
---
drivers/regex/mlx5/mlx5_regex.c | 20
drivers/rege
From: Yuval Avnery
Will look for a free SQ to send the job on.
doorbell will be given when sq is full, or no more jobs on the burst.
Signed-off-by: Yuval Avnery
Acked-by: Ori Kam
---
drivers/regex/mlx5/mlx5_regex.c | 1 +
drivers/regex/mlx5/mlx5_regex.h | 6 ++
drivers/
From: Yuval Avnery
Add the found match tuple.
Signed-off-by: Yuval Avnery
Acked-by: Viacheslav Ovsiienko
---
drivers/common/mlx5/mlx5_prm.h | 6 ++
1 file changed, 6 insertions(+)
diff --git a/drivers/common/mlx5/mlx5_prm.h b/drivers/common/mlx5/mlx5_prm.h
index bfbc58b..874dde6 100644
From: Yuval Avnery
Implement dequeue function for the regex API.
Signed-off-by: Yuval Avnery
Acked-by: Ori Kam
---
drivers/regex/mlx5/mlx5_regex.c | 1 +
drivers/regex/mlx5/mlx5_regex.h | 4 ++
drivers/regex/mlx5/mlx5_regex_control.c | 1 +
drivers/regex/mlx5/mlx5_re
From: Yuval Avnery
Allocated and register input/output buffers and metadata.
Signed-off-by: Yuval Avnery
Acked-by: Ori Kam
---
drivers/regex/mlx5/Makefile | 1 +
drivers/regex/mlx5/meson.build | 1 +
drivers/regex/mlx5/mlx5_regex.h | 8 ++
drivers/regex/
02/07/2020 20:53, Akhil Goyal:
> Hi Marko/Fan,
>
> Could you please review this series?
What happens? Nobody to review this?
> > Subject: [PATCH 1/3] examples/fips_validation: fix TDES interim callback
> >
> > Fix missing callback registration and the incorrect
> > callback definition for inter
12/07/2020 16:45, Olivier Matz:
> On Sun, Jul 12, 2020 at 09:35:02PM +0800, Bing Zhao wrote:
> > Add a new item "rte_flow_item_ecpri" in order to match eCRPI header.
> >
> > eCPRI is a packet based protocol used in the fronthaul interface of
> > 5G networks. Header format definition could be found
A new DPDK release candidate is ready for testing:
https://git.dpdk.org/dpdk/tag/?id=v20.08-rc1
There are 778 new patches in this snapshot.
Release notes:
https://doc.dpdk.org/guides/rel_notes/release_20_08.html
Highlights of 20.08-rc1, grouped by category:
* General
- ex
Hi,
We are also doing C11 atomics converting for other components.
Your insight would be much appreciated.
Thanks,
Phil Yang
> -Original Message-
> From: dev On Behalf Of Phil Yang
> Sent: Tuesday, June 23, 2020 4:27 PM
> To: dev@dpdk.org
> Cc: ma...@mellanox.com; shah...@mellanox.com;
-Original Message-
From: Thomas Monjalon
Sent: Saturday, July 11, 2020 7:16 PM
To: Gagandeep Singh ; Hemant Agrawal
Cc: dev@dpdk.org; ferruh.yi...@intel.com
Subject: Re: [dpdk-dev] [PATCH v2 03/29] net/dpaa2: enable timestamp for Rx
offload case as well
Importance: High
07/07/2020 11
-Original Message-
From: Stephen Hemminger
Sent: Sunday, July 12, 2020 8:42 AM
To: Hemant Agrawal
Cc: dev@dpdk.org; maryam.tah...@intel.com; reshma.pat...@intel.com
Subject: Re: [dpdk-dev] [PATCH v2] app/procinfo: enhance port mempool and
crypto info
Importance: High
On Sat, 11 Jul 2
Hi William,
On 7/12/2020 7:34 PM, William Tu wrote:
Hi Oz,
I started to learn about this and have a couple of questions below.
Thank you in advance.
On Tue, Jun 9, 2020 at 8:07 AM Oz Shlomo wrote:
Rte_flow API provides the building blocks for vendor agnostic flow
classification offloads. T
https://bugs.dpdk.org/show_bug.cgi?id=503
lihong (lihongx...@intel.com) changed:
What|Removed |Added
Resolution|--- |FIXED
Status|UNCONFIRM
Add deprecating the generic rte_atomic_xx APIs to C11 atomic built-ins
guide and examples.
Signed-off-by: Phil Yang
Signed-off-by: Honnappa Nagarahalli
---
doc/guides/prog_guide/writing_efficient_code.rst | 64 +++-
1 file changed, 63 insertions(+), 1 deletion(-)
diff --git
Provide a wrapper for __atomic_thread_fence built-in to support
optimized code for __ATOMIC_SEQ_CST memory order for x86 platforms.
Suggested-by: Honnappa Nagarahalli
Signed-off-by: Phil Yang
Reviewed-by: Ola Liljedahl
Acked-by: Konstantin Ananyev
---
lib/librte_eal/arm/include/rte_atomic_32.
DPDK provides generic rte_atomic APIs to do several atomic operations.
These APIs are using the deprecated __sync built-ins and enforce full
memory barriers on aarch64. However, full barriers are not necessary
in many use cases. In order to address such use cases, C language offers
C11 atomic APIs.
In order to deprecate the rte_atomic and rte_smp barrier APIs, prevent
the patches from using these APIs in the converted modules and compilers
__sync built-ins in all modules.
The converted modules:
lib/librte_distributor
lib/librte_hash
lib/librte_kni
lib/librte_lpm
lib/librte_rcu
lib/librte_rin
Honnappa Nagarahalli writes:
>
> >
> > 07/07/2020 11:50, Phil Yang:
> > > Add the maintainership of C11 atomics code. Different maintainers
> > > focus on different platforms C11 atomics.
> > > --- a/MAINTAINERS
> > > +++ b/MAINTAINERS
> > > +C11 Atomics Code Maintainer
> > > +M: Honnappa Nagar
This patch fix the error line break in the display info of flow query
Fixes: bdb1d61690f7 ("app/testpmd: support RSS config in flow query")
Signed-off-by: Chenxu Di
---
app/test-pmd/config.c | 5 -
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/app/test-pmd/config.c b/app/test
50 matches
Mail list logo