Re: [dpdk-dev] [PATCH] app/pdump: exits once primary app exited

2019-04-26 Thread Suanming . Mou
On 2019/4/25 23:51, Varghese, Vipin wrote: Hi, snipped @@ -847,6 +847,10 @@ struct parse_val { pdump_rxtx(pt->rx_ring, pt->rx_vdev_id, &pt->stats); if (pt->dir & RTE_PDUMP_FLAG_TX) pdump_rxtx(pt->tx_ring, pt->tx_vdev_id, &pt->stats); + + /* Once p

Re: [dpdk-dev] [EXT] Re: [PATCH 5/6] crypto/dpaa_sec: fix session qp attach/detach

2019-04-26 Thread Hemant Agrawal
Hi Kevin, Thanks we will look into it. Regards, Hemant > -Original Message- > From: Kevin Traynor > Sent: Thursday, April 25, 2019 11:13 PM > To: Akhil Goyal ; dev@dpdk.org > Cc: Hemant Agrawal ; sta...@dpdk.org > Subject: [EXT] Re: [dpdk-dev] [PATCH 5/6] crypto/dpaa_sec: fix sess

Re: [dpdk-dev] [PATCH] eventdev: fix control flow issues

2019-04-26 Thread Jerin Jacob Kollanukkaran
> -Original Message- > From: dev On Behalf Of Abhinandan Gujjar > Sent: Wednesday, April 24, 2019 10:05 PM > To: jerin.ja...@caviumnetworks.com; dev@dpdk.org > Cc: narender.vang...@intel.com; abhinandan.guj...@intel.com; > john.mcnam...@intel.com > Subject: [dpdk-dev] [PATCH] eventdev: fix

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

2019-04-26 Thread Tom Barbette
@Andrew I applied your comments. Thanks. On 2019-04-25 20:28, Wiles, Keith wrote: What is a raw clock value? It took me a bit to find that it is in nano-seconds need to document that point. It is not in nanosecond, it has no units. Finding the relation between the device clock and the real t

Re: [dpdk-dev] [PATCH v8 1/4] rcu: add RCU library supporting QSBR mechanism

2019-04-26 Thread Jerin Jacob Kollanukkaran
> -Original Message- > From: dev On Behalf Of Honnappa Nagarahalli > Sent: Friday, April 26, 2019 10:10 AM > To: konstantin.anan...@intel.com; step...@networkplumber.org; > paul...@linux.ibm.com; marko.kovace...@intel.com; dev@dpdk.org > Cc: honnappa.nagaraha...@arm.com; gavin...@arm.com;

Re: [dpdk-dev] Editor Config

2019-04-26 Thread Burakov, Anatoly
On 25-Apr-19 6:19 PM, Stephen Hemminger wrote: Systemd uses this and it looks like a useful addition to the DPDK source base. Especially since we now have Windows developers. https://editorconfig.org/ I have suggested using clang-format in the past, but this would be a good step too. -- Th

Re: [dpdk-dev] Editor Config

2019-04-26 Thread Andrew Rybchenko
On 4/25/19 8:19 PM, Stephen Hemminger wrote: Systemd uses this and it looks like a useful addition to the DPDK source base. Especially since we now have Windows developers. https://editorconfig.org/ +1

[dpdk-dev] [PATCH v3] examples/vm_power_manager: fix buffer overrun

2019-04-26 Thread David Hunt
The freqs array in freq_info struct has RTE_MAX_LCORE_FREQS elements, yet the code can attempt to look at the index at RTE_MAX_LCORE, which may be greater than RTE_MAX_LCORE_FREQS. Fix to limit index to RTE_MAX_LCORE_FREQS. Fixes: d26c18c93260 ("examples/vm_power: cpu frequency in host") Coverity

[dpdk-dev] [PATCH v1] examples/vm_power_manager: fix string null termination

2019-04-26 Thread David Hunt
coverity complains about a null-termination after a read, so we terminate conditionally on whether idx is within the buffer or at the end of the buffer. Coverity issue: 337680 Fixes: a63504a90f ("examples/power: add JSON string handling") CC: sta...@dpdk.org Signed-off-by: David Hunt --- example

[dpdk-dev] [PATCH v1] examples/vm_power_manager: fix overflowed return value

2019-04-26 Thread David Hunt
Coverity complains about the return of a value that may possibly overflow because of a multiply. Limit the value so it cannot overflow. Coverity issue: 337677 Fixes: 4b1a631b8a ("examples/vm_power: add oob monitoring functions") CC: sta...@dpdk.org Signed-off-by: David Hunt --- examples/vm_power

Re: [dpdk-dev] [PATCH v5] kni: add IOVA va support for kni

2019-04-26 Thread Burakov, Anatoly
On 22-Apr-19 7:15 AM, kirankum...@marvell.com wrote: From: Kiran Kumar K With current KNI implementation kernel module will work only in IOVA=PA mode. This patch will add support for kernel module to work with IOVA=VA mode. The idea is to get the physical address from iova address using api io

[dpdk-dev] [PATCH v3] vhost: support inflight share memory protocol feature

2019-04-26 Thread Li Lin
From: lilin24 This patch introduces two new messages VHOST_USER_GET_INFLIGHT_FD and VHOST_USER_SET_INFLIGHT_FD to support transferring a shared buffer between qemu and backend. Firstly, qemu uses VHOST_USER_GET_INFLIGHT_FD to get the shared buffer from backend. Then qemu should send it back thro

[dpdk-dev] [PATCH] ipc: fix send error handling

2019-04-26 Thread Anatoly Burakov
According to manpage, ENOBUFS error indicates that either the input or the output queue is full. This should be considered an error, but it is treated as an "ignore" condition. Fix the code to report an error instead. Fixes: bacaa2754017 ("eal: add channel for multi-process communication") Cc: sta

Re: [dpdk-dev] [PATCH v1] examples/vm_power_manager: fix overflowed return value

2019-04-26 Thread Burakov, Anatoly
On 26-Apr-19 9:44 AM, David Hunt wrote: Coverity complains about the return of a value that may possibly overflow because of a multiply. Limit the value so it cannot overflow. Coverity issue: 337677 Fixes: 4b1a631b8a ("examples/vm_power: add oob monitoring functions") CC: sta...@dpdk.org Signed-

Re: [dpdk-dev] [PATCH v1] examples/vm_power_manager: fix string null termination

2019-04-26 Thread Burakov, Anatoly
On 26-Apr-19 9:43 AM, David Hunt wrote: coverity complains about a null-termination after a read, so we terminate conditionally on whether idx is within the buffer or at the end of the buffer. Coverity issue: 337680 Fixes: a63504a90f ("examples/power: add JSON string handling") CC: sta...@dpdk.o

Re: [dpdk-dev] [PATCH] app/pdump: exits once primary app exited

2019-04-26 Thread Varghese, Vipin
Hi, Looks like something in email format setting is affecting the style. Please find my replies below snipped As per the current suggested code flow check is added to while loop in function `dump_packets'. Thanks for the reply. Since want to make it clean, the code was here. However, it see

Re: [dpdk-dev] [PATCH] app/pdump: exits once primary app exited

2019-04-26 Thread Varghese, Vipin
I will leave this suggestion open for comments from the maintainer. snipped Hi, Looks like something in email format setting is affecting the style. Please find my replies below snipped As per the current suggested code flow check is added to while loop in function `dump_packets'. Thanks f

Re: [dpdk-dev] [PATCH v1] examples/vm_power_manager: fix overflowed return value

2019-04-26 Thread Hunt, David
Hi Anatoly, On 26/4/2019 11:29 AM, Burakov, Anatoly wrote: On 26-Apr-19 9:44 AM, David Hunt wrote: Coverity complains about the return of a value that may possibly overflow because of a multiply. Limit the value so it cannot overflow. Coverity issue: 337677 Fixes: 4b1a631b8a ("examples/vm_powe

Re: [dpdk-dev] [PATCH v1] examples/vm_power_manager: fix string null termination

2019-04-26 Thread Hunt, David
Hi Anatoly, On 26/4/2019 11:33 AM, Burakov, Anatoly wrote: On 26-Apr-19 9:43 AM, David Hunt wrote: coverity complains about a null-termination after a read, so we terminate conditionally on whether idx is within the buffer or at the end of the buffer. Coverity issue: 337680 Fixes: a63504a90f (

[dpdk-dev] [PATCH v2] examples/vm_power_manager: fix string null termination

2019-04-26 Thread David Hunt
coverity complains about a null-termination after a read, so we terminate after exiting the do-while loop. The position is conditional on whether idx is within the buffer or at the end of the buffer. Coverity issue: 337680 Fixes: a63504a90f ("examples/power: add JSON string handling") CC: sta...@d

Re: [dpdk-dev] [PATCH v2] examples/vm_power_manager: fix string null termination

2019-04-26 Thread Burakov, Anatoly
On 26-Apr-19 12:24 PM, David Hunt wrote: coverity complains about a null-termination after a read, so we terminate after exiting the do-while loop. The position is conditional on whether idx is within the buffer or at the end of the buffer. Coverity issue: 337680 Fixes: a63504a90f ("examples/pow

Re: [dpdk-dev] [PATCH v1] examples/vm_power_manager: fix overflowed return value

2019-04-26 Thread Burakov, Anatoly
On 26-Apr-19 12:14 PM, Hunt, David wrote: Hi Anatoly, On 26/4/2019 11:29 AM, Burakov, Anatoly wrote: On 26-Apr-19 9:44 AM, David Hunt wrote: Coverity complains about the return of a value that may possibly overflow because of a multiply. Limit the value so it cannot overflow. Coverity issue:

Re: [dpdk-dev] [PATCH v8 0/4] lib/rcu: add RCU library supporting QSBR mechanism

2019-04-26 Thread Ananyev, Konstantin
> -Original Message- > From: Honnappa Nagarahalli [mailto:honnappa.nagaraha...@arm.com] > Sent: Friday, April 26, 2019 5:40 AM > To: Ananyev, Konstantin ; > step...@networkplumber.org; paul...@linux.ibm.com; Kovacevic, Marko > ; dev@dpdk.org > Cc: honnappa.nagaraha...@arm.com; gavin...@

Re: [dpdk-dev] [PATCH] app/pdump: exits once primary app exited

2019-04-26 Thread Suanming . Mou
On 2019/4/26 18:56, Varghese, Vipin wrote: I will leave this suggestion open for comments from the maintainer. Hi, Thanks for your suggestion. I have also tried to add an slave core to monitor the primary status this afternoon.  It works. I doubt if it can be add an new option as you sug

Re: [dpdk-dev] [PATCH] net/ixgbe: 10GBASE-T SFP+ copper support

2019-04-26 Thread Ananyev, Konstantin
> > > From: Ido Goshen > > > > > > 10BASE-T SFP+ copper transceivers become cheaper and popular So far > > > those were blocked by ixgbe as “unsupported”. > > > e.g. > > > eth_ixgbe_dev_init(): Unsupported SFP+ Module > > > eth_ixgbe_dev_init(): Hardware Initialization Failure: -19 > > > E

Re: [dpdk-dev] [PATCH v2] examples/vm_power_manager: fix string null termination

2019-04-26 Thread Bruce Richardson
On Fri, Apr 26, 2019 at 12:56:08PM +0100, Burakov, Anatoly wrote: > On 26-Apr-19 12:24 PM, David Hunt wrote: > > coverity complains about a null-termination after a read, > > so we terminate after exiting the do-while loop. The position > > is conditional on whether idx is within the buffer or at t

Re: [dpdk-dev] [PATCH v1] examples/vm_power_manager: fix overflowed return value

2019-04-26 Thread Burakov, Anatoly
On 26-Apr-19 1:03 PM, Burakov, Anatoly wrote: On 26-Apr-19 12:14 PM, Hunt, David wrote: Hi Anatoly, On 26/4/2019 11:29 AM, Burakov, Anatoly wrote: On 26-Apr-19 9:44 AM, David Hunt wrote: Coverity complains about the return of a value that may possibly overflow because of a multiply. Limit the

Re: [dpdk-dev] [PATCH v2] examples/vm_power_manager: fix string null termination

2019-04-26 Thread Burakov, Anatoly
On 26-Apr-19 1:31 PM, Bruce Richardson wrote: On Fri, Apr 26, 2019 at 12:56:08PM +0100, Burakov, Anatoly wrote: On 26-Apr-19 12:24 PM, David Hunt wrote: coverity complains about a null-termination after a read, so we terminate after exiting the do-while loop. The position is conditional on whet

Re: [dpdk-dev] Editor Config

2019-04-26 Thread Wiles, Keith
> On Apr 26, 2019, at 3:13 AM, Burakov, Anatoly > wrote: > > On 25-Apr-19 6:19 PM, Stephen Hemminger wrote: >> Systemd uses this and it looks like a useful addition to the DPDK source >> base. Especially since we now have Windows developers. >> https://editorconfig.org/ > > I have suggested

Re: [dpdk-dev] [PATCH] app/pdump: exits once primary app exited

2019-04-26 Thread Burakov, Anatoly
On 26-Apr-19 1:08 PM, Suanming.Mou wrote: On 2019/4/26 18:56, Varghese, Vipin wrote: I will leave this suggestion open for comments from the maintainer. Hi, Thanks for your suggestion. I have also tried to add an slave core to monitor the primary status this afternoon.  It works. I doubt

Re: [dpdk-dev] [PATCH v1] examples/vm_power_manager: fix overflowed return value

2019-04-26 Thread Hunt, David
On 26/4/2019 11:29 AM, Burakov, Anatoly wrote: On 26-Apr-19 9:44 AM, David Hunt wrote: Coverity complains about the return of a value that may possibly overflow because of a multiply. Limit the value so it cannot overflow. Coverity issue: 337677 Fixes: 4b1a631b8a ("examples/vm_power: add oob

[dpdk-dev] [PATCH v3] examples/vm_power_manager: fix string null termination

2019-04-26 Thread David Hunt
coverity complains about a null-termination after a read, so we terminate once we exit the do-while read loop. Coverity issue: 337680 Fixes: a63504a90f ("examples/power: add JSON string handling") CC: sta...@dpdk.org Signed-off-by: David Hunt --- v2: Move null termination outside of do-while. v

Re: [dpdk-dev] [PATCH v3] examples/vm_power_manager: fix string null termination

2019-04-26 Thread Burakov, Anatoly
On 26-Apr-19 3:04 PM, David Hunt wrote: coverity complains about a null-termination after a read, so we terminate once we exit the do-while read loop. Coverity issue: 337680 Fixes: a63504a90f ("examples/power: add JSON string handling") CC: sta...@dpdk.org Signed-off-by: David Hunt --- v2: Mo

Re: [dpdk-dev] [PATCH] app/pdump: exits once primary app exited

2019-04-26 Thread Suanming . Mou
On 2019/4/26 21:46, Burakov, Anatoly wrote: On 26-Apr-19 1:08 PM, Suanming.Mou wrote: On 2019/4/26 18:56, Varghese, Vipin wrote: I will leave this suggestion open for comments from the maintainer. Hi, Thanks for your suggestion. I have also tried to add an slave core to monitor the prim

Re: [dpdk-dev] [PATCH] app/pdump: exits once primary app exited

2019-04-26 Thread Burakov, Anatoly
On 26-Apr-19 3:32 PM, Suanming.Mou wrote: On 2019/4/26 21:46, Burakov, Anatoly wrote: On 26-Apr-19 1:08 PM, Suanming.Mou wrote: On 2019/4/26 18:56, Varghese, Vipin wrote: I will leave this suggestion open for comments from the maintainer. Hi, Thanks for your suggestion. I have also tried

[dpdk-dev] [PATCH] timer: fix reset/stop in callback for new API

2019-04-26 Thread Erik Gabriel Carrillo
The rte_timer_alt_manage function should track which is the running timer and whether or not it was updated by a callback in the priv_timer structure that corresponds to the running lcore, so that restarting or stopping the timer from the callback works correctly. Fixes: c0749f7096c7 ("timer: allo

Re: [dpdk-dev] [PATCH] app/pdump: exits once primary app exited

2019-04-26 Thread Suanming . Mou
On 2019/4/26 22:39, Burakov, Anatoly wrote: On 26-Apr-19 3:32 PM, Suanming.Mou wrote: On 2019/4/26 21:46, Burakov, Anatoly wrote: On 26-Apr-19 1:08 PM, Suanming.Mou wrote: On 2019/4/26 18:56, Varghese, Vipin wrote: I will leave this suggestion open for comments from the maintainer. Hi,

Re: [dpdk-dev] [PATCH] app/pdump: exits once primary app exited

2019-04-26 Thread Burakov, Anatoly
On 26-Apr-19 3:49 PM, Suanming.Mou wrote: On 2019/4/26 22:39, Burakov, Anatoly wrote: On 26-Apr-19 3:32 PM, Suanming.Mou wrote: On 2019/4/26 21:46, Burakov, Anatoly wrote: On 26-Apr-19 1:08 PM, Suanming.Mou wrote: On 2019/4/26 18:56, Varghese, Vipin wrote: I will leave this suggestion op

Re: [dpdk-dev] [PATCH] app/test: enhance meson test run for FreeBSD and Linux

2019-04-26 Thread Pattan, Reshma
> -Original Message- > From: Babu Radhakrishnan, AgalyaX > Sent: Wednesday, March 6, 2019 9:20 AM > To: dev@dpdk.org > Cc: Pattan, Reshma ; Richardson, Bruce > ; Babu Radhakrishnan, AgalyaX > > Subject: [PATCH] app/test: enhance meson test run for FreeBSD and Linux > > From: Agalya Bab

Re: [dpdk-dev] [PATCH 3/4] devtools/test-meson-builds: add testing of pkg-config file

2019-04-26 Thread Bruce Richardson
On Wed, Apr 24, 2019 at 02:37:58PM +0100, Luca Boccassi wrote: > On Wed, 2019-04-24 at 13:31 +0100, Bruce Richardson wrote: > > On Wed, Apr 24, 2019 at 12:02:24PM +0100, Luca Boccassi wrote: > > > On Wed, 2019-04-24 at 11:41 +0100, Bruce Richardson wrote: > > > > On Wed, Apr 24, 2019 at 10:22:04AM

[dpdk-dev] [PATCH v2 1/2] doc: fix spelling errors reported by aspell

2019-04-26 Thread John McNamara
Fix spelling errors in the guide docs. Signed-off-by: John McNamara --- doc/guides/compressdevs/overview.rst | 2 +- doc/guides/contributing/patches.rst| 2 +- doc/guides/cryptodevs/aesni_mb.rst | 2 +- doc/guides/cryptodevs/overview.rst

[dpdk-dev] [PATCH v2 2/2] doc: fix spelling errors reported by aspell

2019-04-26 Thread John McNamara
Fix spelling errors in the doxygen docs. Signed-off-by: John McNamara --- drivers/common/qat/qat_adf/icp_qat_fw_mmp_ids.h| 2 +- drivers/common/qat/qat_adf/icp_qat_fw_pke.h| 2 +- drivers/event/opdl/opdl_ring.h | 8 drivers/net/i40e/rte_pmd_i40e.h

[dpdk-dev] [PATCH v6 0/1] New software event timer adapter

2019-04-26 Thread Erik Gabriel Carrillo
This patch introduces a new version of the event timer adapter software PMD [1]. In the original design, timer event producer lcores in the primary and secondary processes enqueued event timers into a ring, and a service core in the primary process dequeued them and processed them further. To impr

[dpdk-dev] [PATCH v6 1/1] eventdev: add new software event timer adapter

2019-04-26 Thread Erik Gabriel Carrillo
This patch introduces a new version of the event timer adapter software PMD. In the original design, timer event producer lcores in the primary and secondary processes enqueued event timers into a ring, and a service core in the primary process dequeued them and processed them further. To improve

Re: [dpdk-dev] [PATCH 3/4] devtools/test-meson-builds: add testing of pkg-config file

2019-04-26 Thread Luca Boccassi
On Fri, 2019-04-26 at 15:56 +0100, Bruce Richardson wrote: > On Wed, Apr 24, 2019 at 02:37:58PM +0100, Luca Boccassi wrote: > > On Wed, 2019-04-24 at 13:31 +0100, Bruce Richardson wrote: > > > On Wed, Apr 24, 2019 at 12:02:24PM +0100, Luca Boccassi wrote: > > > > On Wed, 2019-04-24 at 11:41 +0100,

Re: [dpdk-dev] [PATCH 0/4] add testing of libdpdk pkg-config file

2019-04-26 Thread Luca Boccassi
On Tue, 2019-04-23 at 23:06 +0100, Bruce Richardson wrote: > As part of the meson build, a pkg-config file for libdpdk is created, > which > allows apps to be compiled and linked against DPDK by taking the > cflags and > lib parameter from pkgconfig. The example app makefiles have been > reworked >

Re: [dpdk-dev] [PATCH 0/4] add testing of libdpdk pkg-config file

2019-04-26 Thread Bruce Richardson
On Fri, Apr 26, 2019 at 05:11:18PM +0100, Luca Boccassi wrote: > On Tue, 2019-04-23 at 23:06 +0100, Bruce Richardson wrote: > > As part of the meson build, a pkg-config file for libdpdk is created, > > which > > allows apps to be compiled and linked against DPDK by taking the > > cflags and > > lib

[dpdk-dev] [PATCH] vfio: expand non-viable group error message

2019-04-26 Thread Kevin Traynor
"VFIO group is not viable" error message is correct but not very user friendly for something which can usually be easily rectified. Add some additional text to give more of a hint. Signed-off-by: Kevin Traynor --- lib/librte_eal/linux/eal/eal_vfio.c | 4 +++- 1 file changed, 3 insertions(+), 1

Re: [dpdk-dev] [PATCH] vfio: expand non-viable group error message

2019-04-26 Thread Burakov, Anatoly
On 26-Apr-19 5:22 PM, Kevin Traynor wrote: "VFIO group is not viable" error message is correct but not very user friendly for something which can usually be easily rectified. Add some additional text to give more of a hint. Signed-off-by: Kevin Traynor --- lib/librte_eal/linux/eal/eal_vfio.c

[dpdk-dev] [PATCH v4] eventdev: add experimental tag back

2019-04-26 Thread Nikhil Rao
Add the experimental tag back to the Rx event adapter callback, the Rx event callback register and the Rx event adapter statistics retrieval functions due to an API change to be proposed in a future patch. This patch also adds the experimental tag to these function definitions and adds the functio

[dpdk-dev] [PATCH v2 1/6] examples/l3fwd: fix compile on FreeBSD

2019-04-26 Thread Bruce Richardson
On freebsd we need to include sys/socket.h to get the definition of AF_INET in order to compile. Fixes: d5ceea4ab160 ("examples/l3fwd: format IP addresses for printing") Signed-off-by: Bruce Richardson --- examples/l3fwd/l3fwd_lpm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/l

[dpdk-dev] [PATCH v2 2/6] examples: install examples as part of ninja install

2019-04-26 Thread Bruce Richardson
When we install dpdk onto a system, we want to put the examples into the /usr/share/dpdk (or /usr/local/share) directory for reference. Signed-off-by: Bruce Richardson Acked-by: Luca Boccassi --- examples/meson.build | 16 1 file changed, 12 insertions(+), 4 deletions(-) diff

[dpdk-dev] [PATCH v2 0/6] add testing of libdpdk pkg-config file

2019-04-26 Thread Bruce Richardson
As part of the meson build, a pkg-config file for libdpdk is created, which allows apps to be compiled and linked against DPDK by taking the cflags and lib parameter from pkgconfig. The example app makefiles have been reworked to take account of this support, but the build of them against the .pc f

[dpdk-dev] [PATCH v2 4/6] devtools/test-meson-builds: add testing of pkg-config file

2019-04-26 Thread Bruce Richardson
The pkg-config file generated as part of the build of DPDK should allow applications to be built with an installed DPDK. We can test this as part of the build by doing an install of DPDK to a temporary directory within the build folder, and by then compiling up a few sample apps using make working

[dpdk-dev] [PATCH v2 3/6] build: fix ninja install on FreeBSD

2019-04-26 Thread Bruce Richardson
The post-install script to symlink the PMDs from their own PMD directory to the regular lib directory (so they would be found by ld at runtime) was using the "-r" flag to ln to create relative symlinks. This flag is unsupported by ln on FreeBSD causing the ninja install step to fail. Reworking the

[dpdk-dev] [PATCH v2 5/6] build: add libbsd to pkg-config file if enabled

2019-04-26 Thread Bruce Richardson
If libbsd is enabled in DPDK, the strlcpy and strlcat functions in rte_string_fns.h redirect to the varients in libbsd, only using the fallbacks if it is not enabled. Therefore, if libbsd is enabled, it needs to be called out as a DPDK dependency in the pkgconfig file. To ensure that we don't have

[dpdk-dev] [PATCH v2 6/6] examples: remove auto-generation of examples list

2019-04-26 Thread Bruce Richardson
The examples/meson.build file scanned the filesystem to find all examples to build (for examples=all option) and install. However, using run_command and scanning the filesystem prevented ninja from properly detecting the addition or removal of any examples - one had to recreate the build directory

[dpdk-dev] [PATCH] doc: update references to removed function

2019-04-26 Thread Erik Gabriel Carrillo
Remove references to the (deleted) rte_event_port_enqueue_depth() function in the Doxygen comments for rte_event_enqueue_burst() and friends, and replace with references to rte_event_port_attr_get(). Fixes: 78ffab961155 ("eventdev: add port attribute function") Signed-off-by: Erik Gabriel Carrill

Re: [dpdk-dev] [PATCH v4] eventdev: add experimental tag back

2019-04-26 Thread Kevin Traynor
On 26/04/2019 17:33, Nikhil Rao wrote: > Add the experimental tag back to the Rx event adapter callback, > the Rx event callback register and the Rx event adapter statistics > retrieval functions due to an API change to be proposed in a > future patch. > > This patch also adds the experimental tag

Re: [dpdk-dev] [PATCH v6 1/1] eventdev: add new software event timer adapter

2019-04-26 Thread Honnappa Nagarahalli
Hi Erik, A quick question. > -Original Message- > From: dev On Behalf Of Erik Gabriel Carrillo > Sent: Friday, April 26, 2019 10:14 AM > To: jerin.ja...@caviumnetworks.com > Cc: mattias.ronnb...@ericsson.com; pbhagavat...@caviumnetworks.com; > dev@dpdk.org > Subject: [dpdk-dev] [P

Re: [dpdk-dev] [PATCH v6 1/1] eventdev: add new software event timer adapter

2019-04-26 Thread Carrillo, Erik G
> -Original Message- > From: Honnappa Nagarahalli [mailto:honnappa.nagaraha...@arm.com] > Sent: Friday, April 26, 2019 1:51 PM > To: Carrillo, Erik G ; > jerin.ja...@caviumnetworks.com > Cc: mattias.ronnb...@ericsson.com; pbhagavat...@caviumnetworks.com; > dev@dpdk.org; Honnappa Nagaraha

[dpdk-dev] [PATCH] crypto/qat: fix NULL cipher algo for non 8-byte multiple

2019-04-26 Thread Fiona Trahe
NULL cipher algo of 4-byte multiple and other sizes caused firmware hang due to use of wrong mode. Changed from ECB mode to CTR mode to fix. Fixes: 98f060891615 ("crypto/qat: add symmetric session file") cc: sta...@dpdk.org Signed-off-by: Fiona Trahe --- drivers/crypto/qat/qat_sym_session.c | 3

[dpdk-dev] [PATCH] test/crypto: added NULL algo tests to loop test mechanism

2019-04-26 Thread Fiona Trahe
Added NULL algo tests into loop test mechanism used by block cipher tests as easier to extend there. Included chain, cipher-only and auth-only use-cases. Extended to cover out-of-place use-cases and use-cases where data length is not an 8-byte multiple. Signed-off-by: Fiona Trahe --- app/test/te

[dpdk-dev] [PATCH] net/bonding: fix test bonding MAC assignment

2019-04-26 Thread kkanas
From: Krzysztof Kanas Fix test_set_bonded_port_initialization_mac_assignment so that it works after 're run' test_link_bonding. Fixes: f2ef6f21ee2e ("bond: fix mac assignment to slaves") Cc: declan.dohe...@intel.com Signed-off-by: Krzysztof Kanas --- app/test/test_link_bonding.c | 53

[dpdk-dev] [PATCH] net/mlx5: inherit master link settings for representors

2019-04-26 Thread Viacheslav Ovsiienko
There are some physical link settings can be queried from Ethernet devices: link status, link speed, speed capabilities, duplex mode, etc. These setting do not make a lot of sense for representors due to missing physical link. The new kernel drivers dropped query for link settings for representors

[dpdk-dev] [PATCH v3 0/2] net/mlx5: share Memory Regions for multiport devices

2019-04-26 Thread Viacheslav Ovsiienko
The patches [1] and [2] are both related to Memory Regions sharing and their applying order matters, this series just combines ones. The multiport Infiniband device support was introduced [3]. All active ports, belonging to the same Infiniband device use the single shared Infiniband context of tha

[dpdk-dev] [PATCH v3 2/2] net/mlx5: update memory event callback for shared context

2019-04-26 Thread Viacheslav Ovsiienko
Mellanox mlx5 PMD implements the list of devices to process the memory free events to reflect the actual memory state to Memory Regions. Because this list contains the devices and devices may share the same context the callback routine may be called multiple times with the same parameter, that is n

[dpdk-dev] [PATCH v3 1/2] net/mlx5: share Memory Regions for multiport device

2019-04-26 Thread Viacheslav Ovsiienko
The multiport Infiniband device support was introduced [1]. All active ports, belonging to the same Infiniband device use the single shared Infiniband context of that device and share the resources: - QPs are created within shared context - Verbs flows are also created with specifying port inde

Re: [dpdk-dev] [PATCH] vfio: expand non-viable group error message

2019-04-26 Thread Rami Rosen
> On 26-Apr-19 5:22 PM, Kevin Traynor wrote: > > "VFIO group is not viable" error message is correct > > but not very user friendly for something which can > > usually be easily rectified. > > > > Add some additional text to give more of a hint. > > > > Signed-off-by: Kevin Traynor > > --- Acked