Re: [dpdk-dev] [PATCH 19.02 2/2] mem: use memfd for no-huge mode

2018-11-28 Thread Burakov, Anatoly
On 28-Nov-18 4:57 AM, Tiwei Bie wrote: On Tue, Nov 13, 2018 at 05:54:48PM +, Anatoly Burakov wrote: When running in no-huge mode, we anonymously allocate our memory. While this works for regular NICs and vdev's, it's not suitable for memory sharing scenarios such as virtio with vhost_user ba

[dpdk-dev] [PATCH v1] net/i40e: fix RX/TX setup when restart port

2018-11-28 Thread Zhirun Yan
Before this patch, there are two functions that will clear RX/TX queues number: rte_eth_dev_close() and i40e_dev_free_queues(). But if also i40e_dev_free_queues() clear it, RX/TX queues will not set up correctly when restart port. Fixes: 6b4537128394 ("i40e: free queue memory when closing") Signe

[dpdk-dev] [PATCH v1] net/i40e: fix VF port reset

2018-11-28 Thread Zhirun Yan
Port reset will call i40evf_uninit_vf() to release resource. It wants to call i40evf_dev_close() to do some clean work. Before this patch, port reset will never call i40evf_dev_close() to shutdown adminq. So the i40evf_dev_init() will failed. Fixs: 18599342024("net/i40e: fix VF add/del MAC") Sign

[dpdk-dev] [PATCH v1] net/i40e: fix RX/TX setup when restart port

2018-11-28 Thread Zhirun Yan
Before this patch, there are two functions that will clear RX/TX queues number: rte_eth_dev_close() and i40e_dev_free_queues(). But if also i40e_dev_free_queues() clear it, RX/TX queues will not set up correctly when restart port. Fixes: 6b4537128394 ("i40e: free queue memory when closing") Signe

[dpdk-dev] [PATCH v1] net/i40e: fix VF port reset

2018-11-28 Thread Zhirun Yan
Port reset will call i40evf_uninit_vf() to release resource. It wants to call i40evf_dev_close() to do some clean work. Before this patch, port reset will never call i40evf_dev_close() to shutdown adminq. So the i40evf_dev_init() will failed. Fixs: 18599342024("net/i40e: fix VF add/del MAC") Sign

[dpdk-dev] [PATCH v1] net/i40e: fix PF port close

2018-11-28 Thread Zhirun Yan
Before this patch, the function i40e_dev_close wants to call i40e_dev_stop() to release res, but it will never call it. Fixes: 4861cde4611601ccc9 ("i40e: new poll mode driver") Signed-off-by: Zhirun Yan --- drivers/net/i40e/i40e_ethdev.c | 15 ++- 1 file changed, 6 insertions(+), 9

[dpdk-dev] [PATCH] net/mlx5: fix validation of Rx queue number

2018-11-28 Thread Dekel Peled
Function mlx5_ctrl_flow_vlan() is used to set the rss rule in MLX5 PMD, using priv->reta_idx_n as number of Rx queues. This number is passed to mlx5_flow_validate_action_rss(), which attempts to access the Rx queues at priv->rxqs. In case priv->rxqs_n is 0, priv->rxqs is empty, and mlx5_flow_valida

[dpdk-dev] [PATCH v2 0/2] Support request more queues

2018-11-28 Thread Zhirun Yan
DPDK VF send VIRTCHNL_OP_REQUEST_QUEUES to kernel PF or DPDK VF for requesting more queues, then PF will allocate more queues. Zhirun Yan (2): net/i40e: support VF request more queues net/i40e: support PF respond VF request more queues drivers/net/i40e/i40e_ethdev_vf.c | 59

[dpdk-dev] [PATCH v2 2/2] net/i40e: support PF respond VF request more queues

2018-11-28 Thread Zhirun Yan
This patch respond the VIRTCHNL_OP_REQUEST_QUEUES msg from VF, and process to allocated more queues for the requested VF. If successful, PF will notify VF to reset. If unsuccessful, PF will send message to inform VF. Signed-off-by: Zhirun Yan Signed-off-by: Haiyue Wang --- drivers/net/i40e/i40e

[dpdk-dev] [PATCH v2 1/2] net/i40e: support VF request more queues

2018-11-28 Thread Zhirun Yan
Before this patch, VF gets a default number of queues from the PF. This patch enables VF to request a different number. When VF configures more queues, it will send VIRTCHNL_OP_REQUEST_QUEUES to PF to request more queues, if success, PF will reset the VF. User can run "port stop all", "port config

Re: [dpdk-dev] [PATCH 3/3] lib/librte_meter: update abi to include new rfc4115 function

2018-11-28 Thread Eelco Chaudron
On 28 Nov 2018, at 9:38, David Marchand wrote: Hello Eelco, On Tue, Nov 27, 2018 at 4:22 PM Eelco Chaudron wrote: Update the ABI to include the new RFC4115 meter functions --- lib/librte_meter/Makefile |2 +- lib/librte_meter/meson.build |2 +- lib/librte

Re: [dpdk-dev] [v1] net/i40e: fix RX/TX setup when restart port

2018-11-28 Thread Ilya Maximets
On 28.11.2018 19:51, Zhirun Yan wrote: > Before this patch, there are two functions that will clear RX/TX queues > number: rte_eth_dev_close() and i40e_dev_free_queues(). But if also > i40e_dev_free_queues() clear it, RX/TX queues will not set up correctly > when restart port. According to DPDK AP

[dpdk-dev] [PATCH] vhost: batch used descriptors chains write-back with packed ring

2018-11-28 Thread Maxime Coquelin
Instead of writing back descriptors chains in order, let's write the first chain flags last in order to improve batching. With Kernel's pktgen benchmark, ~3% performance gain is measured. Signed-off-by: Maxime Coquelin --- lib/librte_vhost/virtio_net.c | 37 ++-

[dpdk-dev] [RFC PATCH 2/3] mlx5: Implement support for read_clock

2018-11-28 Thread Tom Barbette
Signed-off-by: Tom Barbette --- drivers/net/mlx5/mlx5.c| 1 + drivers/net/mlx5/mlx5.h| 1 + drivers/net/mlx5/mlx5_ethdev.c | 31 +++ drivers/net/mlx5/mlx5_glue.c | 8 drivers/net/mlx5/mlx5_glue.h | 2 ++ 5 files changed, 43 insertions(+

[dpdk-dev] [RFC PATCH 1/3] rte_ethdev: Add API function to read dev clock

2018-11-28 Thread Tom Barbette
Add rte_eth_read_clock to read the current clock of a devide. The main use is to get the current clock as written by the driver in the timestamp field of the pkt mbuf when timestamp offloading is enabled. This function was missing to allow users to convert that RX timestamp field to real time wit

[dpdk-dev] [RFC PATCH 0/3] Add rte_eth_read_clock API

2018-11-28 Thread Tom Barbette
Some NICs allows to timestamp packets, but do not support the full PTP synchronization process. Hence, the value set in the mbuf timestamp field is only the raw value of an internal clock. To make sense of this value, one at least needs to be able to query the current hardware clock value. As with

[dpdk-dev] [RFC PATCH 3/3] rxtx_callbacks: Add support for HW timestamp

2018-11-28 Thread Tom Barbette
Use rxtx callback to demonstrate a way to use rte_eth_read_clock to convert the hardware timestamps to an amount of cycles. This allows to get the amount of time the packet spent since its entry in the device. While the regular latency only shows the latency from when it entered the software stack

[dpdk-dev] [PATCH 0/9] support SW assisted VDPA live migration

2018-11-28 Thread Xiao Wang
In the previous VDPA implementation we have enabled live migration support by HW accelerator doing all the stuff, including dirty page logging and device status report/restore. In this mode VDPA sample daemon and device driver just takes care of the control path and does not involve in data path, s

[dpdk-dev] [PATCH 2/9] vhost: provide helpers for virtio ring relay

2018-11-28 Thread Xiao Wang
This patch provides two helpers for vdpa device driver to perform a relay between the guest virtio ring and a mediate virtio ring. The available ring relay will synchronize the available entries, and helps to do desc validity checking. The used ring relay will synchronize the used entries from me

[dpdk-dev] [PATCH 1/9] vhost: provide helper for host notifier ctrl

2018-11-28 Thread Xiao Wang
VDPA driver can decide if it needs to enable/disable the EPT mapping, exposing a API can allow flexibility. A later patch will base on this. Signed-off-by: Xiao Wang --- drivers/net/ifc/ifcvf_vdpa.c | 3 +++ lib/librte_vhost/rte_vdpa.h| 18 ++ lib/librte_vh

[dpdk-dev] [PATCH 3/9] net/ifc: dump debug message for error

2018-11-28 Thread Xiao Wang
Driver probe may fail for different causes, debug message is helpful for debugging issue. Signed-off-by: Xiao Wang --- drivers/net/ifc/ifcvf_vdpa.c | 19 +-- 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/drivers/net/ifc/ifcvf_vdpa.c b/drivers/net/ifc/ifcvf_vdpa.c

[dpdk-dev] [PATCH 7/9] net/ifc: use lib API for used ring logging

2018-11-28 Thread Xiao Wang
Vhost lib has already provided a helper for used ring logging, driver could use it to reduce code. Signed-off-by: Xiao Wang --- drivers/net/ifc/ifcvf_vdpa.c | 27 --- 1 file changed, 8 insertions(+), 19 deletions(-) diff --git a/drivers/net/ifc/ifcvf_vdpa.c b/drivers/net

[dpdk-dev] [PATCH 4/9] net/ifc: store only registered device instance

2018-11-28 Thread Xiao Wang
If driver fails to register ifc VF device into vhost lib, then this device should not be stored. Fixes: a3f8150eac6d ("net/ifcvf: add ifcvf vDPA driver") cc: sta...@dpdk.org Signed-off-by: Xiao Wang --- drivers/net/ifc/ifcvf_vdpa.c | 8 1 file changed, 4 insertions(+), 4 deletions(-)

[dpdk-dev] [PATCH 5/9] net/ifc: detect if VDPA mode is specified

2018-11-28 Thread Xiao Wang
If user wants the VF to be used in VDPA (vhost data path acceleration) mode, then the user can add a "vdpa=1" parameter for the device. So if driver doesn't not find this option, it should quit and let the bus continue the probe. Signed-off-by: Xiao Wang --- drivers/net/ifc/ifcvf_vdpa.c | 47 ++

[dpdk-dev] [PATCH 6/9] net/ifc: add devarg for LM mode

2018-11-28 Thread Xiao Wang
This patch series enables a new method for live migration, i.e. software assisted live migration. This patch provides a device argument for user to choose the methold. When "swlm=1", driver/device will do live migration with a relay thread dealing with dirty page logging. Without this parameter, d

[dpdk-dev] [PATCH 8/9] net/ifc: support SW assisted VDPA live migration

2018-11-28 Thread Xiao Wang
In SW assisted live migration mode, driver will stop the device and setup a mediate virtio ring to relay the communication between the virtio driver and the VDPA device. This data path intervention will allow SW to help on guest dirty page logging for live migration. This SW fallback is event dri

[dpdk-dev] [PATCH 9/9] doc: update ifc NIC document

2018-11-28 Thread Xiao Wang
Signed-off-by: Xiao Wang --- doc/guides/nics/ifc.rst | 7 +++ 1 file changed, 7 insertions(+) diff --git a/doc/guides/nics/ifc.rst b/doc/guides/nics/ifc.rst index 48f9adf1d..a16f2982f 100644 --- a/doc/guides/nics/ifc.rst +++ b/doc/guides/nics/ifc.rst @@ -39,6 +39,12 @@ the driver probe a new

Re: [dpdk-dev] [PATCH] vhost: batch used descriptors chains write-back with packed ring

2018-11-28 Thread Jens Freimann
On Wed, Nov 28, 2018 at 10:47:00AM +0100, Maxime Coquelin wrote: Instead of writing back descriptors chains in order, let's write the first chain flags last in order to improve batching. With Kernel's pktgen benchmark, ~3% performance gain is measured. Signed-off-by: Maxime Coquelin --- lib/li

Re: [dpdk-dev] [PATCH 3/3] lib/librte_meter: update abi to include new rfc4115 function

2018-11-28 Thread Thomas Monjalon
28/11/2018 10:27, Eelco Chaudron: > On 28 Nov 2018, at 9:38, David Marchand wrote: > > On Tue, Nov 27, 2018 at 4:22 PM Eelco Chaudron > > wrote: > >> --- a/lib/librte_meter/Makefile > >> +++ b/lib/librte_meter/Makefile > >> -LIBABIVER := 2 > >> +LIBABIVER := 3 > > > > As far as I understood the p

Re: [dpdk-dev] [PATCH] mk: don't install meson.build in usertools

2018-11-28 Thread Luca Boccassi
On Tue, 2018-11-27 at 20:35 +0100, Timothy Redaelli wrote: > In commit 7dd34c71de2a ("usertools: install with meson") meson.build > was > added in usertools directory and so it's copied to > $(datadir)/usertools > with "make install". > > This patch avoids to copy meson.build when installing usert

Re: [dpdk-dev] [PATCH] ip_frag: fix ipv6 when MTU sizes not aligned to 8 bytes

2018-11-28 Thread Luca Boccassi
On Mon, 2018-11-26 at 23:56 -0500, Chas Williams wrote: > From: Chas Williams > > The same issue was fixed on for the ipv4 version of this routine in > commit 8d4d3a4f7337 ("ip_frag: handle MTU sizes not aligned to 8 > bytes"). > Briefly, the size of an ipv6 header is always 40 bytes.  With an MT

[dpdk-dev] [PATCH 1/2] devtools: report the incorrect section when complaining

2018-11-28 Thread David Marchand
It does not hurt reporting the incriminated section. Before: ERROR: symbol rte_meter_trtcm_rfc4115_color_aware_check is added in a section other than the EXPERIMENTAL section of the version map After: ERROR: symbol rte_meter_trtcm_rfc4115_color_aware_check is added in +EXPERIMENTAL section other

[dpdk-dev] [PATCH 2/2] devtools: drop '+' from the section name

2018-11-28 Thread David Marchand
The incriminated commit did relax the condition to catch all sections but dropped the + removal which can trigger false detection of the special EXPERIMENTAL section when adding symbols and the section in the same patch. Fixes: 7281cf520f89 ("devtools: relax rule for identifying symbol section") S

[dpdk-dev] set_tsc_freq() wrong return value - bug?

2018-11-28 Thread Matteo Lanzuisi
Hi all, during some tests with dpdk 18.02.2 on RedHat 7 kernel 3.10.0-862.el7.x86_64 using Intel X710 and 2 x Intel(R) Xeon(R) Gold 6130 CPU @ 2.10GHz I found the following. I put some log in the function set_tsc_freq as you can see below void set_tsc_freq(void) {     uint64_t freq;    

Re: [dpdk-dev] [PATCH] examples/bond: fix initialization error

2018-11-28 Thread Ferruh Yigit
On 11/27/2018 6:57 PM, Chas Williams wrote: > > > On 11/13/2018 11:46 AM, Radu Nicolau wrote: >> Queue setup will fail if called before adding slaves. >> >> Fixes: 7a0665940fa8 ("net/bonding: inherit descriptor limits from slaves") >> Cc: sta...@dpdk.org >> >> Signed-off-by: Radu Nicolau > > Ac

[dpdk-dev] [PATCH v2 1/3] compress/isal: enable checksum support in driver

2018-11-28 Thread Lee Daly
This patch adds checksum support in the ISA-L PMD for both compression and decompression. CRC32 is supported as well as Adler32. Signed-off-by: Lee Daly --- drivers/compress/isal/isal_compress_pmd.c | 80 ++- drivers/compress/isal/isal_compress_pmd_ops.c | 4 +- 2 f

[dpdk-dev] [PATCH v2 2/3] test/compress: add checksum tests

2018-11-28 Thread Lee Daly
This patch adds a test which examines what type of checksum the PMD supports, adler, crc32 or alder32_crc32 and tests that feature if the PMD supports it. Signed-off-by: Lee Daly --- test/test/test_compressdev.c | 206 ++- 1 file changed, 203 insertions(+)

[dpdk-dev] [PATCH v2 3/3] doc: update ISA-L guide to reflect checksum support

2018-11-28 Thread Lee Daly
This updates the ISA-L compression driver guide on how to enable and use checksums. This also updates the compression drivers features matrix. Will add to release notes once the 19.02.rst file is added. Signed-off-by: Lee Daly --- doc/guides/compressdevs/features/isal.ini | 2 ++ doc/guides/co

[dpdk-dev] [PATCH] version: 19.02-rc0

2018-11-28 Thread Thomas Monjalon
Start version numbering for a new release cycle, and introduce a template file for release notes. The release notes comments are updated to mandate a scope label for API and ABI changes. Signed-off-by: Thomas Monjalon --- doc/guides/rel_notes/index.rst | 1 + doc/guides/rel_notes

Re: [dpdk-dev] [PATCH] examples/bond: wait for slaves to become active

2018-11-28 Thread Ferruh Yigit
On 11/14/2018 12:19 PM, Radu Nicolau wrote: > Do not start the packet processing threads until all configured > slaves become active. Hi Radu, What happens if packet processing threads started before all slaves active? Exit app, error, crash? So can we say this patch is fixing packet forwarding?

Re: [dpdk-dev] [PATCH] version: 19.02-rc0

2018-11-28 Thread Ferruh Yigit
On 11/28/2018 10:44 AM, Thomas Monjalon wrote: > Start version numbering for a new release cycle, > and introduce a template file for release notes. > > The release notes comments are updated to mandate > a scope label for API and ABI changes. > > Signed-off-by: Thomas Monjalon > --- > doc/guid

[dpdk-dev] [PATCH] net/nfp: add multiprocess support

2018-11-28 Thread Alejandro Lucero
This patch introduces changes for supporting multiprocess support. This is trivial for VFs but comes with some limitations for the PF. Due to restrictions when using NFP CPP interface, just one secondary process is supported by now for the PF. Signed-off-by: Alejandro Lucero --- doc/guides/nics

Re: [dpdk-dev] Question about telemetry on 18.11 release

2018-11-28 Thread Hideyuki Yamashita
Hello Rami, Thanks for your response. Please see inline. > Hi, Hideyuki, > > >Rami, thanks for your advice. > >If I understand you correctly, then > >there already exist APIs to collect statistic > >information inside dpdk including CPU usage. > > Yup. I want to also note that the librte jobsta

Re: [dpdk-dev] [PATCH 1/2] devtools: report the incorrect section when complaining

2018-11-28 Thread Neil Horman
On Wed, Nov 28, 2018 at 11:28:52AM +0100, David Marchand wrote: > It does not hurt reporting the incriminated section. > > Before: > ERROR: symbol rte_meter_trtcm_rfc4115_color_aware_check is added in a > section other than the EXPERIMENTAL section of the version map > > After: > ERROR: symbol rt

Re: [dpdk-dev] [PATCH 3/3] lib/librte_meter: update abi to include new rfc4115 function

2018-11-28 Thread Eelco Chaudron
On 28 Nov 2018, at 11:09, Thomas Monjalon wrote: 28/11/2018 10:27, Eelco Chaudron: On 28 Nov 2018, at 9:38, David Marchand wrote: On Tue, Nov 27, 2018 at 4:22 PM Eelco Chaudron wrote: --- a/lib/librte_meter/Makefile +++ b/lib/librte_meter/Makefile -LIBABIVER := 2 +LIBABIVER := 3 As far

Re: [dpdk-dev] [PATCH] version: 19.02-rc0

2018-11-28 Thread Thomas Monjalon
28/11/2018 12:16, Ferruh Yigit: > On 11/28/2018 10:44 AM, Thomas Monjalon wrote: > > Start version numbering for a new release cycle, > > and introduce a template file for release notes. > > > > The release notes comments are updated to mandate > > a scope label for API and ABI changes. > > > > S

Re: [dpdk-dev] [PATCH 3/3] lib/librte_meter: update abi to include new rfc4115 function

2018-11-28 Thread Thomas Monjalon
28/11/2018 13:40, Eelco Chaudron: > > On 28 Nov 2018, at 11:09, Thomas Monjalon wrote: > > > 28/11/2018 10:27, Eelco Chaudron: > >> On 28 Nov 2018, at 9:38, David Marchand wrote: > >>> On Tue, Nov 27, 2018 at 4:22 PM Eelco Chaudron > >>> wrote: > --- a/lib/librte_meter/Makefile > +++ b

Re: [dpdk-dev] [PATCH 1/2] devtools: report the incorrect section when complaining

2018-11-28 Thread David Marchand
On Wed, Nov 28, 2018 at 1:35 PM Neil Horman wrote: > On Wed, Nov 28, 2018 at 11:28:52AM +0100, David Marchand wrote: > > It does not hurt reporting the incriminated section. > > > > Before: > > ERROR: symbol rte_meter_trtcm_rfc4115_color_aware_check is added in a > > section other than the EXPERI

Re: [dpdk-dev] [PATCH v2 3/3] net/af_packet: get 'framesz' from the iface's MTU

2018-11-28 Thread Lam, Tiago
On 27/11/2018 17:43, Ferruh Yigit wrote: > On 11/20/2018 10:26 AM, Tiago Lam wrote: >> Use the underlying MTU to calculate the framsize to be used for the mmap >> RINGs. This is to make it more flexible on deployments with different >> MTU requirements, instead of using a pre-defined value of 2048B

Re: [dpdk-dev] [PATCH 3/3] lib/librte_meter: update abi to include new rfc4115 function

2018-11-28 Thread Eelco Chaudron
On 28 Nov 2018, at 13:51, Thomas Monjalon wrote: > 28/11/2018 13:40, Eelco Chaudron: >> >> On 28 Nov 2018, at 11:09, Thomas Monjalon wrote: >> >>> 28/11/2018 10:27, Eelco Chaudron: On 28 Nov 2018, at 9:38, David Marchand wrote: > On Tue, Nov 27, 2018 at 4:22 PM Eelco Chaudron > wr

Re: [dpdk-dev] [PATCH] version: 19.02-rc0

2018-11-28 Thread Mcnamara, John
> -Original Message- > From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Wednesday, November 28, 2018 10:45 AM > To: dev@dpdk.org > Cc: Mcnamara, John ; Kovacevic, Marko > > Subject: [PATCH] version: 19.02-rc0 Acked-by: John McNamara

Re: [dpdk-dev] [PATCH] version: 19.02-rc0

2018-11-28 Thread Ferruh Yigit
On 11/28/2018 12:45 PM, Thomas Monjalon wrote: > 28/11/2018 12:16, Ferruh Yigit: >> On 11/28/2018 10:44 AM, Thomas Monjalon wrote: >>> Start version numbering for a new release cycle, >>> and introduce a template file for release notes. >>> >>> The release notes comments are updated to mandate >>>

Re: [dpdk-dev] [PATCH v2 3/3] net/af_packet: get 'framesz' from the iface's MTU

2018-11-28 Thread Ferruh Yigit
On 11/28/2018 1:12 PM, Lam, Tiago wrote: > On 27/11/2018 17:43, Ferruh Yigit wrote: >> On 11/20/2018 10:26 AM, Tiago Lam wrote: >>> Use the underlying MTU to calculate the framsize to be used for the mmap >>> RINGs. This is to make it more flexible on deployments with different >>> MTU requirements

Re: [dpdk-dev] [PATCH] version: 19.02-rc0

2018-11-28 Thread Thomas Monjalon
28/11/2018 14:24, Ferruh Yigit: > On 11/28/2018 12:45 PM, Thomas Monjalon wrote: > > 28/11/2018 12:16, Ferruh Yigit: > >> On 11/28/2018 10:44 AM, Thomas Monjalon wrote: > >>> Start version numbering for a new release cycle, > >>> and introduce a template file for release notes. > >>> > >>> The rele

Re: [dpdk-dev] [PATCH] examples/bond: wait for slaves to become active

2018-11-28 Thread Radu Nicolau
Hi On 11/28/2018 11:08 AM, Ferruh Yigit wrote: On 11/14/2018 12:19 PM, Radu Nicolau wrote: Do not start the packet processing threads until all configured slaves become active. Hi Radu, What happens if packet processing threads started before all slaves active? Exit app, error, crash? So ca

[dpdk-dev] [PATCH 2/2] sched: fix possible mem leak on initialize

2018-11-28 Thread Tonghao Zhang
In some case, we may create sched port dynamically, if err when creating so memory will leak. Signed-off-by: Tonghao Zhang --- lib/librte_sched/rte_sched.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_sched/rte_sched.c b/lib/librte_sched/rte_sched.c index 17de6e6..a3adcca 10064

[dpdk-dev] [PATCH 1/2] sched: refine get base helper function

2018-11-28 Thread Tonghao Zhang
use switch instead of if, and it is more easy reading. Signed-off-by: Tonghao Zhang --- lib/librte_sched/rte_sched.c | 40 +++- 1 file changed, 19 insertions(+), 21 deletions(-) diff --git a/lib/librte_sched/rte_sched.c b/lib/librte_sched/rte_sched.c index 58

Re: [dpdk-dev] [PATCH] examples/bond: wait for slaves to become active

2018-11-28 Thread Chas Williams
On 11/28/2018 08:48 AM, Radu Nicolau wrote: Hi On 11/28/2018 11:08 AM, Ferruh Yigit wrote: On 11/14/2018 12:19 PM, Radu Nicolau wrote: Do not start the packet processing threads until all configured slaves become active. Hi Radu, What happens if packet processing threads started before a

[dpdk-dev] [PATCH v2 2/2] doc: improve release notes template

2018-11-28 Thread Thomas Monjalon
Some comments are added to encourage classifying API and ABI changes with scope labels. The section "removed items" is moved just after the "new features". The sample for shared library versions is replaced with foo/bar names. Signed-off-by: Thomas Monjalon Reviewed-by: Ferruh Yigit Acked-by:

[dpdk-dev] [PATCH v2 1/2] version: 19.02-rc0

2018-11-28 Thread Thomas Monjalon
Start version numbering for a new release cycle, and introduce a template file for release notes. The release notes comments are updated to mandate a scope label for API and ABI changes. Signed-off-by: Thomas Monjalon Reviewed-by: Ferruh Yigit Acked-by: John McNamara --- doc/guides/rel_notes/

Re: [dpdk-dev] [dpdk-users] IPV4/IPV6 TCP/UDP Pseudo Header Checksum APIs

2018-11-28 Thread Hyong Youb Kim
On Tue, Oct 23, 2018 at 11:01:58AM +0200, Olivier Matz wrote: > Hi, > > You are right, the current code does not take IP or IPv6 options > in account. I think this should be considered as a bug. > > The fix for IPv4 is not complicated, I did a quick draft here: > http://git.droids-corp.org/?p=dpd

Re: [dpdk-dev] [RFC 2/3] tqs: add thread quiescent state library

2018-11-28 Thread Ananyev, Konstantin
> > > > Hi Honnappa, > Thank you for reviewing the patch, appreciate your comments. > > > > > > + > > > +/* Allocate a new TQS variable with the name *name* in memory. */ > > > +struct rte_tqs * __rte_experimental rte_tqs_alloc(const char *name, > > > +int socket_id, uint64_t lcore_mask) { > > > +

[dpdk-dev] [PATCH] ethdev: add function to print a flow

2018-11-28 Thread Asaf Penso
Flow contains the following information: port id, attributes, patterns and actions. The function rte_flow_print prints all above information. It can be used for debugging purposes to validate the behavior of different dpdk applications. Example: running testpmd with the following flow create: flo

Re: [dpdk-dev] [PATCH] examples/bond: wait for slaves to become active

2018-11-28 Thread Radu Nicolau
On 11/28/2018 2:28 PM, Chas Williams wrote: On 11/28/2018 08:48 AM, Radu Nicolau wrote: Hi On 11/28/2018 11:08 AM, Ferruh Yigit wrote: On 11/14/2018 12:19 PM, Radu Nicolau wrote: Do not start the packet processing threads until all configured slaves become active. Hi Radu, What happen

Re: [dpdk-dev] [PATCH] examples/bond: wait for slaves to become active

2018-11-28 Thread Chas Williams
On 11/28/18 11:04 AM, Radu Nicolau wrote: On 11/28/2018 2:28 PM, Chas Williams wrote: On 11/28/2018 08:48 AM, Radu Nicolau wrote: Hi On 11/28/2018 11:08 AM, Ferruh Yigit wrote: On 11/14/2018 12:19 PM, Radu Nicolau wrote: Do not start the packet processing threads until all configured

Re: [dpdk-dev] Application used for DSW event_dev performance testing

2018-11-28 Thread Mattias Rönnblom
On 2018-11-27 23:33, Venky Venkatesh wrote: As you can see the DSW overhead dominates the scene and very little real work is getting done. Is there some configuration or tuning to be done to get the sort of performance you are seeing with multiple cores? I can't explain the behavior you are s

Re: [dpdk-dev] Application used for DSW event_dev performance testing

2018-11-28 Thread Mattias Rönnblom
On 2018-11-28 17:55, Mattias Rönnblom wrote: Attached is a small DSW throughput test program, that I thought might help you to find the issue. Looks like DPDK's mailman didn't like my attachment. -- /* * dswtp - A simple DSW eventdev scheduler throughput demo program. * * SPDX-License-Iden

Re: [dpdk-dev] [PATCH v10 7/9] net/virtio: add virtio send command packed queue support

2018-11-28 Thread Maxime Coquelin
On 11/2/18 10:07 AM, Jens Freimann wrote: Use packed virtqueue format when reading and writing descriptors to/from the ring. Signed-off-by: Jens Freimann --- drivers/net/virtio/virtio_ethdev.c | 90 ++ 1 file changed, 90 insertions(+) diff --git a/drivers/net/

Re: [dpdk-dev] [PATCH] net/nfp: add multiprocess support

2018-11-28 Thread Ferruh Yigit
On 11/28/2018 11:32 AM, Alejandro Lucero wrote: > This patch introduces changes for supporting multiprocess support. > This is trivial for VFs but comes with some limitations for the PF. > > Due to restrictions when using NFP CPP interface, just one secondary > process is supported by now for the

Re: [dpdk-dev] [PATCH] net/nfp: add multiprocess support

2018-11-28 Thread Alejandro Lucero
On Wed, Nov 28, 2018 at 5:28 PM Ferruh Yigit wrote: > On 11/28/2018 11:32 AM, Alejandro Lucero wrote: > > This patch introduces changes for supporting multiprocess support. > > This is trivial for VFs but comes with some limitations for the PF. > > > > Due to restrictions when using NFP CPP inter

Re: [dpdk-dev] Question about telemetry on 18.11 release

2018-11-28 Thread Rami Rosen
HI, Hideyuki, >Are there any reason why accompanied document does NOT exit? >> (if you know the reason why) exit->exist; I don't know. > Is it possible to contribute such a sample application by my side? > (Just idea, I need permission from my boss though..) > You may try, DPDK is an Open Source

Re: [dpdk-dev] [PATCH 1/2] devtools: report the incorrect section when complaining

2018-11-28 Thread Neil Horman
On Wed, Nov 28, 2018 at 02:07:25PM +0100, David Marchand wrote: > On Wed, Nov 28, 2018 at 1:35 PM Neil Horman wrote: > > > On Wed, Nov 28, 2018 at 11:28:52AM +0100, David Marchand wrote: > > > It does not hurt reporting the incriminated section. > > > > > > Before: > > > ERROR: symbol rte_meter_t

Re: [dpdk-dev] [RFC 0/3] tqs: add thread quiescent state library

2018-11-28 Thread Stephen Hemminger
On Wed, 28 Nov 2018 05:31:56 + Honnappa Nagarahalli wrote: > > > Mixed feelings about this one. > > > > > > Love to see RCU used for more things since it is much better than > > > reader/writer locks for many applications. But hate to see DPDK > > > reinventing every other library and not reu

[dpdk-dev] [PATCH] net/bonding: fix double fetch for active_slave_count

2018-11-28 Thread Haifeng Lin
1. when memcpy slaves the internals->active_slave_count 1 2. return internals->active_slave_count is 2 3. the slaves[1] would be a random invalid value --- drivers/net/bonding/rte_eth_bond_api.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/drivers/net/bonding/rte_eth

[dpdk-dev] [PATCH] net/bonding: fix double fetch for active_slave_count

2018-11-28 Thread Haifeng Lin
1. when memcpy slaves the internals->active_slave_count 1 2. return internals->active_slave_count is 2 3. the slaves[1] would be a random invalid value Signed-off-by: Haifeng Lin --- drivers/net/bonding/rte_eth_bond_api.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git

[dpdk-dev] [PATCH] ethdev: support double precision RED queue weight

2018-11-28 Thread Nikhil Rao
RED queue weight is currently specified as a negated log of 2. Add support for RED queue weight to be specified in double precision and TM capability flags for double precision and negated log2 RED queue weight support. Signed-off-by: Nikhil Rao --- lib/librte_ethdev/rte_tm.h | 41

[dpdk-dev] [Bug 112] dpdk-18.05 not allowing to create bond interface with name "lan_bond"

2018-11-28 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=112 Bug ID: 112 Summary: dpdk-18.05 not allowing to create bond interface with name "lan_bond" Product: DPDK Version: 18.05 Hardware: All OS: Linux Status: C

Re: [dpdk-dev] [PATCH] ethdev: support double precision RED queue weight

2018-11-28 Thread Stephen Hemminger
On Thu, 29 Nov 2018 11:24:42 +0530 Nikhil Rao wrote: > RED queue weight is currently specified as a negated log of 2. > > Add support for RED queue weight to be specified in double precision > and TM capability flags for double precision and negated log2 > RED queue weight support. > > Signed-o

[dpdk-dev] [PATCH] bus/vdev: add warning for duplicated vdev name

2018-11-28 Thread Yahui Cao
If duplicated vdev name is detected, print out a warning message. Signed-off-by: Yahui Cao --- drivers/bus/vdev/vdev.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/bus/vdev/vdev.c b/drivers/bus/vdev/vdev.c index 9c66bdc78..ff2db7d3f 100644 --- a/drivers/bus/vdev/vdev.c +++ b/dri

[dpdk-dev] [PATCH v3] test: reduce test duration for efd autotest

2018-11-28 Thread Jananee Parthasarathy
Reduced test time for efd_autotest. Key length is updated, invoke times of random function is reduced. Different value is updated for each hash key entry. Signed-off-by: Jananee Parthasarathy --- v3: reverted the simple_key to uint8_t type v2: value updated for each hash key --- test/test/test_e