[dpdk-dev] [PATCH v2 2/5] app/test-flow-perf: add insertion rate calculation

2020-04-30 Thread Wisam Jaddo
Add insertion rate calculation feature into flow performance application. The application now provide the ability to test insertion rate of specific rte_flow rule, by stressing it to the NIC, and calculate the insertion rate. The application offers some options in the command line, to configure w

[dpdk-dev] [PATCH v2 1/5] app/test-flow-perf: add flow performance skeleton

2020-04-30 Thread Wisam Jaddo
Add flow performance application skeleton. Signed-off-by: Wisam Jaddo --- MAINTAINERS | 5 + app/Makefile | 1 + app/meson.build | 1 + app/test-flow-perf/Makefile | 26 +++ app/test-flow-perf/main.c

[dpdk-dev] [PATCH v2 0/5] *** Introduce flow perf application ***

2020-04-30 Thread Wisam Jaddo
From: root Add new application to test rte flow performance from: - Insertion rate. - Deletion rate. - Memory consumption. - PPS forward measurement. --- v2: * reset cpu_time_used every port. * generate different RSS action every flow with different RETA. * Fix in commit log message Wisam Jaddo

[dpdk-dev] [PATCH v2 3/5] app/test-flow-perf: add deletion rate calculation

2020-04-30 Thread Wisam Jaddo
Add the ability to test deletion rate for flow performance application. This feature is disabled by default, and can be enabled by add "--deletion-rate" in the application command line options. Signed-off-by: Wisam Jaddo --- app/test-flow-perf/main.c | 86 ++

[dpdk-dev] [PATCH v2 4/5] app/test-flow-perf: add memory dump to app

2020-04-30 Thread Wisam Jaddo
Introduce new feature to dump memory statistics of each socket and a total for all before and after the creation. This will give two main advantage: 1- Check the memory consumption for large number of flows "insertion rate scenario alone" 2- Check that no memory leackage after doing insertion the

[dpdk-dev] [PATCH v2 5/5] app/test-flow-perf: add packet forwarding support

2020-04-30 Thread Wisam Jaddo
Introduce packet forwarding support to the app to do some performance measurements. The measurements are reported in term of packet per second unit. The forwarding will start after the end of insertion/deletion operations. The support has single and multi core performance measurements. Signed-of

Re: [dpdk-dev] [PATCH v1] vhost: fix mbuf allocation failures

2020-04-30 Thread Tummala, Sivaprasad
Hi Flavio, Thanks for your comments. snipped > > The patch fixes the error scenario by skipping to next descriptor. > > Note: Drop counters are not currently supported. In that case shouldn't we continue to process the ring? Yes, we are updating the loop index and following the requir

Re: [dpdk-dev] [PATCH] net/iavf: fix link speed

2020-04-30 Thread Xie, WeiX
Tested-by: Xie,WeiX < weix@intel.com> Regards, Xie Wei -Original Message- From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of alvinx.zh...@intel.com Sent: Tuesday, April 28, 2020 2:49 PM To: dev@dpdk.org Cc: Zhang, Qi Z ; Xing, Beilei ; Zhang, AlvinX ; Wu, Jingjing Subject: [dpdk-

Re: [dpdk-dev] [PATCH 2/2] eal: add fnmatch implementation on Windows

2020-04-30 Thread Dmitry Kozlyuk
On 2020-04-30 08:52 GMT+0200 Thomas Monjalon wrote: > 30/04/2020 01:24, Pallavi Kadam: > > Added fnmatch implementation on Windows to support > > log level arguments. > > The source file is with BSD-3-Clause license. > > https://github.com/lattera/freebsd/blob/master/usr.bin/csup/fnmatch.c > > S

Re: [dpdk-dev] [PATCH v4] ethdev: support flow aging

2020-04-30 Thread Matan Azrad
Hi Tom From: Tom Barbette > Great news! > > - I can understand why there is no timeout unit. But that's calling for user > nightmare. Eg I could only get from the code (and not from documentation > yet? ) of the following mlx5 driver patch that the value should be in tenth of > seconds. If I bui

Re: [dpdk-dev] [PATCH] net/ice: fix core dumped issue in switch filter

2020-04-30 Thread Jiang, JunyuX
Hi Qiming, > -Original Message- > From: Yang, Qiming > Sent: Thursday, April 30, 2020 2:53 PM > To: Jiang, JunyuX ; dev@dpdk.org > Cc: sta...@dpdk.org > Subject: RE: [PATCH] net/ice: fix core dumped issue in switch filter > > Hi, > I don't understand your fix log, which pointer is NULL?

Re: [dpdk-dev] [PATCH v4] ethdev: support flow aging

2020-04-30 Thread Tom Barbette
Le 30/04/2020 à 09:36, Matan Azrad a écrit : Hi Tom From: Tom Barbette Great news! - I can understand why there is no timeout unit. But that's calling for user nightmare. Eg I could only get from the code (and not from documentation yet? ) of the following mlx5 driver patch that the value

[dpdk-dev] [PATCH v3] net/axgbe: enabling VLAN support in axgbe

2020-04-30 Thread ssardar
From: Sardar Shamsher Singh adding below APIs for axgbe - axgbe_enable_rx_vlan_stripping: to enable vlan header stipping - axgbe_disable_rx_vlan_stripping: to disable vlan header stipping - axgbe_enable_rx_vlan_filtering: to enable vlan filter mode - axgbe_disable_rx_vlan_filtering: to disable vl

Re: [dpdk-dev] [PATCH v4] eal/cpuflags: add x86 based cpu flags

2020-04-30 Thread Ray Kinsella
On 29/04/2020 12:22, Neil Horman wrote: > On Mon, Apr 27, 2020 at 02:58:07PM +0100, Ray Kinsella wrote: >> >> >> On 27/04/2020 13:31, Thomas Monjalon wrote: >>> 27/04/2020 11:27, Ray Kinsella: On 25/04/2020 17:04, Thomas Monjalon wrote: > PS: Who is REALLY maintaining the ABI? > We

Re: [dpdk-dev] [PATCH v5 00/29] graph: introduce graph subsystem

2020-04-30 Thread Tom Barbette
Hi all, I could not check all discussions regarding the graph subsystem, but I could not find a trivia behind the idea of re-creating yet another graph processing system like VPP, BESS, Click/FastClick and a few others that all support DPDK already and comes with up to thousands of "nodes" al

Re: [dpdk-dev] [PATCH] vhost: zero_copy incompatible with client mode

2020-04-30 Thread Maxime Coquelin
On 4/29/20 4:59 AM, Xuan Ding wrote: > In server mode, virtio-user inits under the assumption that vhost-user > supports a list of features. However, this could be problematic when > in_order feature is negotiated but not supported by vhost-user when > enables dequeue_zero_copy later. > > Add h

Re: [dpdk-dev] [PATCH v2] abi: change references to abi 20.0.1 to abi v21

2020-04-30 Thread Ray Kinsella
On 29/04/2020 13:19, Dodji Seketeli wrote: > Hello, > > Ray Kinsella writes: > >> ah ok, the particular system I made the change on was Ubuntu 18.04.2. >> which is libabigail 1.2.0. > > Whoah, 1.2 is super old. I have a huge clunking raid'ed "build" server, that I am pretty conservative abo

[dpdk-dev] [PATCH] net/mlx5: fix set VLAN vid size check

2020-04-30 Thread Wisam Jaddo
All comparison should be done in CPU endianness, otherwise it will not give right results. for example: 255 after converting into RTE_BE16 will be biger than 4096 after converting into RTE_BE16. Fixes: a5f2da0b816b ("net/mlx5: support modify VLAN ID on new VLAN header") Cc: mo...@mellanox.com Cc:

Re: [dpdk-dev] [PATCH 2/2] eal: resolve getentropy at run time for random seed

2020-04-30 Thread Luca Boccassi
On Mon, 2020-04-27 at 13:57 -0300, Dan Gora wrote: > On Mon, Apr 27, 2020 at 1:19 PM Luca Boccassi wrote: > > On Thu, 2020-04-23 at 14:38 -0300, Dan Gora wrote: > > > On Thu, Apr 23, 2020 at 12:59 PM Luca Boccassi wrote: > > > > > > /dev/urandom is basically only a different interface to the same

Re: [dpdk-dev] [PATCH v5 00/29] graph: introduce graph subsystem

2020-04-30 Thread Jerin Jacob
On Thu, Apr 30, 2020 at 1:38 PM Tom Barbette wrote: > > Hi all, > > I could not check all discussions regarding the graph subsystem, but I > could not find a trivia behind the idea of re-creating yet another graph > processing system like VPP, BESS, Click/FastClick and a few others that > all supp

Re: [dpdk-dev] [PATCH] net/mlx5: fix default rule do RSS regardless rxmode

2020-04-30 Thread Slava Ovsiienko
> -Original Message- > From: Xiaoyu Min > Sent: Wednesday, April 29, 2020 16:01 > To: Matan Azrad ; Shahaf Shuler > ; Slava Ovsiienko > Cc: dev@dpdk.org; sta...@dpdk.org > Subject: [PATCH] net/mlx5: fix default rule do RSS regardless rxmode > > PMD create some default control rules with

Re: [dpdk-dev] [PATCH] eal/ppc: fix redefine bool type

2020-04-30 Thread Ori Kam
Hi David, > -Original Message- > From: David Marchand > Sent: Wednesday, April 29, 2020 11:17 AM > To: Ori Kam > Cc: Thomas Monjalon ; Matan Azrad > ; Shahaf Shuler ; Slava > Ovsiienko ; David Christensen > ; dev ; Yigit, Ferruh > > Subject: Re: [dpdk-dev] [PATCH] eal/ppc: fix redefine

Re: [dpdk-dev] [PATCH] net/mlx5: fix default rule do RSS regardless rxmode

2020-04-30 Thread Slava Ovsiienko
> -Original Message- > From: Slava Ovsiienko > Sent: Thursday, April 30, 2020 11:52 > To: Xiaoyu Min ; Matan Azrad > ; Shahaf Shuler > Cc: dev@dpdk.org; sta...@dpdk.org > Subject: RE: [PATCH] net/mlx5: fix default rule do RSS regardless rxmode > > > -Original Message- > > From: Xi

Re: [dpdk-dev] [PATCH] eal/ppc: fix redefine bool type

2020-04-30 Thread Ori Kam
Hi David, I will add your code. Thanks, Ori > -Original Message- > From: David Christensen > Sent: Tuesday, April 28, 2020 9:20 PM > To: Ori Kam ; Thomas Monjalon > ; Matan Azrad ; Shahaf > Shuler ; Slava Ovsiienko > > Cc: dev@dpdk.org; ferruh.yi...@intel.com > Subject: Re: [PATCH] ea

Re: [dpdk-dev] [PATCH] net/mlx5: fix set VLAN vid size check

2020-04-30 Thread Slava Ovsiienko
> -Original Message- > From: Wisam Monther > Sent: Thursday, April 30, 2020 11:31 > To: dev@dpdk.org; Dekel Peled ; Slava Ovsiienko > ; Raslan Darawsheh > Cc: Moti Haimovsky ; sta...@dpdk.org > Subject: [PATCH] net/mlx5: fix set VLAN vid size check > > All comparison should be done in CP

Re: [dpdk-dev] [PATCH] eal/ppc: fix redefine bool type

2020-04-30 Thread David Marchand
On Thu, Apr 30, 2020 at 10:53 AM Ori Kam wrote: > > > diff --git a/lib/librte_eal/ppc/include/rte_memcpy.h > > b/lib/librte_eal/ppc/include/rte_memcpy.h > > > index 25311ba..d234e21 100644 > > > --- a/lib/librte_eal/ppc/include/rte_memcpy.h > > > +++ b/lib/librte_eal/ppc/include/rte_memcpy.h > > >

Re: [dpdk-dev] [PATCH] eal/ppc: fix redefine bool type

2020-04-30 Thread Ori Kam
> -Original Message- > From: David Marchand > Sent: Thursday, April 30, 2020 12:04 PM > To: Ori Kam > Cc: Thomas Monjalon ; Matan Azrad > ; Shahaf Shuler ; Slava > Ovsiienko ; David Christensen > ; dev ; Yigit, Ferruh > > Subject: Re: [dpdk-dev] [PATCH] eal/ppc: fix redefine bool type

Re: [dpdk-dev] [PATCH] examples/vhost_blk: refactor vhost-blk example

2020-04-30 Thread Maxime Coquelin
On 4/30/20 3:42 AM, Yu, Jin wrote: > Got it. I will check and fix it. Thanks, I will need the fix today, just send a v2. If not possible to do it today, please let me know. Maxime > Thanks. > >> -Original Message- >> From: Yigit, Ferruh >> Sent: Thursday, April 30, 2020 1:54 AM >>

Re: [dpdk-dev] [PATCH] eal: fix lcore state bug

2020-04-30 Thread Lukasz Wojciechowski
W dniu 30.04.2020 o 04:54, Phil Yang pisze: >> -Original Message- >> From: Lukasz Wojciechowski >> Sent: Thursday, April 30, 2020 5:32 AM >> To: Phil Yang ; Harry van Haaren >> ; Jerin Jacob >> >> Cc: dev@dpdk.org; sta...@dpdk.org; nd >> Subject: Re: [dpdk-dev] [PATCH] eal: fix lcore s

Re: [dpdk-dev] [PATCH v4 0/2] one way barrier for split vring idx

2020-04-30 Thread Maxime Coquelin
On 4/29/20 7:45 PM, Ferruh Yigit wrote: > On 4/24/2020 4:39 AM, Joyce Kong wrote: >> This patchset replaces the two-way barriers with C11 one-way barriers >> for split vring idx, when the frontend and backend are implemented >> in software. >> >> By doing PVP benchmarking, the test result of 2c1

Re: [dpdk-dev] [PATCH] net/ice: fix core dumped issue in switch filter

2020-04-30 Thread Xiao, QimaiX
Tested-by: Xiao, QimaiX Regards, Xiao Qimai > -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Junyu Jiang > Sent: Wednesday, April 29, 2020 3:25 PM > To: dev@dpdk.org > Cc: Yang, Qiming ; Jiang, JunyuX > ; sta...@dpdk.org > Subject: [dpdk-dev] [PATCH] net/ice:

Re: [dpdk-dev] [RFC] hash: unify crc32 API header for x86 and ARM

2020-04-30 Thread Van Haaren, Harry
> -Original Message- > From: dev On Behalf Of pbhagavat...@marvell.com > Sent: Wednesday, April 29, 2020 7:05 PM > To: jer...@marvell.com; tho...@monjalon.net; Wang, Yipeng1 > ; Gobriel, Sameh ; > Richardson, Bruce ; Ruifeng Wang > > Cc: dev@dpdk.org; Pavan Nikhilesh > Subject: [dpdk-dev

[dpdk-dev] [PATCH v5 1/2] virtio: one way barrier for split vring used idx

2020-04-30 Thread Joyce Kong
In case VIRTIO_F_ORDER_PLATFORM(36) is not negotiated, then the frontend and backend are assumed to be implemented in software, that is they can run on identical CPUs in an SMP configuration. Thus a weak form of memory barriers like rte_smp_r/wmb, other than rte_cio_r/wmb, is sufficient for this ca

[dpdk-dev] [PATCH v5 2/2] virtio: one way barrier for split vring avail idx

2020-04-30 Thread Joyce Kong
In case VIRTIO_F_ORDER_PLATFORM(36) is not negotiated, then the frontend and backend are assumed to be implemented in software, that is they can run on identical CPUs in an SMP configuration. Thus a weak form of memory barriers like rte_smp_r/wmb, other than rte_cio_r/wmb, is sufficient for this ca

[dpdk-dev] [PATCH v5 0/2] one way barrier for split vring idx

2020-04-30 Thread Joyce Kong
This patchset replaces the two-way barriers with C11 one-way barriers for split vring idx, when the frontend and backend are implemented in software. By doing PVP benchmarking, the test result of 2c1q showed the throughput increased 20% with the 0.001% of acceptable loss rate on Thunderx2 platform

Re: [dpdk-dev] eal: can not run secondary process on openstack environment

2020-04-30 Thread Burakov, Anatoly
On 30-Apr-20 5:14 AM, 陈亚辉-云杉研发部 wrote: Deleting xdg_runtime_dir and fallback, runtime_dir will always be "/var/run" defined by code: static const char *default_runtime_dir = "/var/run" I'm not sure this is a good solution. Generally, IMO, having separate directories for DPDK processes for di

Re: [dpdk-dev] [PATCH] app/testpmd: add cmdline option to set Rx mq mode

2020-04-30 Thread Iremonger, Bernard
Hi Xiaoyu, > -Original Message- > From: Xiaoyu Min > Sent: Wednesday, April 29, 2020 2:04 PM > To: Lu, Wenzhuo ; Wu, Jingjing > ; Iremonger, Bernard > ; Mcnamara, John > ; Kovacevic, Marko > > Cc: dev@dpdk.org > Subject: [PATCH] app/testpmd: add cmdline option to set Rx mq mode > > One

Re: [dpdk-dev] [PATCH] net/mlx5: fix assert in dynamic metadata handling

2020-04-30 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Alexander Kozyrev > Sent: Monday, April 27, 2020 9:20 PM > To: dev@dpdk.org > Cc: sta...@dpdk.org; Raslan Darawsheh ; Slava > Ovsiienko > Subject: [PATCH] net/mlx5: fix assert in dynamic metadata handling > > The assert in dynamic flow metadata handling

Re: [dpdk-dev] [PATCH v4 0/2] one way barrier for split vring idx

2020-04-30 Thread Joyce Kong
> -Original Message- > From: Maxime Coquelin > Sent: Thursday, April 30, 2020 5:09 PM > To: Ferruh Yigit ; Joyce Kong > ; step...@networkplumber.org; > xiaolong...@intel.com; tiwei@intel.com; zhihong.w...@intel.com; > tho...@monjalon.net; jer...@marvell.com; yinan.w...@intel.com; > Hon

Re: [dpdk-dev] [PATCH v2] net/ice: support mark only action for FDIR

2020-04-30 Thread Zhang, Qi Z
> -Original Message- > From: Su, Simei > Sent: Tuesday, April 14, 2020 11:11 PM > To: Zhang, Qi Z ; Ye, Xiaolong > Cc: dev@dpdk.org; Cao, Yahui ; Su, Simei > ; sta...@dpdk.org > Subject: [PATCH v2] net/ice: support mark only action for FDIR > > This patch fixes issue that doesn't supp

Re: [dpdk-dev] [RFC] ring: count and empty optimizations

2020-04-30 Thread Morten Brørup
> From: Honnappa Nagarahalli [mailto:honnappa.nagaraha...@arm.com] > Sent: Thursday, April 30, 2020 3:12 AM > > > > > > > Hi Morten, > > > > On Tue, Apr 28, 2020 at 03:53:15PM +0200, Morten Brørup wrote: > > > Olivier (maintainer of the Ring), > > > > I'm not anymore, CC'ing Konstantin and Honna

[dpdk-dev] [PATCH] maintainers: update for ice

2020-04-30 Thread Qi Zhang
Replace Wenzhuo Lu with Qi Zhang. Signed-off-by: Qi Zhang --- MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index e05c80504..a2f031b4a 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -694,7 +694,7 @@ F: doc/guides/nics/features/iavf*.ini

Re: [dpdk-dev] [PATCH v4 0/2] one way barrier for split vring idx

2020-04-30 Thread Maxime Coquelin
On 4/30/20 11:16 AM, Joyce Kong wrote: >> -Original Message- >> From: Maxime Coquelin >> Sent: Thursday, April 30, 2020 5:09 PM >> To: Ferruh Yigit ; Joyce Kong >> ; step...@networkplumber.org; >> xiaolong...@intel.com; tiwei@intel.com; zhihong.w...@intel.com; >> tho...@monjalon.net

Re: [dpdk-dev] [RFC] hash: unify crc32 API header for x86 and ARM

2020-04-30 Thread Pavan Nikhilesh Bhagavatula
>> -Original Message- >> From: dev On Behalf Of >pbhagavat...@marvell.com >> Sent: Wednesday, April 29, 2020 7:05 PM >> To: jer...@marvell.com; tho...@monjalon.net; Wang, Yipeng1 >> ; Gobriel, Sameh >; >> Richardson, Bruce ; Ruifeng Wang >> >> Cc: dev@dpdk.org; Pavan Nikhilesh >> Subject

[dpdk-dev] [PATCH v3 0/5] *** Introduce flow perf application ***

2020-04-30 Thread Wisam Jaddo
Add new application to test rte flow performance from: - Insertion rate. - Deletion rate. - Memory consumption. - PPS forward measurement. --- v3: * Fix passing hairpin queues to hairpin rss action. v2: * reset cpu_time_used every port. * generate different RSS action every flow with different RE

[dpdk-dev] [PATCH v3 1/5] app/test-flow-perf: add flow performance skeleton

2020-04-30 Thread Wisam Jaddo
Add flow performance application skeleton. Signed-off-by: Wisam Jaddo --- MAINTAINERS | 5 + app/Makefile | 1 + app/meson.build | 1 + app/test-flow-perf/Makefile | 26 +++ app/test-flow-perf/main.c

[dpdk-dev] [PATCH v3 2/5] app/test-flow-perf: add insertion rate calculation

2020-04-30 Thread Wisam Jaddo
Add insertion rate calculation feature into flow performance application. The application now provide the ability to test insertion rate of specific rte_flow rule, by stressing it to the NIC, and calculate the insertion rate. The application offers some options in the command line, to configure w

[dpdk-dev] [PATCH v3 5/5] app/test-flow-perf: add packet forwarding support

2020-04-30 Thread Wisam Jaddo
Introduce packet forwarding support to the app to do some performance measurements. The measurements are reported in term of packet per second unit. The forwarding will start after the end of insertion/deletion operations. The support has single and multi core performance measurements. Signed-of

[dpdk-dev] [PATCH v3 4/5] app/test-flow-perf: add memory dump to app

2020-04-30 Thread Wisam Jaddo
Introduce new feature to dump memory statistics of each socket and a total for all before and after the creation. This will give two main advantage: 1- Check the memory consumption for large number of flows "insertion rate scenario alone" 2- Check that no memory leackage after doing insertion the

[dpdk-dev] [PATCH v3 3/5] app/test-flow-perf: add deletion rate calculation

2020-04-30 Thread Wisam Jaddo
Add the ability to test deletion rate for flow performance application. This feature is disabled by default, and can be enabled by add "--deletion-rate" in the application command line options. Signed-off-by: Wisam Jaddo --- app/test-flow-perf/main.c | 86 ++

[dpdk-dev] [Bug 465] app/test compile failed with gcc and clang

2020-04-30 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=465 David Marchand (david.march...@redhat.com) changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Reso

[dpdk-dev] [PATCH v2] examples/vhost_blk: refactor vhost-blk example

2020-04-30 Thread Jin Yu
Decrease the code and make it easier to read. It's useful for understanding the inflight APIs and how packed ring works. Update the RST because the packed ring patch has been merged to QEMU master and ring_packed parameter changes to packed. Fixes: c19beb3f38cd ("examples/vhost_blk: introduce vhos

Re: [dpdk-dev] [PATCH] kvargs: fix crash when parsing an invalid token on FreeBSD

2020-04-30 Thread Huang, ZhiminX
Tested-by: Huang, ZhiminX Regards, HuangZhiMin -Original Message- From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Olivier Matz Sent: Wednesday, April 29, 2020 9:17 PM To: dev@dpdk.org Cc: sta...@dpdk.org Subject: [dpdk-dev] [PATCH] kvargs: fix crash when parsing an invalid token on

Re: [dpdk-dev] [PATCH] examples/vhost_blk: refactor vhost-blk example

2020-04-30 Thread Yu, Jin
Thanks Maxime. I just send the V2. Sorry for late. Jin > -Original Message- > From: Maxime Coquelin > Sent: Thursday, April 30, 2020 5:08 PM > To: Yu, Jin ; Yigit, Ferruh ; Tiwei > Bie ; Wang, Zhihong ; > Mcnamara, John ; Kovacevic, Marko > > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev]

Re: [dpdk-dev] [PATCH v11 6/9] net/virtio: add vectorized packed ring Rx path

2020-04-30 Thread Ferruh Yigit
On 4/28/2020 9:32 AM, Marvin Liu wrote: > Optimize packed ring Rx path with SIMD instructions. Solution of > optimization is pretty like vhost, is that split path into batch and > single functions. Batch function is further optimized by AVX512 > instructions. Also pad desc extra structure to 16 byt

Re: [dpdk-dev] [PATCH] net/mlx5: fix packet length check assert in MPRQ

2020-04-30 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Alexander Kozyrev > Sent: Monday, April 27, 2020 9:23 PM > To: dev@dpdk.org > Cc: sta...@dpdk.org; Raslan Darawsheh ; Slava > Ovsiienko > Subject: [PATCH] net/mlx5: fix packet length check assert in MPRQ > > The assert that checks if there is a enough ro

Re: [dpdk-dev] [PATCH v5] eal/cpuflags: add x86 based cpu flags

2020-04-30 Thread Ray Kinsella
So that isn't the issue either. $ grep RTE_CPUFLAG_NUMFLAGS build-gcc-shared/install/dump/librte_eal.dump 4646: $ grep RTE_CPUFLAG_NUMFLAGS /build/dpdk/reference/v20.02/build-gcc-shared/dump/librte_eal.dump 3296: 1.7-1.fc31

[dpdk-dev] [PATCH] net/bnxt: fix a possible stack smashing

2020-04-30 Thread yuanlinsi01
We see a stack smashing as a result of defensive code missing. Once the nb_pkts is less than RTE_BNXT_DESCS_PER_LOOP, it will be modified to zero after doing a floor align, and we can not exit the following receiving packets loop. And the buffers will be overwrite, then the stack frame was ruined.

[dpdk-dev] [PATCH] net/bnxt: fix a possible stack smashing

2020-04-30 Thread yuanlinsi01
We see a stack smashing as a result of defensive code missing. Once the nb_pkts is less than RTE_BNXT_DESCS_PER_LOOP, it will be modified to zero after doing a floor align, and we can not exit the following receiving packets loop. And the buffers will be overwrite, then the stack frame was ruined.

Re: [dpdk-dev] [dpdk-stable] [PATCH v4 2/3] doc: input set requirement of each pctype for FDIR

2020-04-30 Thread Ferruh Yigit
On 4/30/2020 1:52 AM, Zhao1, Wei wrote: > Hi, > > >> -Original Message- >> From: Yigit, Ferruh >> Sent: Wednesday, April 29, 2020 6:35 PM >> To: Zhao1, Wei ; dev@dpdk.org >> Cc: sta...@dpdk.org; Xing, Beilei ; >> maxime.le...@6wind.com >> Subject: Re: [dpdk-stable] [PATCH v4 2/3] doc: in

Re: [dpdk-dev] [PATCH v11 6/9] net/virtio: add vectorized packed ring Rx path

2020-04-30 Thread Bruce Richardson
On Thu, Apr 30, 2020 at 10:48:35AM +0100, Ferruh Yigit wrote: > On 4/28/2020 9:32 AM, Marvin Liu wrote: > > Optimize packed ring Rx path with SIMD instructions. Solution of > > optimization is pretty like vhost, is that split path into batch and > > single functions. Batch function is further optim

Re: [dpdk-dev] [PATCH] test/ring: fix long compilation time

2020-04-30 Thread Thomas Monjalon
30/04/2020 03:56, Honnappa Nagarahalli: > test_ring.c takes lot of time to compile with clang. It is > reproducable with compiler version 8.0 on Ubuntu 18.04. > Amount of testing is reduced, but attempt is made to keep > the same coverage. > > Reported-by: Aaron Conole > Reported-by: Thomas Monja

Re: [dpdk-dev] [PATCH] net/mlx5: fix indexed pool bitmap initialization

2020-04-30 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Suanming Mou > Sent: Tuesday, April 28, 2020 12:14 PM > To: Matan Azrad ; Shahaf Shuler > ; Slava Ovsiienko > Cc: dev@dpdk.org; Raslan Darawsheh ; > lijian.zh...@arm.com > Subject: [PATCH] net/mlx5: fix indexed pool bitmap initialization > > Currently, t

[dpdk-dev] [PATCH v4 1/5] app/test-flow-perf: add flow performance skeleton

2020-04-30 Thread Wisam Jaddo
Add flow performance application skeleton. Signed-off-by: Wisam Jaddo --- MAINTAINERS | 5 + app/Makefile | 1 + app/meson.build | 1 + app/test-flow-perf/Makefile | 26 +++ app/test-flow-perf/main.c

[dpdk-dev] [PATCH v4 3/5] app/test-flow-perf: add deletion rate calculation

2020-04-30 Thread Wisam Jaddo
Add the ability to test deletion rate for flow performance application. This feature is disabled by default, and can be enabled by add "--deletion-rate" in the application command line options. Signed-off-by: Wisam Jaddo --- app/test-flow-perf/main.c | 86 ++

[dpdk-dev] [PATCH v4 0/5] Introduce flow perf application

2020-04-30 Thread Wisam Jaddo
Add new application to test rte flow performance from: - Insertion rate. - Deletion rate. - Memory consumption. - PPS forward measurement. --- v4: * Fix compilation error due to variable set but not used. v3: * Fix passing hairpin queues to hairpin rss action. v2: * reset cpu_time_used every por

[dpdk-dev] [PATCH v4 4/5] app/test-flow-perf: add memory dump to app

2020-04-30 Thread Wisam Jaddo
Introduce new feature to dump memory statistics of each socket and a total for all before and after the creation. This will give two main advantage: 1- Check the memory consumption for large number of flows "insertion rate scenario alone" 2- Check that no memory leackage after doing insertion the

[dpdk-dev] [PATCH v4 5/5] app/test-flow-perf: add packet forwarding support

2020-04-30 Thread Wisam Jaddo
Introduce packet forwarding support to the app to do some performance measurements. The measurements are reported in term of packet per second unit. The forwarding will start after the end of insertion/deletion operations. The support has single and multi core performance measurements. Signed-of

[dpdk-dev] [PATCH v4 2/5] app/test-flow-perf: add insertion rate calculation

2020-04-30 Thread Wisam Jaddo
Add insertion rate calculation feature into flow performance application. The application now provide the ability to test insertion rate of specific rte_flow rule, by stressing it to the NIC, and calculate the insertion rate. The application offers some options in the command line, to configure w

[dpdk-dev] [PATCH v2] l3fwd-power: add Rx interrupt timeout

2020-04-30 Thread Anatoly Burakov
Currently, thread waiting on an interrupt does not have a timeout, so it will not ever wake up until traffic arrives. This means that, when time comes to exit the application, it will not quit unless there happens to be traffic coming in and waking up the thread from sleep. Fix it so that the inte

[dpdk-dev] [PATCH v5] abi: change references to abi 20.0.1 to abi v21

2020-04-30 Thread Ray Kinsella
Change references to abi 20.0.1 to use abi v21, see https://doc.dpdk.org/guides/contributing/abi_policy.html#general-guidelines "Major ABI versions are declared no more frequently than yearly. Compatibility with the major ABI version is mandatory in subsequent releases until a new major ABI versio

[dpdk-dev] [PATCH v6 1/1] abi: change references to abi 20.0.1 to abi v21

2020-04-30 Thread Ray Kinsella
Sending again, as I missed the cover letter last time. v6: * combined policy and versioning in the maintainers file. Ray Kinsella (1): abi: change references to abi 20.0.1 to abi v21 MAINTAINERS| 10 +- devtools/libabigail.abignore

[dpdk-dev] [PATCH v6 1/1] abi: change references to abi 20.0.1 to abi v21

2020-04-30 Thread Ray Kinsella
Change references to abi 20.0.1 to use abi v21, see https://doc.dpdk.org/guides/contributing/abi_policy.html#general-guidelines "Major ABI versions are declared no more frequently than yearly. Compatibility with the major ABI version is mandatory in subsequent releases until a new major ABI versio

Re: [dpdk-dev] [PATCH 1/2] vfio: use ifdef's for ppc64 spapr code

2020-04-30 Thread Burakov, Anatoly
On 30-Apr-20 12:29 AM, David Christensen wrote: Enclose ppc64 specific SPAPR VFIO support with ifdef's. Signed-off-by: David Christensen --- Why is this needed? -- Thanks, Anatoly

Re: [dpdk-dev] [PATCH 2/2] vfio: modify spapr iommu support to use static window sizing

2020-04-30 Thread Burakov, Anatoly
On 30-Apr-20 12:29 AM, David Christensen wrote: Current SPAPR IOMMU support code dynamically modifies the DMA window size in response to every new memory allocation. This is potentially dangerous because all existing mappings need to be unmapped/remapped in order to resize the DMA window, leaving

Re: [dpdk-dev] [PATCH] net/mlx5: fix default rule do RSS regardless rxmode

2020-04-30 Thread Matan Azrad
From: Slava Ovsiienko > > -Original Message- > > From: Slava Ovsiienko > > Sent: Thursday, April 30, 2020 11:52 > > To: Xiaoyu Min ; Matan Azrad > > ; Shahaf Shuler > > Cc: dev@dpdk.org; sta...@dpdk.org > > Subject: RE: [PATCH] net/mlx5: fix default rule do RSS regardless > > rxmode > >

Re: [dpdk-dev] [PATCH v4 1/5] app/test-flow-perf: add flow performance skeleton

2020-04-30 Thread Xiaoyu Min
On Thu, 20-04-30, 10:33, Wisam Jaddo wrote: > Add flow performance application skeleton. > > Signed-off-by: Wisam Jaddo Acked-by: Xiaoyu Min

Re: [dpdk-dev] [PATCH v4 2/5] app/test-flow-perf: add insertion rate calculation

2020-04-30 Thread Xiaoyu Min
On Thu, 20-04-30, 10:33, Wisam Jaddo wrote: > Add insertion rate calculation feature into flow > performance application. > > The application now provide the ability to test > insertion rate of specific rte_flow rule, by > stressing it to the NIC, and calculate the > insertion rate. > > The appli

Re: [dpdk-dev] [PATCH v4 3/5] app/test-flow-perf: add deletion rate calculation

2020-04-30 Thread Xiaoyu Min
On Thu, 20-04-30, 10:33, Wisam Jaddo wrote: > Add the ability to test deletion rate for flow performance > application. > > This feature is disabled by default, and can be enabled by > add "--deletion-rate" in the application command line options. > > Signed-off-by: Wisam Jaddo Acked-by: Xiaoyu

Re: [dpdk-dev] [PATCH v4 4/5] app/test-flow-perf: add memory dump to app

2020-04-30 Thread Xiaoyu Min
On Thu, 20-04-30, 10:33, Wisam Jaddo wrote: > Introduce new feature to dump memory statistics of each socket > and a total for all before and after the creation. > > This will give two main advantage: > 1- Check the memory consumption for large number of flows > "insertion rate scenario alone" >

[dpdk-dev] [PATCH] net/bnxt: fix a possible stack smashing

2020-04-30 Thread yuanlinsi01
We see a stack smashing as a result of defensive code missing. Once the nb_pkts is less than RTE_BNXT_DESCS_PER_LOOP, it will be modified to zero after doing a floor align, and we can not exit the following receiving packets loop. And the buffers will be overwrite, then the stack frame was ruined.

Re: [dpdk-dev] [PATCH v4 5/5] app/test-flow-perf: add packet forwarding support

2020-04-30 Thread Xiaoyu Min
On Thu, 20-04-30, 10:33, Wisam Jaddo wrote: > Introduce packet forwarding support to the app to do > some performance measurements. > > The measurements are reported in term of packet per > second unit. The forwarding will start after the end > of insertion/deletion operations. > > The support ha

Re: [dpdk-dev] [PATCH] app/testpmd: add cmdline option to set Rx mq mode

2020-04-30 Thread Xiaoyu Min
On Thu, 20-04-30, 09:16, Iremonger, Bernard wrote: > Hi Xiaoyu, Hey Bernard, > > > -Original Message- > > From: Xiaoyu Min > > Sent: Wednesday, April 29, 2020 2:04 PM > > To: Lu, Wenzhuo ; Wu, Jingjing > > ; Iremonger, Bernard > > ; Mcnamara, John > > ; Kovacevic, Marko > > > > Cc: dev@

Re: [dpdk-dev] [PATCH] net/mlx5: fix actions validation on root table

2020-04-30 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Bing Zhao > Sent: Wednesday, April 29, 2020 3:54 PM > To: Slava Ovsiienko ; Raslan Darawsheh > > Cc: Ori Kam ; Matan Azrad ; > dev@dpdk.org; sta...@dpdk.org > Subject: [PATCH] net/mlx5: fix actions validation on root table > > The maximal supported heade

Re: [dpdk-dev] [PATCH] test/ring: fix long compilation time

2020-04-30 Thread Aaron Conole
Honnappa Nagarahalli writes: > test_ring.c takes lot of time to compile with clang. It is > reproducable with compiler version 8.0 on Ubuntu 18.04. > Amount of testing is reduced, but attempt is made to keep > the same coverage. > > Reported-by: Aaron Conole > Reported-by: Thomas Monjalon > Sig

Re: [dpdk-dev] [PATCH v11 6/9] net/virtio: add vectorized packed ring Rx path

2020-04-30 Thread Ferruh Yigit
On 4/30/2020 11:23 AM, Bruce Richardson wrote: > On Thu, Apr 30, 2020 at 10:48:35AM +0100, Ferruh Yigit wrote: >> On 4/28/2020 9:32 AM, Marvin Liu wrote: >>> Optimize packed ring Rx path with SIMD instructions. Solution of >>> optimization is pretty like vhost, is that split path into batch and >>>

[dpdk-dev] [PATCH v2] app/testpmd: add cmdline option to set Rx mq mode

2020-04-30 Thread Xiaoyu Min
One new cmdline option `--rx-mq-mode` is added in order to have the possibility to check whether PMD handle the mq mode correctly or not. The reason is some NICs need to do different settings based on different RX mq mode, i.e RSS or not. With this support in testpmd, the above scenario can be te

Re: [dpdk-dev] [PATCH v2] l3fwd-power: add Rx interrupt timeout

2020-04-30 Thread Hunt, David
On 30/4/2020 11:49 AM, Anatoly Burakov wrote: Currently, thread waiting on an interrupt does not have a timeout, so it will not ever wake up until traffic arrives. This means that, when time comes to exit the application, it will not quit unless there happens to be traffic coming in and waking

Re: [dpdk-dev] [PATCH] net/bnxt: fix a possible stack smashing

2020-04-30 Thread Somnath Kotur
+Lance Richardson Thanks for the patch, could you please add the 'Fixes' tag as well ? On Thu, Apr 30, 2020 at 5:35 PM yuanlinsi01 wrote: > > We see a stack smashing as a result of defensive code missing. Once the > nb_pkts is less than RTE_BNXT_DESCS_PER_LOOP, it will be modified to > zero af

Re: [dpdk-dev] [PATCH v2] app/testpmd: add cmdline option to set Rx mq mode

2020-04-30 Thread Iremonger, Bernard
> -Original Message- > From: Xiaoyu Min > Sent: Thursday, April 30, 2020 2:08 PM > To: Lu, Wenzhuo ; Wu, Jingjing > ; Iremonger, Bernard > ; Mcnamara, John > ; Kovacevic, Marko > > Cc: dev@dpdk.org > Subject: [PATCH v2] app/testpmd: add cmdline option to set Rx mq mode > > One new cmdlin

[dpdk-dev] 答复: [PATCH] net/bnxt: fix a possible stack smashing

2020-04-30 Thread Yuan,Linsi
Sure, I'll add it. Thanks, Yuan Linsi 发件人: Somnath Kotur 发送时间: 2020年4月30日 20:55 收件人: Yuan,Linsi; Lance Richardson 抄送: Ajit Kumar Khaparde; dev 主题: Re: [PATCH] net/bnxt: fix a possible stack smashing +Lance Richardson Thanks for the patch, could you please add

[dpdk-dev] [PATCH] net/bnxt: fix a possible stack smashing

2020-04-30 Thread Yuan Linsi
From: yuanlinsi01 We see a stack smashing as a result of defensive code missing. Once the nb_pkts is less than RTE_BNXT_DESCS_PER_LOOP, it will be modified to zero after doing a floor align, and we can not exit the following receiving packets loop. And the buffers will be overwrite, then the stac

Re: [dpdk-dev] [EXT] [PATCH v2] trace: fix build with gcc 10

2020-04-30 Thread Sunil Kumar Kori
Looks good to me. Regards Sunil Kumar Kori >-Original Message- >From: Phil Yang >Sent: Tuesday, April 28, 2020 8:07 PM >To: Sunil Kumar Kori ; dev@dpdk.org >Cc: david.march...@redhat.com; Jerin Jacob Kollanukkaran >; lijian.zh...@arm.com; ruifeng.w...@arm.com; >n...@arm.com >Subject: [EX

[dpdk-dev] DPDK Release Status Meeting 30/04/2020

2020-04-30 Thread Ferruh Yigit
Minutes 30 April 2020 - Agenda: * Release Dates * -rc1 status * Subtrees * OvS * Opens Participants: * Arm * Debian/Microsoft * Intel * Marvell * Mellanox * Red Hat Release Dates - * v20.05 dates: * -rc1 is released on Monday, 27 April * http://inbox.dpdk.

Re: [dpdk-dev] [PATCH v4 3/8] eal: introduce memory management wrappers

2020-04-30 Thread Burakov, Anatoly
On 29-Apr-20 6:13 PM, Burakov, Anatoly wrote: @@ -547,10 +531,10 @@ rte_eal_memdevice_init(void)   int   rte_mem_lock_page(const void *virt)   { -    unsigned long virtual = (unsigned long)virt; -    int page_size = getpagesize(); -    unsigned long aligned = (virtual & ~(page_size - 1)); -    re

Re: [dpdk-dev] [EXT] Re: [PATCH] eal/trace: fix coverity issues

2020-04-30 Thread Sunil Kumar Kori
Hello David, Mentioned patch (http://patches.dpdk.org/patch/69467/ ) takes care of your input to resolve GCC 10 build. Now I think, this patch is good to go. Please take care of this. Regards Sunil Kumar Kori >-Original Message- >From: David Marchand >Sent: Monday, April 27, 2020 7:2

Re: [dpdk-dev] [PATCH] net/bnxt: fix a possible stack smashing

2020-04-30 Thread Lance Richardson
On Thu, Apr 30, 2020 at 9:37 AM Yuan Linsi wrote: > > From: yuanlinsi01 > > We see a stack smashing as a result of defensive code missing. Once the > nb_pkts is less than RTE_BNXT_DESCS_PER_LOOP, it will be modified to > zero after doing a floor align, and we can not exit the following > receivin

[dpdk-dev] [PATCH v2] eal/ppc: fix redefine bool type

2020-04-30 Thread Ori Kam
The AltiVec header file breaks boolean type. [1] [2] Currently the workaround was located only in mlx5 device. Adding the trace module caused this issue to appear again, due to order of includes, it keeps overriding the local fix. This patch solves this issue by resetting the bool type, immediate

Re: [dpdk-dev] [PATCH] test/ring: code rework to reduce compilation time

2020-04-30 Thread Ananyev, Konstantin
Hi Honnappa, > Hi Konstantin, > I like the way the tests are organized and it looks good. > > I am just wondering about the way it is being tested here. The intent to > write the test cases the way they are currently is to mimic how the > APIs would be used mostly. IMO, the APIs would b

Re: [dpdk-dev] [RFC] ring: count and empty optimizations

2020-04-30 Thread Ananyev, Konstantin
> > > From: Honnappa Nagarahalli [mailto:honnappa.nagaraha...@arm.com] > > Sent: Thursday, April 30, 2020 3:12 AM > > > > > > > > > > > > Hi Morten, > > > > > > On Tue, Apr 28, 2020 at 03:53:15PM +0200, Morten Brørup wrote: > > > > Olivier (maintainer of the Ring), > > > > > > I'm not anymore, CC

  1   2   >