Re: [dpdk-dev] [PATCH v2 2/3] examples/ip_fragmentation: Enabling IP checksum offload in mbuf

2019-05-20 Thread Sunil Kumar Kori
Hi, Regards Sunil Kumar Kori >-Original Message- >From: Ananyev, Konstantin >Sent: Saturday, May 18, 2019 8:51 PM >To: Sunil Kumar Kori ; dev@dpdk.org >Subject: [EXT] RE: [dpdk-dev] [PATCH v2 2/3] examples/ip_fragmentation: >Enabling IP checksum offload in mbuf > >External Email > >-

[dpdk-dev] [PATCH] net/mlx5: fix memory free on queue create error

2019-05-20 Thread Dekel Peled
In function mlx5_rxq_ibv_new(), pointer *tmpl allocation is attempted at the start, but not validated or freed in case of error. In function mlx5_txq_ibv_new(), pointer *txq_ibv allocation is attempted at the start, but not freed in case of error. This patch adds pointers initialization, validatio

Re: [dpdk-dev] [PATCH v2 2/3] examples/ip_fragmentation: Enabling IP checksum offload in mbuf

2019-05-20 Thread Ananyev, Konstantin
> -Original Message- > From: Sunil Kumar Kori [mailto:sk...@marvell.com] > Sent: Monday, May 20, 2019 9:09 AM > To: Ananyev, Konstantin ; dev@dpdk.org > Subject: RE: [dpdk-dev] [PATCH v2 2/3] examples/ip_fragmentation: Enabling IP > checksum offload in mbuf > > Hi, > > Regards > Sunil

[dpdk-dev] [PATCH v1] net/ice: update the RSS RETA size with support values

2019-05-20 Thread Haiyue Wang
Since ice can support 128, 512, 2K RSS RETA size value, change the update API to set it to resize the RSS RETA table. And by default, use 512 to sync with ETH_RSS_RETA_SIZE_x maximum value definition. Also the flag ICE_FLAG_RSS_AQ_CAPABLE is missed to set. Fixes: 690175ee51bf ("net/ice: support ge

Re: [dpdk-dev] Instability of port ids

2019-05-20 Thread Ray Kinsella
On 18/05/2019 14:33, Stephen Hemminger wrote: > On Sat, 18 May 2019 06:03:22 + > "Wang, Haiyue" wrote: > >>> -Original Message- >>> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Stephen Hemminger >>> Sent: Saturday, May 18, 2019 02:47 >>> To: dev@dpdk.org >>> Subject: [dpdk-

[dpdk-dev] [PATCH] doc: fix helloworld build on Windows

2019-05-20 Thread adham
From: Adham Masarwah The option -Dexamples=helloworld is missing. The helloworld binary name was wrong. Forcing clang may be required in some environments. Fixes: 196c650b8b63 ("doc: add guide for Windows") Signed-off-by: Adham Masarwah --- doc/guides/windows_gsg/build_dpdk.rst | 16 +

Re: [dpdk-dev] [PATCH 2/3] net/i40e: add runtime option to disable vector rx

2019-05-20 Thread Ananyev, Konstantin
Hi > > Vector RX functions are not at feature parity with non-vector ones and > currently the vector RX path is enabled by default. Hence, the only > option to force selection of non-vector variants and be able to retain > functionality is to disable vector PMD globally at compile time via the

Re: [dpdk-dev] [PATCH v2 5/5] eal/x86: force inlining of all memcpy and mov helpers

2019-05-20 Thread David Marchand
On Fri, May 17, 2019 at 5:14 PM Maxime Coquelin wrote: > Some helpers in the header file are forced inlined other are > only inlined, this patch forces inline for all. > > It will avoid it to be embedded as functions when called multiple > times in the same object file. For example, when we added

Re: [dpdk-dev] [PATCH] doc: fix helloworld build on Windows

2019-05-20 Thread Bruce Richardson
On Mon, May 20, 2019 at 11:19:52AM +0300, ad...@mellanox.com wrote: > From: Adham Masarwah > > The option -Dexamples=helloworld is missing. > The helloworld binary name was wrong. > Forcing clang may be required in some environments. > > Fixes: 196c650b8b63 ("doc: add guide for Windows") > > Si

Re: [dpdk-dev] [RFC v8] /net: memory interface (memif)

2019-05-20 Thread Jakub Grajciar -X (jgrajcia - PANTHEON TECHNOLOGIES at Cisco)
> -Original Message- > From: Stephen Hemminger > Sent: Thursday, May 16, 2019 5:22 PM > To: Jakub Grajciar > > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [RFC v8] /net: memory interface (memif) > > On Thu, 16 May 2019 13:46:58 +0200 > Jakub Grajciar wrote: > > > +enum memif_role_t {

[dpdk-dev] [RFC v9] /net: memory interface (memif)

2019-05-20 Thread Jakub Grajciar
Memory interface (memif), provides high performance packet transfer over shared memory. Signed-off-by: Jakub Grajciar --- MAINTAINERS |6 + config/common_base |5 + config/common_linux |1 + doc/guides/n

[dpdk-dev] Generating Debug information in Windows using Clang (PDB files)

2019-05-20 Thread Adham Masarwah
Hi, In development we use WinDbg for debugging, so we need to create PDB files when compiling the DPDK, so we used ``-g`` in the CFLGAS and the PDB files are being created. But when running the helloworld with WinDbg, we can see only function names, we can't see code neither variables, we get t

Re: [dpdk-dev] Hugepages not being deleted

2019-05-20 Thread Burakov, Anatoly
On 17-May-19 3:06 PM, David Marchand wrote: Hello Anatoly, Not sure what the issue is at the moment. I too have an error on the eal_flags_autotest but what is worrying me is that it works fine in 18.11.1 and 19.02. Is there anything that rings a bell? Thanks. -- David Marchand Not to me. L

[dpdk-dev] [PATCH v3 1/2] examples/ip_fragmentation: Enabling IP checksum offload in mbuf

2019-05-20 Thread Sunil Kumar Kori
As per the documentation to use any IP offload features, application must set required offload flags into mbuf->ol_flags. Signed-off-by: Sunil Kumar Kori --- examples/ip_fragmentation/main.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/examples/ip_fragmentation/main.

[dpdk-dev] [PATCH v3 2/2] examples/ip_reassembly: Enabling IP checksum offload in mbuf

2019-05-20 Thread Sunil Kumar Kori
As per the documentation to use any IP offload features, application must set required offload flags into mbuf->ol_flags. Signed-off-by: Sunil Kumar Kori --- examples/ip_reassembly/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/ip_reassembly/main.c b/examples/ip_reassembl

Re: [dpdk-dev] Hugepages not being deleted

2019-05-20 Thread David Marchand
On Mon, May 20, 2019 at 12:43 PM Burakov, Anatoly wrote: > On 17-May-19 3:06 PM, David Marchand wrote: > > Hello Anatoly, > > > > Not sure what the issue is at the moment. > > I too have an error on the eal_flags_autotest but what is worrying me is > > that it works fine in 18.11.1 and 19.02. > >

Re: [dpdk-dev] [PATCH] ipsec: include high order bytes of esn in pkt len

2019-05-20 Thread Lukas Bartosik
Hi Konstantin, Thank you for the review. I will send a revised patch which addresses your comments. Thanks, Lukasz On 19.05.2019 16:47, Ananyev, Konstantin wrote: > > Hi Lukasz, > Thanks for clarifications. > Looks good in general. > Few small comments below. > Konstantin > >> When esn is use

Re: [dpdk-dev] [PATCH v3 1/2] examples/ip_fragmentation: Enabling IP checksum offload in mbuf

2019-05-20 Thread Ananyev, Konstantin
> As per the documentation to use any IP offload features, application > must set required offload flags into mbuf->ol_flags. > > Signed-off-by: Sunil Kumar Kori > --- > examples/ip_fragmentation/main.c | 6 -- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/examples/ip

Re: [dpdk-dev] [PATCH v3 2/2] examples/ip_reassembly: Enabling IP checksum offload in mbuf

2019-05-20 Thread Ananyev, Konstantin
> As per the documentation to use any IP offload features, application > must set required offload flags into mbuf->ol_flags. > > Signed-off-by: Sunil Kumar Kori > --- > examples/ip_reassembly/main.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/examples/ip_reassembly/main.c b/

Re: [dpdk-dev] [PATCH 01/11] Add HW registers

2019-05-20 Thread Ferruh Yigit
On 5/20/2019 9:31 AM, Ziyang Xuan wrote: > --- > drivers/net/hinic/base/hinic_csr.h | 172 > + > 1 file changed, 172 insertions(+) > create mode 100644 drivers/net/hinic/base/hinic_csr.h Hi Xuan, Your mails are not reached to the mail list because of "Post b

Re: [dpdk-dev] Hugepages not being deleted

2019-05-20 Thread Burakov, Anatoly
On 20-May-19 12:09 PM, David Marchand wrote: On Mon, May 20, 2019 at 12:43 PM Burakov, Anatoly mailto:anatoly.bura...@intel.com>> wrote: On 17-May-19 3:06 PM, David Marchand wrote: > Hello Anatoly, > > Not sure what the issue is at the moment. > I too have an error on th

Re: [dpdk-dev] Hugepages not being deleted

2019-05-20 Thread David Marchand
On Mon, May 20, 2019 at 1:45 PM Burakov, Anatoly wrote: > On 20-May-19 12:09 PM, David Marchand wrote: > > On Mon, May 20, 2019 at 12:43 PM Burakov, Anatoly > > mailto:anatoly.bura...@intel.com>> wrote: > > > > On 17-May-19 3:06 PM, David Marchand wrote: > > > Hello Anatoly, > > > >

Re: [dpdk-dev] [PATCH] app/testpmd: change port detach interface

2019-05-20 Thread Nithin Dabilpuram
On Fri, May 17, 2019 at 10:59:38AM +0200, Thomas Monjalon wrote: > 17/05/2019 10:55, Nithin Dabilpuram: > > On Wed, May 15, 2019 at 09:27:22AM +0200, Thomas Monjalon wrote: > > > 15/05/2019 08:52, Nithin Dabilpuram: > > > > Hi Thomas, > > > > On Tue, May 14, 2019 at 05:39:30PM +0200, Thomas Monjalo

Re: [dpdk-dev] [PATCH v1] examples/l3fwd-power: add telemetry mode support

2019-05-20 Thread Burakov, Anatoly
On 17-May-19 7:17 PM, Reshma Pattan wrote: Add new telemetry mode support for l3fwd-power. This is a standalone mode, in this mode l3fwd-power does simple l3fwding along with calculating empty polls, full polls, and busy percentage for each forwarding core. The aggregation of these values of all

[dpdk-dev] [PATCH] app/test-compress-perf: fix improper use of negative value

2019-05-20 Thread Tomasz Jozwiak
This patch fixes coverity issue: Improper use of negative value. test_data->input_data_sz is passed to a parameter that cannot be negative. Coverity issue: 328504 Fixes: b68a82425da4 ("app/compress-perf: add performance measurement") Cc: sta...@dpdk.org Signed-off-by: Tomasz Jozwiak --- app/tes

[dpdk-dev] [PATCH] app/test-compress-perf: fix reliance on integer endianness

2019-05-20 Thread Tomasz Jozwiak
This patch fixes coverity issue: Reliance on integer endianness (INCOMPATIBLE_CAST) in parse_window_sz function. Coverity issue: 328524 Fixes: e0b6287c035d ("app/compress-perf: add parser") Cc: sta...@dpdk.org Signed-off-by: Tomasz Jozwiak --- app/test-compress-perf/comp_perf_options_parse.c |

Re: [dpdk-dev] [PATCH] app/test-compress-perf: fix improper use of negative value

2019-05-20 Thread Trahe, Fiona
> -Original Message- > From: Jozwiak, TomaszX > Sent: Monday, May 20, 2019 2:26 PM > To: dev@dpdk.org; Trahe, Fiona ; Jozwiak, TomaszX > ; shal...@marvell.com; sta...@dpdk.org > Subject: [PATCH] app/test-compress-perf: fix improper use of negative value > > This patch fixes coverity issu

Re: [dpdk-dev] [PATCH v2 1/5] baseband/fpga_lte_fec: adding driver for FEC on FPGA

2019-05-20 Thread Ferruh Yigit
On 5/15/2019 9:28 AM, Thomas Monjalon wrote: > 14/05/2019 21:45, Nicolas Chautru: >> +Installation >> +-- >> + >> +Section 3 of the DPDK manual provides instuctions on installing and >> compiling DPDK. The >> +default set of bbdev compile flags may be found in config/common_base, >> w

Re: [dpdk-dev] [PATCH v2 1/5] baseband/fpga_lte_fec: adding driver for FEC on FPGA

2019-05-20 Thread Thomas Monjalon
20/05/2019 15:44, Ferruh Yigit: > On 5/15/2019 9:28 AM, Thomas Monjalon wrote: > > 14/05/2019 21:45, Nicolas Chautru: > >> +Installation > >> +-- > >> + > >> +Section 3 of the DPDK manual provides instuctions on installing and > >> compiling DPDK. The > >> +default set of bbdev compile

Re: [dpdk-dev] [PATCH] app/test-compress-perf: fix reliance on integer endianness

2019-05-20 Thread Trahe, Fiona
HI Tomasz, > -Original Message- > From: Jozwiak, TomaszX > Sent: Monday, May 20, 2019 2:26 PM > To: dev@dpdk.org; Trahe, Fiona ; Jozwiak, TomaszX > ; shal...@marvell.com; sta...@dpdk.org > Subject: [PATCH] app/test-compress-perf: fix reliance on integer endianness > > This patch fixes cov

Re: [dpdk-dev] [PATCH] app/test-compress-perf: fix reliance on integer endianness

2019-05-20 Thread Jozwiak, TomaszX
Hi Fiona, > -Original Message- > From: Trahe, Fiona > Sent: Monday, May 20, 2019 4:06 PM > To: Jozwiak, TomaszX ; dev@dpdk.org; > shal...@marvell.com; sta...@dpdk.org > Cc: Trahe, Fiona ; Trybula, ArturX > > Subject: RE: [PATCH] app/test-compress-perf: fix reliance on integer > endianness

[dpdk-dev] [PATCH] maintainers: update Marvell PMDs

2019-05-20 Thread lironh
From: Liron Himi Alan is no longer involved in PMDs maintenance hence update the list. Also append new active maintainer to the list. Signed-off-by: Liron Himi --- MAINTAINERS | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 15d0829..d0bf25

[dpdk-dev] [Bug 281] BPF: Linking error in librte_bpf

2019-05-20 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=281 Michel Machado (mic...@digirati.com.br) changed: What|Removed |Added Status|CONFIRMED |RESOLVED Resolut

Re: [dpdk-dev] Hugepages not being deleted

2019-05-20 Thread Carrillo, Erik G
> -Original Message- > From: Burakov, Anatoly > Sent: Monday, May 20, 2019 6:45 AM > To: David Marchand > Cc: Michael Santana ; dev ; > Carrillo, Erik G > Subject: Re: [dpdk-dev] Hugepages not being deleted > > On 20-May-19 12:09 PM, David Marchand wrote: > > On Mon, May 20, 2019 at 12:4

Re: [dpdk-dev] [dpdk-stable] [PATCH] app/testpmd: fix offloads overwrite by default configuration

2019-05-20 Thread Ferruh Yigit
On 5/14/2019 2:56 AM, Zhao1, Wei wrote: > Hi, Ferruh > >> -Original Message- >> From: Yigit, Ferruh >> Sent: Tuesday, May 14, 2019 12:36 AM >> To: Zhao1, Wei ; dev@dpdk.org >> Cc: sta...@dpdk.org; Peng, Yuan ; Lu, Wenzhuo >> >> Subject: Re: [dpdk-stable] [PATCH] app/testpmd: fix offloads

Re: [dpdk-dev] [RFC v2 00/14] prefix network structures

2019-05-20 Thread Ferruh Yigit
On 4/10/2019 9:32 AM, Olivier Matz wrote: > This RFC targets 19.08. > > The rte_net headers conflict with the libc headers, because > some definitions are duplicated, sometimes with few differences. > > This RFC adds the rte_ (or RTE_) prefix to all structures, functions > and defines in rte_net

Re: [dpdk-dev] [PATCH] net/mlx5: fix memory free on queue create error

2019-05-20 Thread Ori Kam
> -Original Message- > From: dev On Behalf Of Dekel Peled > Sent: Monday, May 20, 2019 11:07 AM > To: Yongseok Koh ; Shahaf Shuler > > Cc: dev@dpdk.org; Ori Kam ; sta...@dpdk.org > Subject: [dpdk-dev] [PATCH] net/mlx5: fix memory free on queue create error > > In function mlx5_rxq_ibv

Re: [dpdk-dev] [PATCH] net/vmxnet3: uninitialized variable fix

2019-05-20 Thread Yong Wang
-Original Message- From: Yogev Chaimovich Date: Thursday, May 16, 2019 at 12:10 AM To: Yong Wang Cc: "dev@dpdk.org" , Yogev Chaimovich , "sta...@dpdk.org" Subject: [PATCH] net/vmxnet3: uninitialized variable fix Coverity issue: 323479 Fixes: 30f77abe net/vmxnet3: support stat

Re: [dpdk-dev] [PATCH 2/3] net/i40e: add runtime option to disable vector rx

2019-05-20 Thread Ergin, Mesut A
> -Original Message- > From: Ananyev, Konstantin > Sent: Monday, May 20, 2019 1:29 AM > To: Ergin, Mesut A ; Xing, Beilei > ; Zhang, Qi Z > Cc: dev@dpdk.org; Ergin, Mesut A > Subject: RE: [dpdk-dev] [PATCH 2/3] net/i40e: add runtime option to disable > vector rx > > > Hi > > > > > V

Re: [dpdk-dev] Generating Debug information in Windows using Clang (PDB files)

2019-05-20 Thread Menon, Ranjit
Adham... I don't think we debugged using clang compiled code for Hello world - mainly because it was only a "helloworld" application and we didn't quite need any debugging!:-) I found this link: http://blog.llvm.org/2017/08/llvm-on-windows-now-supports-pdb-debug.html ...which says to use the fo

Re: [dpdk-dev] [PATCH v3 0/3] Fixes for building examples

2019-05-20 Thread Thomas Monjalon
17/05/2019 15:12, Luca Boccassi: > On Fri, 2019-05-17 at 13:02 +0100, Bruce Richardson wrote: > > A small set of fixes for building examples, that was previously part > > of > > the larger set, but pulled out separately for easier apply. > > > > V3: changed patch 1, to properly quit processing exa

[dpdk-dev] [PATCH] rte_flow: mark rte_flow_error_set as cold

2019-05-20 Thread Stephen Hemminger
A minor optimization that save a few cycles during flow setup. Use the GCC cold attribute for the rte_flow_error_set function. This attribute implicitly marks all code paths that arrive at this function as unlikely. Signed-off-by: Stephen Hemminger --- lib/librte_ethdev/rte_flow.h | 8 +++-

Re: [dpdk-dev] [PATCH 2/3] net/i40e: add runtime option to disable vector rx

2019-05-20 Thread Ananyev, Konstantin
> > > > Hi > > > > > > > > Vector RX functions are not at feature parity with non-vector ones and > > > currently the vector RX path is enabled by default. Hence, the only > > > option to force selection of non-vector variants and be able to retain > > > functionality is to disable vector PMD gl

Re: [dpdk-dev] [dpdk-stable] [PATCH] app/testpmd: fix offloads overwrite by default configuration

2019-05-20 Thread Zhao1, Wei
Hi, Ferruh > -Original Message- > From: Yigit, Ferruh > Sent: Monday, May 20, 2019 11:23 PM > To: Zhao1, Wei ; dev@dpdk.org > Cc: sta...@dpdk.org; Peng, Yuan ; Lu, Wenzhuo > > Subject: Re: [dpdk-stable] [PATCH] app/testpmd: fix offloads overwrite by > default configuration > > On 5/14/20

[dpdk-dev] [Bug 282] Fix missing headers in FreeBSD CURRENT build

2019-05-20 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=282 Bug ID: 282 Summary: Fix missing headers in FreeBSD CURRENT build Product: DPDK Version: 18.05 Hardware: All OS: FreeBSD Status: CONFIRMED Severity: normal

Re: [dpdk-dev] [Bug 282] Fix missing headers in FreeBSD CURRENT build

2019-05-20 Thread Stephen Hemminger
On Tue, 21 May 2019 01:54:36 + bugzi...@dpdk.org wrote: > https://bugs.dpdk.org/show_bug.cgi?id=282 > > Bug ID: 282 >Summary: Fix missing headers in FreeBSD CURRENT build >Product: DPDK >Version: 18.05 > Hardware: All >

Re: [dpdk-dev] [PATCH v1] net/ice: update the RSS RETA size with support values

2019-05-20 Thread Yang, Qiming
Little comments. > -Original Message- > From: Wang, Haiyue > Sent: Monday, May 20, 2019 4:15 PM > To: dev@dpdk.org; Zhang, Qi Z ; Yang, Qiming > ; Wu, Jingjing ; Lu, > Wenzhuo > Cc: Wang, Haiyue > Subject: [PATCH v1] net/ice: update the RSS RETA size with support values > > Since ice ca

Re: [dpdk-dev] [PATCH v1] net/ice: update the RSS RETA size with support values

2019-05-20 Thread Wang, Haiyue
> -Original Message- > From: Yang, Qiming > Sent: Tuesday, May 21, 2019 13:50 > To: Wang, Haiyue ; dev@dpdk.org; Zhang, Qi Z > ; Wu, > Jingjing ; Lu, Wenzhuo > Subject: RE: [PATCH v1] net/ice: update the RSS RETA size with support values > > Little comments. > > > -Original Message-

Re: [dpdk-dev] [PATCH v1] net/ice: update the RSS RETA size with support values

2019-05-20 Thread Yang, Qiming
-Original Message- From: Wang, Haiyue Sent: Monday, May 20, 2019 4:15 PM To: dev@dpdk.org; Zhang, Qi Z ; Yang, Qiming ; Wu, Jingjing ; Lu, Wenzhuo Cc: Wang, Haiyue Subject: [PATCH v1] net/ice: update the RSS RETA size with support values Since ice can support 128, 512, 2K RSS RETA s

Re: [dpdk-dev] [PATCH] app/test-compress-perf: fix reliance on integer endianness

2019-05-20 Thread Jozwiak, TomaszX
Hi Fiona, Outlook issue :D , so once again > -Original Message- > From: Trahe, Fiona > Sent: Monday, May 20, 2019 4:06 PM > To: Jozwiak, TomaszX ; dev@dpdk.org; > shal...@marvell.com; sta...@dpdk.org > Cc: Trahe, Fiona ; Trybula, ArturX > > Subject: RE: [PATCH] app/test-compress-perf: f