[dpdk-dev] FW: [PATCH] librte_net: define TCP flags in rte_tcp.h instead of in rte_eth_ctrl.h

2019-05-10 Thread Morten Brørup
Hi Olivier, I submitted the below patch about a month ago, and nothing happened. The patch is simple and obvious. Is something wrong with it, or did I not follow the submission process correctly? Med venlig hilsen / kind regards Morten Brørup CTO SmartShare Systems A/S Tonsbakken 16-18 DK-2

[dpdk-dev] [PATCH v2] devtools: select patches to check with git range

2019-05-10 Thread David Marchand
Rather than default to origin/master.., it can be handy to choose the range you want to check. Example on a branch rebased on next-net: Before: [dmarchan@dmarchan dpdk]$ ./devtools/checkpatches.sh ... ... 67/69 valid patches After: [dmarchan@dmarchan dpdk]$ ./devtools/checkpatches.sh -r next-net

[dpdk-dev] [PATCH v3] eventdev: fix Rx adapter event flush logic

2019-05-10 Thread Nikhil Rao
The Rx adapter flushes events only if it has BATCH_SIZE events buffered where BATCH_SIZE is set to 32, e.g., if a single packet is sent, it is never passed to eventdev. Fix this issue by adding an event buffer flush either when a Rx queue is found to be empty or the adapter service function has pro

Re: [dpdk-dev] [PATCH v2] eventdev: fix Rx adapter event flush logic

2019-05-10 Thread Rao, Nikhil
> -Original Message- > From: Mattias Rönnblom [mailto:mattias.ronnb...@ericsson.com] > Sent: Friday, May 10, 2019 12:52 AM > To: Rao, Nikhil ; jer...@marvell.com > Cc: dev@dpdk.org; matias@nokia.com > Subject: Re: [dpdk-dev] [PATCH v2] eventdev: fix Rx adapter event flush logic > > O

Re: [dpdk-dev] [PATCH v2] eventdev: fix Rx adapter event flush logic

2019-05-10 Thread Rao, Nikhil
> -Original Message- > From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Friday, May 10, 2019 12:48 AM > To: Rao, Nikhil > Cc: dev@dpdk.org; jer...@marvell.com; matias@nokia.com > Subject: Re: [dpdk-dev] [PATCH v2] eventdev: fix Rx adapter event flush logic > > 09/05/2019

[dpdk-dev] [PATCH v2] app/testpmd: remove port stop check for macsec

2019-05-10 Thread Wei Zhao
There is no need to do such a check when set macsec for ixgbe, reconfig_device_queueand is also useless. If we do not delete this unnessary code, users have to sotp port before enable or disable macsec, then restart this port after make configuration. All these process is useless. As this cmdline i

Re: [dpdk-dev] [PATCH 1/1] doc: announce change in power API

2019-05-10 Thread Burakov, Anatoly
On 13-Mar-19 7:21 PM, Hajkowski wrote: From: Marcin Hajkowski Function rte_power_set_env will no longer return success on attempt to set env in initialized state. Signed-off-by: Marcin Hajkowski --- Acked-by: Anatoly Burakov -- Thanks, Anatoly

Re: [dpdk-dev] [PATCH 1/1] doc: announce change in power API

2019-05-10 Thread Bruce Richardson
On Fri, May 10, 2019 at 01:28:09AM +0200, Thomas Monjalon wrote: > > > From: Marcin Hajkowski > > > > > > Function rte_power_set_env will no longer return > > > success on attempt to set env in initialized state. > > > > > > Signed-off-by: Marcin Hajkowski > > > > Acked-by: David Hunt > > Any

Re: [dpdk-dev] [PATCH v2] doc: add deprecation notice on EAL mem config

2019-05-10 Thread Burakov, Anatoly
On 09-May-19 7:51 PM, Erik Gabriel Carrillo wrote: It is planned to make the rte_mem_config struct of the EAL private to remove it from the visible ABI. Add a notice to announce the intention. Signed-off-by: Erik Gabriel Carrillo --- changes in v2: - Original deprecation notice announced a c

Re: [dpdk-dev] [PATCH 1/1] doc: announce change in power API

2019-05-10 Thread Bruce Richardson
On Fri, May 10, 2019 at 10:28:14AM +0100, Bruce Richardson wrote: > On Fri, May 10, 2019 at 01:28:09AM +0200, Thomas Monjalon wrote: > > > > From: Marcin Hajkowski > > > > > > > > Function rte_power_set_env will no longer return > > > > success on attempt to set env in initialized state. > > > > >

Re: [dpdk-dev] [PATCH v2] doc: add deprecation notice on EAL mem config

2019-05-10 Thread Bruce Richardson
On Fri, May 10, 2019 at 10:31:21AM +0100, Burakov, Anatoly wrote: > On 09-May-19 7:51 PM, Erik Gabriel Carrillo wrote: > > It is planned to make the rte_mem_config struct of the EAL private to > > remove it from the visible ABI. Add a notice to announce the intention. > > > > Signed-off-by: Erik

Re: [dpdk-dev] FW: [PATCH] librte_net: define TCP flags in rte_tcp.h instead of in rte_eth_ctrl.h

2019-05-10 Thread Ferruh Yigit
On 5/10/2019 8:01 AM, Morten Brørup wrote: > Hi Olivier, > > I submitted the below patch about a month ago, and nothing happened. The > patch is simple and obvious. Is something wrong with it, or did I not follow > the submission process correctly? Hi Morten, I don't see this mail in mail list

Re: [dpdk-dev] [PATCH] event/dsw: ignore scheduling type for single-link queues

2019-05-10 Thread Mattias Rönnblom
On 2019-05-10 11:47, Mattias Rönnblom wrote: The scheduling type parameter is not applicable for single link queues. DSW would, at the time of rte_event_queue_setup(), erroneously verify that scheduling type was one of the supported types, and returned -ENOTSUP in case of RTE_SCHED_TYPE_ORDERED.

[dpdk-dev] [PATCH] event/dsw: ignore scheduling type for single-link queues

2019-05-10 Thread Mattias Rönnblom
The scheduling type parameter is not applicable for single link queues. DSW would, at the time of rte_event_queue_setup(), erroneously verify that scheduling type was one of the supported types, and returned -ENOTSUP in case of RTE_SCHED_TYPE_ORDERED. Signed-off-by: Mattias Rönnblom --- drivers/

Re: [dpdk-dev] [PATCH] event/dsw: ignore scheduling type for single-link queues

2019-05-10 Thread Kevin Traynor
On 10/05/2019 10:53, Mattias Rönnblom wrote: > On 2019-05-10 11:47, Mattias Rönnblom wrote: >> The scheduling type parameter is not applicable for single link >> queues. DSW would, at the time of rte_event_queue_setup(), erroneously >> verify that scheduling type was one of the supported types, and

Re: [dpdk-dev] [PATCH 18.11] eal: fix cleanup in no-shconf mode

2019-05-10 Thread Burakov, Anatoly
On 09-May-19 7:16 PM, Kevin Traynor wrote: On 09/05/2019 18:50, Ferruh Yigit wrote: On 5/9/2019 6:50 PM, Ferruh Yigit wrote: On 4/24/2019 4:26 PM, Anatoly Burakov wrote: In no-shconf mode, there is no need to clean runtime directory because it's not created in the first place. Fixes: 0a529578

Re: [dpdk-dev] [PATCH] net/ixgbe: fix cancel link handler when port is being removed

2019-05-10 Thread wangyunjian
> -Original Message- > From: Zhao1, Wei [mailto:wei.zh...@intel.com] > Sent: Friday, May 10, 2019 11:14 AM > To: wangyunjian ; dev@dpdk.org > Cc: i.maxim...@samsung.com; xudingke ; > sta...@dpdk.org > Subject: RE: [dpdk-dev] [PATCH] net/ixgbe: fix cancel link handler when port > is being

[dpdk-dev] [PATCH v2] event/dsw: ignore scheduling type for single-link queues

2019-05-10 Thread Mattias Rönnblom
The scheduling type parameter is not applicable for single link queues. DSW would, at the time of rte_event_queue_setup(), erroneously verify that scheduling type was one of the supported types, and returned -ENOTSUP in case of RTE_SCHED_TYPE_ORDERED. Fixes: 4540ee9c68 ("event/dsw: add device and

[dpdk-dev] Discussion on the OS Packaging of DPDK

2019-05-10 Thread Ray Kinsella
( from the undersigned ) Hi folks, In light of the renewed community discussion on API Stability (https://mails.dpdk.org/archives/dev/2019-April/128969.html), now is right time to open a discussion on how DPDK is distributed and updated. To this point in time, DPDK's primary distribution method

Re: [dpdk-dev] [dpdk-stable] [PATCH v3] eventdev: fix Rx adapter event flush logic

2019-05-10 Thread Thomas Monjalon
Any review please? 10/05/2019 10:08, Nikhil Rao: > The Rx adapter flushes events only if it has BATCH_SIZE > events buffered where BATCH_SIZE is set to 32, e.g., if a > single packet is sent, it is never passed to > eventdev. Fix this issue by adding an event buffer flush > either when a Rx queue

Re: [dpdk-dev] [dpdk-techboard] Discussion on the OS Packaging of DPDK

2019-05-10 Thread Bruce Richardson
On Fri, May 10, 2019 at 02:01:54PM +0100, Ray Kinsella wrote: > ( from the undersigned ) > > Hi folks, > > In light of the renewed community discussion on API Stability > (https://mails.dpdk.org/archives/dev/2019-April/128969.html), now is > right time to open a discussion on how DPDK is distribu

Re: [dpdk-dev] [PATCH v2] doc: add deprecation notice on EAL mem config

2019-05-10 Thread David Marchand
On Thu, May 9, 2019 at 8:53 PM Erik Gabriel Carrillo < erik.g.carri...@intel.com> wrote: > It is planned to make the rte_mem_config struct of the EAL private to > remove it from the visible ABI. Add a notice to announce the intention. > > Signed-off-by: Erik Gabriel Carrillo > --- > changes in v

Re: [dpdk-dev] [PATCH v2] devtools: select patches to check with git range

2019-05-10 Thread Thomas Monjalon
10/05/2019 09:49, David Marchand: > Rather than default to origin/master.., it can be handy to choose the > range you want to check. > > Example on a branch rebased on next-net: > > Before: > [dmarchan@dmarchan dpdk]$ ./devtools/checkpatches.sh > ... > ... > 67/69 valid patches > > After: > [dma

Re: [dpdk-dev] FW: [PATCH] librte_net: define TCP flags in rte_tcp.h instead of in rte_eth_ctrl.h

2019-05-10 Thread Morten Brørup
Hi Ferruh, Thanks for the detailed feedback. There seems to be a problem with my mail configuration on our development server. I will fix and send again. Sorry about the inconvenience. Med venlig hilsen / kind regards - Morten Brørup > -Original Message- > From: dev [mailto:dev-boun..

[dpdk-dev] [PATCH v1] doc: update release notes for 19.05

2019-05-10 Thread John McNamara
Fix grammar, spelling and formatting of DPDK 19.05 release notes. Signed-off-by: John McNamara --- doc/guides/rel_notes/release_19_05.rst | 147 - 1 file changed, 70 insertions(+), 77 deletions(-) diff --git a/doc/guides/rel_notes/release_19_05.rst b/doc/guides/

[dpdk-dev] [PATCH] librte_net: define TCP flags in rte_tcp.h instead of in rte_eth_ctrl.h

2019-05-10 Thread Morten Brørup
Signed-off-by: Morten Brørup --- app/test-pmd/cmdline.c |4 ++-- drivers/net/e1000/igb_ethdev.c |8 lib/librte_ethdev/rte_eth_ctrl.h |8 +--- lib/librte_net/rte_tcp.h | 13 + 4 files changed, 20 insertions(+), 13 deletions(-) diff --git

Re: [dpdk-dev] [PATCH v1] doc: update release notes for 19.05

2019-05-10 Thread Andrew Rybchenko
On 5/10/19 5:18 PM, John McNamara wrote: Fix grammar, spelling and formatting of DPDK 19.05 release notes. Signed-off-by: John McNamara [snip] * **Updated Solarflare network PMD.** - Updated the sfc_efx driver including the following changes: + Updated the Solarflare ``sfc_efx`` dri

[dpdk-dev] [PATCH] net/mlx5: fix device removal handler for multiport device

2019-05-10 Thread Viacheslav Ovsiienko
IBV_EVENT_DEVICE_FATAL event is generated by the driver once for the entire multiport Infiniband device, not for each existing ports. The port index is zero and it causes dropping the device removal event. We should invoke the removal event processing routine for each port we have installed handler

Re: [dpdk-dev] [PATCH] doc: add deprecation notice on timer lib cleanup

2019-05-10 Thread Stephen Hemminger
On Thu, 9 May 2019 11:08:30 +0100 "Burakov, Anatoly" wrote: > On 09-May-19 10:50 AM, Ray Kinsella wrote: > > > > > > On 09/05/2019 10:38, Thomas Monjalon wrote: > >> 09/05/2019 11:37, Burakov, Anatoly: > >>> On 09-May-19 10:06 AM, Bruce Richardson wrote: > On Thu, May 09, 2019 at 09:

[dpdk-dev] [PATCH] Fix off-by-one errors in snprintf in various files

2019-05-10 Thread Michael Santana
snprintf guarantees to always correctly place a null terminator in the buffer string. So manually placing a null terminator in a buffer right after a call to snprintf is redundant code. Additionally, there is no need to use 'sizeof(buffer) - 1' in snprintf as this means we are not using the last c

Re: [dpdk-dev] [PATCH v4] doc: announce ring API change

2019-05-10 Thread Eads, Gage
> 01/02/2019 15:36, Gage Eads: > > In order to support the non-blocking ring[1], an API change > > (additional argument to rte_ring_get_memsize()) is required in > > librte_ring. This commit updates the deprecation notice to pave the > > way for its inclusion in 19.08. > > > > [1] http://mails.dpdk

Re: [dpdk-dev] [PATCH] Fix off-by-one errors in snprintf in various files

2019-05-10 Thread Bruce Richardson
On Fri, May 10, 2019 at 10:53:12AM -0400, Michael Santana wrote: > snprintf guarantees to always correctly place a null terminator in the buffer > string. So manually placing a null terminator in a buffer right after a call > to snprintf is redundant code. > > Additionally, there is no need to use

Re: [dpdk-dev] [PATCH v4] doc: announce ring API change

2019-05-10 Thread Stephen Hemminger
On Fri, 10 May 2019 14:53:56 + "Eads, Gage" wrote: > > 01/02/2019 15:36, Gage Eads: > > > In order to support the non-blocking ring[1], an API change > > > (additional argument to rte_ring_get_memsize()) is required in > > > librte_ring. This commit updates the deprecation notice to pave th

Re: [dpdk-dev] [PATCH v4] doc: announce ring API change

2019-05-10 Thread Ola Liljedahl
On Fri, 2019-05-10 at 07:58 -0700, Stephen Hemminger wrote: > On Fri, 10 May 2019 14:53:56 + > "Eads, Gage" wrote: > > 01/02/2019 15:36, Gage Eads: > In order to support the non-blocking ring[1], an API change > (additional argument to rte_ring_get_memsize()) is required in > librte_ring. T

Re: [dpdk-dev] [PATCH] Fix off-by-one errors in snprintf in various files

2019-05-10 Thread Burakov, Anatoly
On 10-May-19 3:53 PM, Michael Santana wrote: snprintf guarantees to always correctly place a null terminator in the buffer string. So manually placing a null terminator in a buffer right after a call to snprintf is redundant code. Additionally, there is no need to use 'sizeof(buffer) - 1' in snp

Re: [dpdk-dev] [dpdk-stable] [PATCH v3] eventdev: fix Rx adapter event flush logic

2019-05-10 Thread Mattias Rönnblom
On 2019-05-10 15:30, Thomas Monjalon wrote: Any review please? Reviewed-by: Mattias Rönnblom Mattias Elo reported "Thanks, I’ve tested this patch and can confirm that it fixes the problem." for the (nearly identical) v2 of this patch.

[dpdk-dev] [PATCH] librte_net: define TCP flags in rte_tcp.h instead of in rte_eth_ctrl.h

2019-05-10 Thread Morten Brørup
TCP flags were moved to the TCP header file from the Ethernet control header file, keeping their names intact. Missing TCP ECN flags were added. The ALL mask did not include TCP ECN flags, so it was renamed to reflect that it applies to N-tuple filtering only. A driver using the ALL mask was upd

Re: [dpdk-dev] [PATCH v4] doc: announce ring API change

2019-05-10 Thread Eads, Gage
> -Original Message- > From: Ola Liljedahl [mailto:ola.liljed...@arm.com] > Sent: Friday, May 10, 2019 10:19 AM > To: step...@networkplumber.org; Eads, Gage > Cc: arybche...@solarflare.com; nd ; Ananyev, Konstantin > ; tho...@monjalon.net; Richardson, > Bruce ; dev@dpdk.org; > olivier.m...

[dpdk-dev] [PATCH] doc: fix doxygen documentation for timer API

2019-05-10 Thread Erik Gabriel Carrillo
Now that some of the symbols in the timer lib are versioned, the Doxygen documentation that is generated is incorrect. Group all versioned symbols, listing the generic name first, and remove comments for older versions of symbols. Signed-off-by: Erik Gabriel Carrillo --- lib/librte_timer/rte_ti

Re: [dpdk-dev] [PATCH v2] event/dsw: ignore scheduling type for single-link queues

2019-05-10 Thread Eads, Gage
> The scheduling type parameter is not applicable for single link > queues. DSW would, at the time of rte_event_queue_setup(), erroneously > verify that scheduling type was one of the supported types, and > returned -ENOTSUP in case of RTE_SCHED_TYPE_ORDERED. > > Fixes: 4540ee9c68 ("event/dsw:

[dpdk-dev] Using _XOPEN_SOURCE macros may break builds on FreeBSD

2019-05-10 Thread Smoczynski, MarcinX
Hi. One of my patches submitted this week is breaking build on BSD systems. I dug deeper and found out that it's because I'm using IPPROTO_* macros from in a header (rte_ip.h) which is included in the driver which uses _XOPEN_SOURCE definition in its Makefile/meson.build. On Linux and glibc this

[dpdk-dev] [PATCH] librte_net: define TCP flags in rte_tcp.h instead of in rte_eth_ctrl.h

2019-05-10 Thread Morten Brørup
TCP flags were moved to the TCP header file from the Ethernet control header file, keeping their names intact. Missing TCP ECN flags were added. The ALL mask did not include TCP ECN flags, so it was renamed to reflect that it applies to N-tuple filtering only. A driver using the ALL mask was upda

[dpdk-dev] [PATCH] librte_net: define TCP flags in rte_tcp.h instead of in rte_eth_ctrl.h

2019-05-10 Thread Morten Brørup
TCP flags were moved to the TCP header file from the Ethernet control header file, keeping their names intact. Missing TCP ECN flags were added. The ALL mask did not include TCP ECN flags, so it was renamed to reflect that it applies to N-tuple filtering only. A driver using the ALL mask was upda

Re: [dpdk-dev] [PATCH] doc: add tested platforms with Mellanox NICs

2019-05-10 Thread David Christensen
+* Power 9 platforms with Mellanox(R) NICs combinations + + * CPU: + + * POWER9 2.2 (pvr 004e 1202) 2300MHz + + * OS: + + * Ubuntu 18.04.1 LTS (Bionic Beaver) + + * NICs: + + * Mellanox(R) ConnectX(R)-5 100G MCX556A-ECAT (2x100G) + + * Host interface: PCI Express 3.0 x16

Re: [dpdk-dev] Using _XOPEN_SOURCE macros may break builds on FreeBSD

2019-05-10 Thread Thomas Monjalon
10/05/2019 19:14, Smoczynski, MarcinX: > To summarize we have different visibility sets for Linux and BSD when using > XOPEN_SOURCE or POSIX_C_SOURCE explicitly. To overcome this situation we can > either remove problematic XOPEN macros from mk/meson rules > (drivers/net/failsafe, > drivers/net/ml

Re: [dpdk-dev] Using _XOPEN_SOURCE macros may break builds on FreeBSD

2019-05-10 Thread Thomas Monjalon
re-send with fixed Cc 10/05/2019 20:17, Thomas Monjalon: > 10/05/2019 19:14, Smoczynski, MarcinX: > > To summarize we have different visibility sets for Linux and BSD when using > > XOPEN_SOURCE or POSIX_C_SOURCE explicitly. To overcome this situation we can > > either remove problematic XOPEN mac

Re: [dpdk-dev] [dpdk-techboard] Discussion on the OS Packaging of DPDK

2019-05-10 Thread Thomas Monjalon
10/05/2019 15:43, Bruce Richardson: > On Fri, May 10, 2019 at 02:01:54PM +0100, Ray Kinsella wrote: > > ( from the undersigned ) > > > > Hi folks, > > > > In light of the renewed community discussion on API Stability > > (https://mails.dpdk.org/archives/dev/2019-April/128969.html), now is > > rig

Re: [dpdk-dev] [PATCH] net/mlx5: fix device removal handler for multiport device

2019-05-10 Thread Yongseok Koh
> On May 10, 2019, at 7:36 AM, Viacheslav Ovsiienko > wrote: > > IBV_EVENT_DEVICE_FATAL event is generated by the driver once for > the entire multiport Infiniband device, not for each existing ports. > The port index is zero and it causes dropping the device removal > event. We should invoke

[dpdk-dev] [PATCH 0/5] BBDEV PMD Drivers Extension for 19.08

2019-05-10 Thread Nic Chautru
This was deferred from 19.05 due to time running out. Addition of a PMD for 4G FEC encoding and decoding functions for Intel PAC N300 FPGA. Extension of PMD based on Intel optimised SW libraries for 5G FEC. The HW dependency is available now. Nicolas Chautru (5): baseband/fpga_lte_fec: addit

[dpdk-dev] [PATCH 5/5] usertools: update to usertool to allow binding of baseband device

2019-05-10 Thread Nic Chautru
From: Nicolas Chautru Signed-off-by: Nic Chautru --- usertools/dpdk-devbind.py | 10 +- usertools/dpdk-setup.sh | 6 +++--- 2 files changed, 12 insertions(+), 4 deletions(-) mode change 100755 => 100644 usertools/dpdk-devbind.py mode change 100755 => 100644 usertools/dpdk-setup.sh

[dpdk-dev] [PATCH 1/5] baseband/fpga_lte_fec: addition of driver for 4G turbo FEC with PAC N300 FPGA card

2019-05-10 Thread Nic Chautru
From: Nicolas Chautru --- config/common_base |6 + doc/guides/bbdevs/fpga_lte_fec.rst | 318 +++ doc/guides/bbdevs/index.rst|1 + drivers/baseband/Makefile |2 + drivers/baseband/fpga_lt

[dpdk-dev] [PATCH 3/5] baseband/turbo_sw : Extension of turbo_sw for 5G FEC

2019-05-10 Thread Nic Chautru
From: Nicolas Chautru Signed-off-by: Nic Chautru --- app/test-bbdev/test_bbdev_vector.c | 4 +- app/test-bbdev/test_bbdev_vector.h | 2 +- config/common_base | 3 +- doc/guides/bbdevs/turbo_sw.rst | 57 +- driver

[dpdk-dev] [PATCH 2/5] bbdev : Extension of BBDEV for 5G FEC

2019-05-10 Thread Nic Chautru
From: Nicolas Chautru Signed-off-by: Nic Chautru --- doc/guides/prog_guide/bbdev.rst | 509 ++-- drivers/baseband/fpga_lte_fec/fpga_lte_fec.c | 24 +- drivers/baseband/turbo_sw/bbdev_turbo_software.c | 36 +- lib/librte_bbdev/rte_bbdev.c