RE: [PATCH] eal: add notes to SMP memory barrier APIs

2023-06-25 Thread Ruifeng Wang
> -Original Message- > From: Thomas Monjalon > Sent: Wednesday, June 21, 2023 3:30 PM > To: Ruifeng Wang > Cc: david.march...@redhat.com; dev@dpdk.org; konstantin.v.anan...@yandex.ru; > Honnappa > Nagarahalli ; nd > Subject: Re: [PATCH] eal: add notes to SMP memory barrier APIs > > 21/

RE: [PATCH] eal: add notes to SMP memory barrier APIs

2023-06-25 Thread Ruifeng Wang
> -Original Message- > From: Mattias Rönnblom > Sent: Friday, June 23, 2023 2:20 AM > To: Ruifeng Wang ; tho...@monjalon.net; > david.march...@redhat.com > Cc: dev@dpdk.org; konstantin.v.anan...@yandex.ru; Honnappa Nagarahalli > ; nd > Subject: Re: [PATCH] eal: add notes to SMP memory ba

[PATCH] net/ice: fix VLAN mode parser

2023-06-25 Thread Qiming Yang
Parser will not be ctreated if raw packet filter is not support. This patch add NULL pointer check for parser structure when VLAN mode configure. Fixes: 6e753d777ffc ("net/ice: initialize parser for double VLAN") Cc: sta...@dpdk.org Signed-off-by: Qiming Yang --- drivers/net/ice/ice_generic_flo

RE: [PATCH] eal: add notes to SMP memory barrier APIs

2023-06-25 Thread Ruifeng Wang
> -Original Message- > From: Tyler Retzlaff > Sent: Saturday, June 24, 2023 5:51 AM > To: Mattias Rönnblom > Cc: Ruifeng Wang ; tho...@monjalon.net; > david.march...@redhat.com; > dev@dpdk.org; konstantin.v.anan...@yandex.ru; Honnappa Nagarahalli > ; nd > Subject: Re: [PATCH] eal: add n

Re: [PATCH] eal: add notes to SMP memory barrier APIs

2023-06-25 Thread Thomas Monjalon
25/06/2023 10:45, Ruifeng Wang: > From: Tyler Retzlaff > > On Thu, Jun 22, 2023 at 08:19:30PM +0200, Mattias R�nnblom wrote: > > > On 2023-06-21 08:44, Ruifeng Wang wrote: > > > >+ * This function is deprecated. It adds complexity to the memory > > > >+ model > > > >+ * used by this project. C

Re: [PATCH] drivers: remove compile-time option for IEEE 1588

2023-06-25 Thread Thomas Monjalon
23/06/2023 16:00, Ferruh Yigit: > On 2/3/2023 1:28 PM, Thomas Monjalon wrote: > > The option RTE_LIBRTE_IEEE1588 has no effect on any library > > unlike its name. > > > > Also we are suppose to enable/disable features dynamically, > > not at compilation time. > > > > And the best is that this mac

Re: DPDK22 issue: Unable to set more than 4 queues in Azure

2023-06-25 Thread Stephen Hemminger
On Thu, 22 Jun 2023 22:06:10 +0530 Nageswara Rao wrote: > Hi All, > > We are observing the following issue with DPDK22.11. We didn’t find any > upstream patches for this issue on the DPDK github. Is there any known > issue, please let us know. > > > > *Issue:* > > On Azure platform, we are u

Re: [PATCH] crypto/openssl: do not build useless workaround

2023-06-25 Thread Thomas Monjalon
18/04/2023 16:56, Didier Pallard: > This workaround was needed before version 1.0.1f. Do not build it for > versions >= 1.1. > > Fixes: d61f70b4c918 ("crypto/libcrypto: add driver for OpenSSL library") > Signed-off-by: Didier Pallard > Cc: sta...@dpdk.org [...] > +#if OPENSSL_VERSION_NUMBER < 0x1

[PATCH 1/4] net/idpf: refine dev_link_update function

2023-06-25 Thread Mingxia Liu
This patch refines idpf_dev_link_update callback function according to CPFL PMD basic code. Signed-off-by: Mingxia Liu --- drivers/net/idpf/idpf_ethdev.c | 63 -- 1 file changed, 30 insertions(+), 33 deletions(-) diff --git a/drivers/net/idpf/idpf_ethdev.c b/driv

[PATCH 1/4] net/idpf: refine dev_link_update function

2023-06-25 Thread Mingxia Liu
This patch refines idpf_dev_link_update callback function according to CPFL PMD basic code. Signed-off-by: Mingxia Liu --- drivers/net/idpf/idpf_ethdev.c | 63 -- 1 file changed, 30 insertions(+), 33 deletions(-) diff --git a/drivers/net/idpf/idpf_ethdev.c b/driv

[PATCH] net/idpf: refine dev_link_update function

2023-06-25 Thread Mingxia Liu
This patch refines idpf_dev_link_update callback function according to CPFL PMD basic code. Signed-off-by: Mingxia Liu --- drivers/net/idpf/idpf_ethdev.c | 63 -- 1 file changed, 30 insertions(+), 33 deletions(-) diff --git a/drivers/net/idpf/idpf_ethdev.c b/driv

RE: [EXT] [PATCH v8] app/dma-perf: introduce dma-perf application

2023-06-25 Thread Anoob Joseph
Hi Cheng, Please see inline. Thanks, Anoob > -Original Message- > From: Jiang, Cheng1 > Sent: Saturday, June 24, 2023 5:23 PM > To: Anoob Joseph ; tho...@monjalon.net; > Richardson, Bruce ; > m...@smartsharesystems.com; Xia, Chenbo ; Amit > Prakash Shukla ; huangdeng...@huawei.com; > La

[PATCH] net/idpf: optimize the code of IDPF PMD

2023-06-25 Thread Mingxia Liu
This patch moves 'struct eth_dev_ops idpf_eth_dev_ops = {...}' block just after idpf_dev_close(), to group dev_ops related code together. Signed-off-by: Mingxia Liu --- drivers/net/idpf/idpf_ethdev.c | 56 +- 1 file changed, 28 insertions(+), 28 deletions(-) diff

[PATCH] net/idpf: refine idpf_dev_vport_init() function

2023-06-25 Thread Mingxia Liu
This patch adds 'cur_vports' and 'cur_vport_nb' updation in error path. Signed-off-by: Mingxia Liu --- drivers/net/idpf/idpf_ethdev.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/idpf/idpf_ethdev.c b/drivers/net/idpf/idpf_ethdev.c index 801da57472..3e66898aaf 100644 --- a/dr

[PATCH] net/idpf: refine RTE_PMD_REGISTER_PARAM_STRING of IDPF PMD

2023-06-25 Thread Mingxia Liu
This patch refines 'IDPF_VPORT' param string in 'RTE_PMD_REGISTER_PARAM_STRING'. Signed-off-by: Mingxia Liu --- drivers/net/idpf/idpf_ethdev.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/idpf/idpf_ethdev.c b/drivers/net/idpf/idpf_ethdev.c index 3e66898aa

RE: [dpdk-dev] [PATCH v1] doc: add inbuilt graph nodes data flow

2023-06-25 Thread Yan, Zhirun
> -Original Message- > From: jer...@marvell.com > Sent: Friday, June 23, 2023 3:36 PM > To: dev@dpdk.org; Jerin Jacob ; Kiran Kumar K > ; Nithin Dabilpuram ; > Yan, Zhirun > Cc: tho...@monjalon.net; pbhagavat...@marvell.com > Subject: [dpdk-dev] [PATCH v1] doc: add inbuilt graph nodes