Re: [dpdk-dev] Compilation of MLX5 driver

2018-05-31 Thread Nitin Katiyar
Hi, It has following files: arch.h ib.h kern-abi.h mlx4dv.h mlx5dv.h opcode.h sa.h sa-kern-abi.h verbs.h I tried with both MLNX_OFED_LINUX-4.2-1.0.0.0 and MLNX_OFED_LINUX-4.2-1.2.0.0-ubuntu14.04-x86_64 Regards, Nitin -Original Message- From: Shahaf Shuler [mailto:shah...@mella

[dpdk-dev] [PATCH 1/2] log: remove useless intermediate buffer

2018-05-31 Thread David Marchand
Rather than copy the log message, we can use a precision in the format string given to syslog. Fixes: af75078fece3 ("first public release") Signed-off-by: David Marchand --- lib/librte_eal/linuxapp/eal/eal_log.c | 13 + 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/li

[dpdk-dev] [PATCH 2/2] cmdline: remove useless intermediate buffer

2018-05-31 Thread David Marchand
Rather than copy the string, we can use a precision in the format string given to printf. Signed-off-by: David Marchand --- lib/librte_cmdline/cmdline_parse.c | 9 ++--- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/lib/librte_cmdline/cmdline_parse.c b/lib/librte_cmdline/cmd

Re: [dpdk-dev] Compilation of MLX5 driver

2018-05-31 Thread Nélio Laranjeiro
On Thu, May 31, 2018 at 07:01:17AM +, Nitin Katiyar wrote: > Hi, > It has following files: > > arch.h ib.h kern-abi.h mlx4dv.h mlx5dv.h opcode.h sa.h > sa-kern-abi.h verbs.h > > I tried with both MLNX_OFED_LINUX-4.2-1.0.0.0 and > MLNX_OFED_LINUX-4.2-1.2.0.0-ubuntu14.04-x86_64 Did you

[dpdk-dev] [PATCH v2] net/ixgbe: fix crash on detach

2018-05-31 Thread Pablo de Lara
When detaching a port bound to ixgbe PMD, if the port does not have any VFs, *vfinfo is not set and there is a NULL dereference attempt, when calling rte_eth_switch_domain_free(), which expects VFs to be used, causing a segmentation fault. Steps to reproduce: ./testpmd -- -i testpmd> port stop al

Re: [dpdk-dev] Compilation of MLX5 driver

2018-05-31 Thread Nitin Katiyar
Yes,I installed it using --dpdk --upstream-libs. What is the way forward now? Regards, Nitin -Original Message- From: Nélio Laranjeiro [mailto:nelio.laranje...@6wind.com] Sent: Thursday, May 31, 2018 1:36 PM To: Nitin Katiyar Cc: Shahaf Shuler ; dev@dpdk.org Subject: Re: [dpdk-dev] Comp

[dpdk-dev] [Bug 54] i40e port link status no updated for interrupt mode

2018-05-31 Thread bugzilla
https://dpdk.org/tracker/show_bug.cgi?id=54 Fan Zhang (roy.fan.zh...@intel.com) changed: What|Removed |Added Status|CONFIRMED |RESOLVED Componen

[dpdk-dev] [PATCH v6 0/3] Improve zero-length memzone allocation

2018-05-31 Thread Anatoly Burakov
This patchset does two things. First, it enables reserving memzones of zero-length that are IOVA-contiguous. Second, it fixes a long-standing race condition in reserving zero-length memzones, where malloc heap is not locked between stats collection and reservation, and will instead allocate biggest

[dpdk-dev] [PATCH v6 2/3] malloc: allow reserving biggest element

2018-05-31 Thread Anatoly Burakov
Add an internal-only function to allocate biggest element from the heap. Nominally, it supports SOCKET_ID_ANY as its socket argument, but it's essentially useless because other sockets will only be allocated from if the entire heap on current or specified socket is busy. Still, asking to reserve a

[dpdk-dev] [PATCH v6 1/3] malloc: add finding biggest free IOVA-contiguous element

2018-05-31 Thread Anatoly Burakov
Adding internal-only function to find biggest free IOVA-contiguous malloc element. This is not exposed to external API. Signed-off-by: Anatoly Burakov Acked-by: Remy Horton Acked-by: Shreyansh Jain --- Notes: v6: - Patch was postponed to 18.08 but i forgot to add deprecation noti

[dpdk-dev] [PATCH v6 3/3] memzone: improve zero-length memzone reserve

2018-05-31 Thread Anatoly Burakov
Currently, reserving zero-length memzones is done by looking at malloc statistics, and reserving biggest sized element found in those statistics. This has two issues. First, there is a race condition. The heap is unlocked between the time we check stats, and the time we reserve malloc element for

[dpdk-dev] [PATCH v3] net/ixgbe: fix crash on detach

2018-05-31 Thread Pablo de Lara
When detaching a port bound to ixgbe PMD, if the port does not have any VFs, *vfinfo is not set and there is a NULL dereference attempt, when calling rte_eth_switch_domain_free(), which expects VFs to be used, causing a segmentation fault. Steps to reproduce: ./testpmd -- -i testpmd> port stop al

Re: [dpdk-dev] Compilation of MLX5 driver

2018-05-31 Thread Nélio Laranjeiro
On Thu, May 31, 2018 at 09:14:03AM +, Nitin Katiyar wrote: > Yes,I installed it using --dpdk --upstream-libs. What is the way > forward now? In v17.05 MLX5 PMD is still relying on libibverbs and libmlx5, the way Those options you used are necessary to select in their package the installation o

Re: [dpdk-dev] [PATCH v2 0/2] Vhost: unitfy receive paths

2018-05-31 Thread Wang, Zhihong
> -Original Message- > From: Maxime Coquelin [mailto:maxime.coque...@redhat.com] > Sent: Tuesday, May 29, 2018 5:45 PM > To: dev@dpdk.org; Bie, Tiwei ; Wang, Zhihong > > Cc: Maxime Coquelin > Subject: [PATCH v2 0/2] Vhost: unitfy receive paths > > Hi, > > This second version fixes th

[dpdk-dev] i40evf: Problem with the statistics

2018-05-31 Thread Mridula V Gangadharan
Hi, I am testing packet drops scenario by setting the MTU size. My setup have i40evf driver. I set the dpdk interface's MTU size to 1800. I am sending 100 packets of size 1918 each. I am expecting the drop counter to increment. rte_eth_stats_get() returns i.packets with number of packets I sent. T

[dpdk-dev] [RFC v2 0/6] Remove IPC threads

2018-05-31 Thread Anatoly Burakov
As previously discussed [1], IPC threads need to be removed and their workload moved to interrupt thread. The transition is complete as far as Linux support is concerned, however since there is no interrupt thread on FreeBSD, this patchset effectively disables IPC on FreeBSD for now (hence it stil

[dpdk-dev] [RFC v2 1/6] eal/linux: use glibc malloc in alarm

2018-05-31 Thread Anatoly Burakov
From: Jianfeng Tan We will reply on alarm API for async IPC request as following patch indicates. rte_malloc could require async IPC request. To avoid such chicken or the egg causality dilemma, we change to use glibc malloc in alarm implimentation. Signed-off-by: Jianfeng Tan Signed-off-by: An

[dpdk-dev] [RFC v2 3/6] eal/linux: use glibc malloc in interrupt handling

2018-05-31 Thread Anatoly Burakov
From: Jianfeng Tan We will rely on interrupt thread to implement IPC; and IPC initialization is in very early stage, when memory subsystem is not initialized yet. So we change to use glibc malloc/free. Signed-off-by: Jianfeng Tan Signed-off-by: Anatoly Burakov --- lib/librte_eal/linuxapp/eal/

[dpdk-dev] [RFC v2 6/6] ipc: remove main IPC thread

2018-05-31 Thread Anatoly Burakov
Previously, to handle requests from peer(s), or replies for a request (sync or async) by itself, a dedicated IPC thread was set up. Now that every other piece of the puzzle is in place, we can get rid of the IPC thread, and move waiting for IPC messages entirely into the interrupt thread. Signed-

[dpdk-dev] [RFC v2 4/6] eal: bring forward init of interrupt handling

2018-05-31 Thread Anatoly Burakov
From: Jianfeng Tan IPC will reply on interrupt handling, so we move forward the init of interrupt handling. Signed-off-by: Jianfeng Tan Signed-off-by: Anatoly Burakov --- lib/librte_eal/linuxapp/eal/eal.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/librt

[dpdk-dev] [RFC v2 2/6] ipc: remove IPC thread for async requests

2018-05-31 Thread Anatoly Burakov
Previously, we were using two IPC threads - one to handle messages and synchronous requests, and another to handle asynchronous requests. To handle replies for an async request, rte_mp_handle woke up the rte_mp_handle_async thread to process through pthread_cond variable. Change it to handle async

[dpdk-dev] [RFC v2 5/6] eal: add IPC type for interrupt thread

2018-05-31 Thread Anatoly Burakov
From: Jianfeng Tan We are going to merge IPC into interrupt thread. This patch adds IPC type for interrupt thread. Signed-off-by: Jianfeng Tan Signed-off-by: Anatoly Burakov --- Notes: RFC->RFCv2: - Fixed typo in test app .../common/include/rte_eal_interrupts.h | 1 + lib/lib

[dpdk-dev] 16.11.7 (LTS) patches review and test

2018-05-31 Thread Luca Boccassi
Hi all, Here is a list of patches targeted for LTS release 16.11.7. Please help review and test. The planned date for the final release is Monday, June the 11th. Before that, please shout if anyone has objections with these patches being applied. Also for the companies committed to running regres

[dpdk-dev] Regression tests for stable releases from companies involved in DPDK

2018-05-31 Thread Luca Boccassi
Hello all, At this morning's release meeting (minutes coming soon from John), we briefly discussed the state of the regression testing for stable releases and agreed we need to formalise the process. At the moment we have a firm commitment from Intel and Mellanox to test all stable branches (and

[dpdk-dev] [RFC 0/3] Make device mapping more reliable

2018-05-31 Thread Anatoly Burakov
Currently, memory for device maps is allocated ad-hoc, by calculating end of VA space allocated for hugepages and crossing fingers in hopes that those addresses will be free in primary and secondary processes. This leads to situations such as this: EAL: Detected 88 lcore(s) EAL: Detected 2 NUMA no

[dpdk-dev] [RFC 2/3] mem: add device memory reserve/free API

2018-05-31 Thread Anatoly Burakov
In order for hotplug in multiprocess to work reliably, we will need a common shared memory area that is guaranteed to be accessible to all processes at all times. This is accomplished by pre-reserving memory that will be used for device mappings at startup, and managing it at runtime. Two new API

[dpdk-dev] [RFC 1/3] fbarray: allow zero-sized elements

2018-05-31 Thread Anatoly Burakov
We need to keep usage of our memory area indexed, but we don't actually need to store any data - we need just the indexing capabilities of fbarray. Yet, it currently disallows zero-sized elements. Fix that by removing the check for zero-sized elements - the rest will work correctly already. Signed

[dpdk-dev] [RFC 3/3] bus/pci: use the new device memory API for BAR mapping

2018-05-31 Thread Anatoly Burakov
Adjust PCI infrastructure to reserve device memory through the new device memory API. Any hotplug event will reserve memory, any hot-unplug event will release memory back to the system. This allows for more reliable PCI mappings in secondary processes, and will be crucial to support multiprocess h

[dpdk-dev] i40evf: Problem with the statistics

2018-05-31 Thread Mridula V Gangadharan
Hi, I am testing packet drops scenario by setting the MTU size.  My setup have i40evf driver. I set the dpdk interface's MTU size to 1800.  I am sending 100 packets of size 1918 each. I am expecting the drop counter to increment. rte_eth_stats_get() returns i.packets with number of packets I sent.

[dpdk-dev] [Bug 58] cppcheck static analyzer warnings

2018-05-31 Thread bugzilla
https://dpdk.org/tracker/show_bug.cgi?id=58 Bug ID: 58 Summary: cppcheck static analyzer warnings Product: DPDK Version: 18.05 Hardware: All OS: All Status: CONFIRMED Severity: normal Priority: N

Re: [dpdk-dev] cppcheck on dpdk

2018-05-31 Thread Ferruh Yigit
On 5/16/2018 1:41 PM, Ferruh Yigit wrote: > Today after listening Colin's Static Analysis talk, I run cppcheck on > v18.05-rc4 > code and it revealed some issues, sharing here for anyone to interested in > fixing them. At least I encourage to check maintainers to check their own > pieces. > > It

Re: [dpdk-dev] Compilation of MLX5 driver

2018-05-31 Thread Nitin Katiyar
Thanks Shahaf, it worked after removing the options you specified. Regards, Nitin -Original Message- From: Nélio Laranjeiro [mailto:nelio.laranje...@6wind.com] Sent: Thursday, May 31, 2018 3:23 PM To: Nitin Katiyar Cc: Shahaf Shuler ; dev@dpdk.org Subject: Re: [dpdk-dev] Compilation of

[dpdk-dev] [PATCH] ethdev: force offloading API rules

2018-05-31 Thread Ferruh Yigit
The error path was disabled in previous release to let apps to be more flexible. But this release they are enabled, applications have to obey offload API rules otherwise they will get errors from following APIs: rte_eth_dev_configure rte_eth_rx_queue_setup rte_eth_tx_queue_setup Signed-off-by: Fe

Re: [dpdk-dev] [PATCH v2 0/2] Vhost: unitfy receive paths

2018-05-31 Thread Maxime Coquelin
On 05/31/2018 11:55 AM, Wang, Zhihong wrote: -Original Message- From: Maxime Coquelin [mailto:maxime.coque...@redhat.com] Sent: Tuesday, May 29, 2018 5:45 PM To: dev@dpdk.org; Bie, Tiwei ; Wang, Zhihong Cc: Maxime Coquelin Subject: [PATCH v2 0/2] Vhost: unitfy receive paths Hi,

Re: [dpdk-dev] [PATCH 1/2] librte_ip_frag: add function to delete expired entries

2018-05-31 Thread Ananyev, Konstantin
Hi Alex, > -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Alex Kiselev > Sent: Wednesday, May 16, 2018 12:04 PM > To: dev@dpdk.org; Burakov, Anatoly > Subject: [dpdk-dev] [PATCH 1/2] librte_ip_frag: add function to delete > expired entries > > add new function

Re: [dpdk-dev] [PATCH 2/2] librte_ip_frag: add mbuf counter

2018-05-31 Thread Ananyev, Konstantin
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Alex Kiselev > Sent: Wednesday, May 16, 2018 12:04 PM > To: dev@dpdk.org; Burakov, Anatoly > Subject: [dpdk-dev] [PATCH 2/2] librte_ip_frag: add mbuf counter > > add new function rte_frag_table_mbuf_count() tha

[dpdk-dev] [PATCH] ethdev: force RSS offload rules again

2018-05-31 Thread Ferruh Yigit
PMDs should provide supported RSS hash functions via dev_info.flow_type_rss_offloads variable. There is a check in ethdev if requested RSS hash function is supported by PMD or not. This check has been relaxed in previous release to not return an error when a non supported has function requested [1

Re: [dpdk-dev] [PATCH v2 1/2] net/tap: calculate checksums of multi segs packets

2018-05-31 Thread Ferruh Yigit
On 4/22/2018 12:30 PM, Ophir Munk wrote: > Prior to this commit IP/UDP/TCP checksum offload calculations > were skipped in case of a multi segments packet. > This commit enables TAP checksum calculations for multi segments > packets. > The only restriction is that the first segment must contain > h

Re: [dpdk-dev] [PATCH v2 1/2] net/tap: calculate checksums of multi segs packets

2018-05-31 Thread Ferruh Yigit
On 5/31/2018 2:52 PM, Ferruh Yigit wrote: > On 4/22/2018 12:30 PM, Ophir Munk wrote: >> Prior to this commit IP/UDP/TCP checksum offload calculations >> were skipped in case of a multi segments packet. >> This commit enables TAP checksum calculations for multi segments >> packets. >> The only restr

[dpdk-dev] [PATCH 0/2] Improve service stop support

2018-05-31 Thread Gage Eads
Existing service functions allow us to stop a service, but doing so doesn't guarantee that the service has finished running on a service core. This patch set introduces a function, rte_service_may_be_active(), to check whether a stopped service is truly stopped. This is needed for flows that modif

[dpdk-dev] [PATCH 1/2] service: add mechanism for quiescing a service

2018-05-31 Thread Gage Eads
Existing service functions allow us to stop a service, but doing so doesn't guarantee that the service has finished running on a service core. This commit introduces rte_service_may_be_active(), which returns whether the service may be executing on one or more lcores currently, or definitely is not

[dpdk-dev] [PATCH 2/2] event/sw: support device stop flush callback

2018-05-31 Thread Gage Eads
This commit also adds a flush callback test to the sw eventdev's selftest suite. Signed-off-by: Gage Eads --- drivers/event/sw/sw_evdev.c | 114 ++- drivers/event/sw/sw_evdev_selftest.c | 81 - 2 files changed, 192 insertions(+),

Re: [dpdk-dev] [RFC] net/mvpp2: implement dynamic logging

2018-05-31 Thread Ferruh Yigit
On 4/26/2018 11:44 AM, Tomasz Duszynski wrote: > Hello Stephen, > > A few nits on this inline. Hi Tomasz, This was an RFC targeting your driver. Can you re-spin the patch with your suggested updates? > > On Wed, Apr 25, 2018 at 09:44:54AM -0700, Stephen Hemminger wrote: >> All DPDK drivers sh

Re: [dpdk-dev] [PATCH] net/bonding: update link status on slave add

2018-05-31 Thread Ferruh Yigit
On 5/9/2018 1:06 PM, Radu Nicolau wrote: > Add a call to rte_eth_link_get_nowait on every slave to update > the internal link status struct. Otherwise slave add will fail > for mode 4 if the ports are all stopped but only one of them checked. > > Signed-off-by: Radu Nicolau Hi Radu, Can you ple

Re: [dpdk-dev] [PATCH 2/2] librte_ip_frag: add mbuf counter

2018-05-31 Thread Alex Kiselev
Hi Konstantin. >> -Original Message- >> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Alex Kiselev >> Sent: Wednesday, May 16, 2018 12:04 PM >> To: dev@dpdk.org; Burakov, Anatoly >> Subject: [dpdk-dev] [PATCH 2/2] librte_ip_frag: add mbuf counter >> add new function rte_frag_table

[dpdk-dev] [RFC 01/10] eal: add --no-shared-files option

2018-05-31 Thread Anatoly Burakov
This command-line option will cause DPDK to not create any shared files at runtime, including any shared configuration or hugetlbfs files. This is useful for debug purposes, as well as for certain use cases like containers. Currently, this option does nothing. Signed-off-by: Anatoly Burakov ---

[dpdk-dev] [RFC 00/10] Support running DPDK without hugetlbfs mountpoint

2018-05-31 Thread Anatoly Burakov
This patchset takes old debug options "--huge-unlink" and "--no-shconf" and replaces them both with a new option, "--no-shared-files". This is a special mode which will disable support for secondary processes, but which will cause DPDK to not create any shared files while running - neither hugepage

[dpdk-dev] [RFC 05/10] mem: add support for no-shared-files mode

2018-05-31 Thread Anatoly Burakov
Unlink hugepages after creating them, to honor the no shared files mode. We cannot resize non-existing files, so make single file segments explicitly unsupported. Signed-off-by: Anatoly Burakov --- lib/librte_eal/linuxapp/eal/eal.c | 9 + lib/librte_eal/linuxapp/eal/eal_memallo

[dpdk-dev] [RFC 06/10] ipc: add support for no-shared-files mode

2018-05-31 Thread Anatoly Burakov
IPC is an inter-process communication mechanism. Since no secondaries can ever be expected to run in no shared files mode, IPC will be useless, so do not enable it in the first place. In the interests of API usage convenience, we will still allow registering callbacks, but obviously they won't ever

[dpdk-dev] [RFC 09/10] eal: do not create runtime dir in no-shared-files mode

2018-05-31 Thread Anatoly Burakov
Now that the rest of the EAL is adjusted to not create any shared files, prevent runtime directory from ever being created. Signed-off-by: Anatoly Burakov --- lib/librte_eal/bsdapp/eal/eal.c | 3 ++- lib/librte_eal/linuxapp/eal/eal.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) d

[dpdk-dev] [RFC 02/10] eal: make --no-shconf an alias for --no-shared-files

2018-05-31 Thread Anatoly Burakov
Move all functionality associated with --no-shconf to --no-shared-files, and make the former an alias for the latter. Signed-off-by: Anatoly Burakov --- lib/librte_eal/bsdapp/eal/eal.c| 4 ++-- lib/librte_eal/common/eal_common_memory.c | 3 ++- lib/librte_eal/common/eal_common_opt

[dpdk-dev] [RFC 07/10] eal: add support for no-shared-files for hugepage info

2018-05-31 Thread Anatoly Burakov
Do not create any shared hugepage size info files if we were asked to not create any shared files. Signed-off-by: Anatoly Burakov --- lib/librte_eal/bsdapp/eal/eal_hugepage_info.c | 4 lib/librte_eal/linuxapp/eal/eal_hugepage_info.c | 4 2 files changed, 8 insertions(+) diff --git a

[dpdk-dev] [RFC 08/10] eal: add support for no-shared-files in hugepage data file

2018-05-31 Thread Anatoly Burakov
Do not create a shared hugepage data file if we were asked to not create any shared files. Signed-off-by: Anatoly Burakov --- lib/librte_eal/linuxapp/eal/eal_memory.c | 13 - 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/lib/librte_eal/linuxapp/eal/eal_memory.c b/lib

[dpdk-dev] [RFC 04/10] fbarray: support no-shared-files mode

2018-05-31 Thread Anatoly Burakov
When using --no-shared-files option, the expectation is that no multiprocess will be supported as no shared files are created. However, fbarray still creates some shared files that prevent multiple processes with the same prefix from starting. Fix this by avoiding creating shared files whenever no

[dpdk-dev] [RFC 10/10] mem: enable memfd-based hugepage allocation

2018-05-31 Thread Anatoly Burakov
This will supplant no-shared-files mode to use memfd-based hugetlbfs allocation instead of hugetlbfs mounts. Due to memfd only being supported kernel 4.14+ and glibc 2.27+, a compile-time check is performed along with runtime checks. Signed-off-by: Anatoly Burakov --- .../linuxapp/eal/eal_hugepa

[dpdk-dev] [PATCH] app/testpmd: fix missing count action fields

2018-05-31 Thread Nelio Laranjeiro
COUNT action has been modified and has several fields not addressable though testpmd. In addition, as those fields are not definable testpmd is providing an empty configuration which is undefined. Fixes: fb8fd96d4251 ("ethdev: add shared counter to flow API") Cc: declan.dohe...@intel.com Cc: sta.

[dpdk-dev] [RFC 03/10] eal: make --huge-unlink an alias for --no-shared-files

2018-05-31 Thread Anatoly Burakov
Move all functionality associated with --huge-unlink command-line option to --no-shared-files, and make it an alias. Since the new command-line option does things other than just unlinking hugepage files after they've been created, it is no longer incompatible with --no-huge option, so removing tha

[dpdk-dev] [PATCH v2] net/bonding: fix update link status on slave add

2018-05-31 Thread Radu Nicolau
Add a call to rte_eth_link_get_nowait on every slave to update the internal link status struct. Otherwise slave add will fail for mode 4 if the ports are all stopped but only one of them checked. Fixes: b77d21cc2364 ("ethdev: add link status get/set helper functions") Bugzilla entry: https://dpdk.

Re: [dpdk-dev] [PATCH 1/2] librte_ip_frag: add function to delete expired entries

2018-05-31 Thread Alex Kiselev
Hi Konstantin. > Hi Alex, >> -Original Message- >> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Alex Kiselev >> Sent: Wednesday, May 16, 2018 12:04 PM >> To: dev@dpdk.org; Burakov, Anatoly >> Subject: [dpdk-dev] [PATCH 1/2] librte_ip_frag: add function to delete >> expired entri

Re: [dpdk-dev] [PATCH v1 01/24] net/ena: update ena_com to the newer version

2018-05-31 Thread Ferruh Yigit
On 5/9/2018 1:45 PM, Michal Krawczyk wrote: > ena_com is the HAL provided by the vendor and it shouldn't be modified > by the driver developers. > > The PMD and platform file was adjusted for the new version of the > ena_com: > * Do not use deprecated meta descriptor fields > * Add empty A

[dpdk-dev] [PATCH] hash: validate hash bucket entries while compiling

2018-05-31 Thread Honnappa Nagarahalli
Validate RTE_HASH_BUCKET_ENTRIES during compilation instead of run time. Signed-off-by: Honnappa Nagarahalli Reviewed-by: Gavin Hu --- lib/librte_eal/common/include/rte_common.h | 5 + lib/librte_hash/rte_cuckoo_hash.c | 1 - lib/librte_hash/rte_cuckoo_hash.h | 4 3 f

Re: [dpdk-dev] [PATCH v2] net/bonding: fix update link status on slave add

2018-05-31 Thread Ferruh Yigit
On 5/31/2018 3:34 PM, Radu Nicolau wrote: I can see you just prefix "fix" to the title without updating it :) What about following one: "net/bonding: fix slave add for mode 4" ? > Add a call to rte_eth_link_get_nowait on every slave to update > the internal link status struct. Otherwise slave ad

[dpdk-dev] [PATCH] eal: move runtime config file to new location

2018-05-31 Thread Anatoly Burakov
As per deprecation notice [1], move DPDK runtime config to default DPDK runtime data location. Also, remove the deprecation notice. [1] http://dpdk.org/dev/patchwork/patch/40418/ Signed-off-by: Anatoly Burakov --- doc/guides/rel_notes/deprecation.rst | 10 -- lib/librte_eal/common/eal

Re: [dpdk-dev] [PATCH v2] net/bonding: fix update link status on slave add

2018-05-31 Thread Ferruh Yigit
On 5/31/2018 4:34 PM, Ferruh Yigit wrote: > On 5/31/2018 3:34 PM, Radu Nicolau wrote: > > I can see you just prefix "fix" to the title without updating it :) > > What about following one: > "net/bonding: fix slave add for mode 4" ? > >> Add a call to rte_eth_link_get_nowait on every slave to upd

Re: [dpdk-dev] [PATCH] net/tap: update tap index to unsgined

2018-05-31 Thread Ferruh Yigit
On 5/15/2018 1:36 PM, Wiles, Keith wrote: > > >> On May 12, 2018, at 1:30 AM, Vipin Varghese wrote: >> >> Updating the logic to reflect unsigned integer as index for TAP PMD. >> >> Signed-off-by: Vipin Varghese <...> > Acked by Keith Wiles Repeating ack with "-" to help patchwork: Acked-by:

[dpdk-dev] [PATCH] mem: mark pages as freeable on exit

2018-05-31 Thread Anatoly Burakov
When rte_eal_cleanup() is called, it is expected that DPDK will be able to release all of its memory back to the system. However, if pages are marked as unfreeable, the pages will not be released back. Fix this to mark all pages as freeable on calling rte_eal_cleanup(), but only do it for primary p

Re: [dpdk-dev] [PATCH v2] net/bonding: fix update link status on slave add

2018-05-31 Thread Radu Nicolau
On 5/31/2018 4:36 PM, Ferruh Yigit wrote: On 5/31/2018 4:34 PM, Ferruh Yigit wrote: On 5/31/2018 3:34 PM, Radu Nicolau wrote: I can see you just prefix "fix" to the title without updating it :) What about following one: "net/bonding: fix slave add for mode 4" ? Great, I'll use it for v3 :)

[dpdk-dev] [PATCH] test/test: properly clean up on exit

2018-05-31 Thread Anatoly Burakov
The test application didn't call rte_eal_cleanup() on exit, which caused leftover hugepages and memory leaks when running secondary processes. Fix this by calling rte_eal_cleanup() on exit. Signed-off-by: Anatoly Burakov --- test/test/test.c | 33 +++-- 1 file changed

[dpdk-dev] [PATCH v3] net/bonding: fix slave add for mode 4

2018-05-31 Thread Radu Nicolau
Add a call to rte_eth_link_get_nowait on every slave to update the internal link status struct. Otherwise slave add will fail for mode 4 if the ports are all stopped but only one of them checked. Fixes: b77d21cc2364 ("ethdev: add link status get/set helper functions") Bugzilla ID: 52 Signed-off-b

Re: [dpdk-dev] [PATCH] net/thunderx: add support for hardware first skip feature

2018-05-31 Thread Ferruh Yigit
On 5/30/2018 7:41 AM, Rakesh K wrote: > > > On Monday 28 May 2018 07:14 PM, Ferruh Yigit wrote: >> On 5/28/2018 1:57 PM, rkudurumalla wrote: >>> This feature is used to create a hole between HEADROOM >>> and actual data.Size of hole is specified in bytes as >>> module param to pmd >> >> Can't mbu

[dpdk-dev] [RFC] net/mlx4: add TSO support

2018-05-31 Thread Moti Haimovsky
TCP Segmentation Offload (TSO) is a feature which enables the TCP/IP network stack to delegate segmentation of a TCP segment to the NIC, thus saving compute resources. This RFC proposes to add support for TSO to the MLX4 PMD. Prerequisites: In order for the PMD to recognize the TSO capabilities o

Re: [dpdk-dev] [PATCH v2] net/bonding: fix update link status on slave add

2018-05-31 Thread Ferruh Yigit
On 5/31/2018 5:13 PM, Radu Nicolau wrote: > > > On 5/31/2018 4:36 PM, Ferruh Yigit wrote: >> On 5/31/2018 4:34 PM, Ferruh Yigit wrote: >>> On 5/31/2018 3:34 PM, Radu Nicolau wrote: >>> >>> I can see you just prefix "fix" to the title without updating it :) >>> >>> What about following one: >>> "n

Re: [dpdk-dev] [PATCH 1/2] net/qede: fix to update VF MTU

2018-05-31 Thread Ferruh Yigit
On 5/23/2018 12:16 AM, Rasesh Mody wrote: > This patch fixes VF MTU update to work without having to restart the > vport and there by not requiring port re-configuration. It adds a > VF MTU Update TLV to achieve the same. Firmware can handle VF MTU update > by just pausing the vport. > > Fixes: dd

Re: [dpdk-dev] [PATCH] net/cxgbe: report configured link auto-negotiation

2018-05-31 Thread Ferruh Yigit
On 5/23/2018 7:00 PM, Rahul Lakkireddy wrote: > Report current configured link auto-negotiation. Also initialize > rte_eth_link. > > Coverity issue: 280648 > Fixes: f5b3c7b29357 ("net/cxgbevf: fix inter-VM traffic when physical link > down") > > Signed-off-by: Rahul Lakkireddy Applied to dpdk-

[dpdk-dev] [PATCH] malloc: fix pad erasing

2018-05-31 Thread Anatoly Burakov
Previously, when joining adjacent free elements, we were erasing trailer and header, but did not erase the padding. Fix this by accounting for padding on erase, and do not erase padding twice by adjusting data pointer and data len to not include padding. Fixes: bb372060dad4 ("malloc: make heap a d

[dpdk-dev] DPDK Release Status Meeting 31/05/2018

2018-05-31 Thread Mcnamara, John
Minutes from the weekly DPDK Release Status Meeting. The DPDK Release Status Meeting is intended for DPDK Committers to discuss the status of the master tree and sub-trees, and for project managers to track progress or milestone dates. The meeting occurs on Thursdays at 8:30 UTC. If you wish to a

[dpdk-dev] [PATCH] eal: add option to limit memory allocation on sockets

2018-05-31 Thread Anatoly Burakov
Previously, it was possible to limit maximum amount of memory allowed for allocation by creating validator callbacks. Although a powerful tool, it's a bit of a hassle and requires modifying the application for it to work with DPDK example applications. Fix this by adding a new parameter "--socket-

Re: [dpdk-dev] [RFC] net/mlx4: add TSO support

2018-05-31 Thread Wiles, Keith
> On May 31, 2018, at 11:21 AM, Moti Haimovsky wrote: > > TCP Segmentation Offload (TSO) is a feature which enables the TCP/IP > network stack to delegate segmentation of a TCP segment to the NIC, > thus saving compute resources. > > This RFC proposes to add support for TSO to the MLX4 PMD. >

Re: [dpdk-dev] DPDK Release Status Meeting 31/05/2018

2018-05-31 Thread Wiles, Keith
> On May 31, 2018, at 12:18 PM, dev-boun...@dpdk.org wrote: > > Minutes from the weekly DPDK Release Status Meeting. > > The DPDK Release Status Meeting is intended for DPDK Committers to discuss > the status of the master tree and sub-trees, and for project managers to > track progress or mil

[dpdk-dev] [PATCH] doc/event: improve eventdev library documentation

2018-05-31 Thread Honnappa Nagarahalli
Add small amount of additional code, use consistent variable names across code blocks, change the image to represent queues and CPU cores intuitively. These help improve the eventdev library documentation. Signed-off-by: Honnappa Nagarahalli Reviewed-by: Gavin Hu --- doc/guides/prog_guide/event

[dpdk-dev] [PATCH] doc: add template release notes for 18.08

2018-05-31 Thread Thomas Monjalon
Add template release notes for DPDK 18.08 with inline comments and explanations of the various sections. Signed-off-by: Thomas Monjalon --- doc/guides/rel_notes/index.rst | 1 + doc/guides/rel_notes/release_18_08.rst | 192 + 2 files changed, 193 insertions(+)

Re: [dpdk-dev] [PATCH v3] net/bonding: fix slave add for mode 4

2018-05-31 Thread Chas Williams
It's not clear to me that the issue here is the bonding slave add. You can only add started PMDs. When a PMD dev start is complete, the PMD should have a valid link state and the link properties should be valid. A few of the PMDs are very good about this, particularly the ones with LSC interrupts

Re: [dpdk-dev] [dpdk-stable] Regression tests for stable releases from companies involved in DPDK

2018-05-31 Thread Christian Ehrhardt
On Thu, May 31, 2018 at 12:26 PM, Luca Boccassi wrote: > Hello all, > > At this morning's release meeting (minutes coming soon from John), we > briefly discussed the state of the regression testing for stable > releases and agreed we need to formalise the process. > > At the moment we have a firm