Re: [dpdk-dev] [PATCH 12/21] vhost: introduce guest IOVA to backend VA helper

2017-09-05 Thread Maxime Coquelin
On 09/05/2017 06:14 AM, Tiwei Bie wrote: On Thu, Aug 31, 2017 at 11:50:14AM +0200, Maxime Coquelin wrote: This patch introduces vhost_iova_to_vva() function to translate guest's IO virtual addresses to backend's virtual addresses. When IOMMU is enabled, the IOTLB cache is queried to get the t

Re: [dpdk-dev] [RFC PATCH 0/4] ethdev new offloads API

2017-09-05 Thread Jerin Jacob
-Original Message- > Date: Mon, 28 Aug 2017 12:57:13 +0200 > From: Thomas Monjalon > To: Jerin Jacob > Cc: dev@dpdk.org, Shahaf Shuler > Subject: Re: [dpdk-dev] [RFC PATCH 0/4] ethdev new offloads API > > 28/08/2017 07:00, Jerin Jacob: > > From: Shahaf Shuler > > > Friday, August 25, 2

Re: [dpdk-dev] [PATCH 08/21] vhost: iotlb: add pending miss request list and helpers

2017-09-05 Thread Tiwei Bie
On Thu, Aug 31, 2017 at 11:50:10AM +0200, Maxime Coquelin wrote: > In order to be able to handle other ports or queues while waiting > for an IOTLB miss reply, a pending list is created so that waiter > can return and restart later on with sending again a miss request. > > Signed-off-by: Maxime Co

Re: [dpdk-dev] [PATCH v2] librte_mbuf: modify port initialization value

2017-09-05 Thread Thomas Monjalon
05/09/2017 07:13, Zhiyong Yang: > In order to support more than 256 virtual ports, the field "port" > in rte_mbuf has been increased to 16 bits. The initialization/reset > value of the field "port" should be changed from 0xff to 0x > accordingly. This patch should be merged with the range incr

Re: [dpdk-dev] [PATCH 5/6] eal: remove xen dom0 support

2017-09-05 Thread Thomas Monjalon
05/09/2017 05:41, Tan, Jianfeng: > From: Richardson, Bruce > > > > Reading the contributors guide section on ABI, specifically > > http://dpdk.org/doc/guides/contributing/versioning.html#deprecating-an- > > entire-abi-version > > it seems like we should collapse down the versions to a single one >

Re: [dpdk-dev] [PATCH v3 0/2] Dynamically configure mempool handle

2017-09-05 Thread Olivier MATZ
On Mon, Sep 04, 2017 at 03:24:38PM +0100, Sergio Gonzalez Monroy wrote: > Hi Olivier, > > On 04/09/2017 14:34, Olivier MATZ wrote: > > Hi Sergio, > > > > On Mon, Sep 04, 2017 at 10:41:56AM +0100, Sergio Gonzalez Monroy wrote: > > > On 15/08/2017 09:07, Santosh Shukla wrote: > > > > * Application

Re: [dpdk-dev] [PATCH 4/4] ethdev: add helpers to move to the new offloads API

2017-09-05 Thread Thomas Monjalon
04/09/2017 16:18, Ananyev, Konstantin: > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > 04/09/2017 15:25, Ananyev, Konstantin: > > > Hi Shahaf, > > > > > > > +/** > > > > + * A conversion function from rxmode offloads API to rte_eth_rxq_conf > > > > + * offloads API. > > > > + */ > > > > +s

[dpdk-dev] [PATCH v2 0/5] Support TCP/IPv4, VxLAN and GRE GSO in DPDK

2017-09-05 Thread Jiayu Hu
Generic Segmentation Offload (GSO) is a SW technique to split large packets into small ones. Akin to TSO, GSO enables applications to operate on large packets, thus reducing per-packet processing overhead. To enable more flexibility to applications, DPDK GSO is implemented as a standalone library.

[dpdk-dev] [PATCH v2 2/5] gso: add TCP/IPv4 GSO support

2017-09-05 Thread Jiayu Hu
This patch adds GSO support for TCP/IPv4 packets. Supported packets may include a single VLAN tag. TCP/IPv4 GSO assumes that all input packets have correct checksums, and doesn't update checksums for output packets (the responsibility for this lies with the application). Additionally, TCP/IPv4 GSO

[dpdk-dev] [PATCH v2 3/5] gso: add VxLAN GSO support

2017-09-05 Thread Jiayu Hu
From: Mark Kavanagh This patch adds GSO support for VxLAN-encapsulated packets. Supported VxLAN packets must have an outer IPv4 header (prepended by an optional VLAN tag), and contain an inner TCP/IPv4 packet (with an optional inner VLAN tag). VxLAN GSO assumes that all input packets have correc

[dpdk-dev] [PATCH v2 1/5] gso: add Generic Segmentation Offload API framework

2017-09-05 Thread Jiayu Hu
Generic Segmentation Offload (GSO) is a SW technique to split large packets into small ones. Akin to TSO, GSO enables applications to operate on large packets, thus reducing per-packet processing overhead. To enable more flexibility to applications, DPDK GSO is implemented as a standalone library.

[dpdk-dev] [PATCH v2 5/5] app/testpmd: enable TCP/IPv4, VxLAN and GRE GSO

2017-09-05 Thread Jiayu Hu
This patch adds GSO support to the csum forwarding engine. Oversized packets transmitted over a GSO-enabled port will undergo segmentation (with the exception of packet-types unsupported by the GSO library). GSO support is disabled by default. GSO support may be toggled on a per-port basis, using

[dpdk-dev] [PATCH v2 4/5] gso: add GRE GSO support

2017-09-05 Thread Jiayu Hu
From: Mark Kavanagh This patch adds GSO support for GRE-tunneled packets. Supported GRE packets must contain an outer IPv4 header, and inner TCP/IPv4 headers. They may also contain a single VLAN tag. GRE GSO assumes that all input packets have correct checksums and doesn't update checksums for ou

Re: [dpdk-dev] [PATCH 5/6] eal: remove xen dom0 support

2017-09-05 Thread Tan, Jianfeng
> -Original Message- > From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Tuesday, September 5, 2017 3:31 PM > To: Tan, Jianfeng > Cc: Richardson, Bruce; dev@dpdk.org; xen-de...@lists.xenproject.org; > Mcnamara, John; joao.m.mart...@oracle.com; > jerin.ja...@caviumnetworks.com; sh

Re: [dpdk-dev] [PATCH 4/4] ethdev: add helpers to move to the new offloads API

2017-09-05 Thread Ananyev, Konstantin
> -Original Message- > From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Tuesday, September 5, 2017 8:48 AM > To: Ananyev, Konstantin > Cc: Shahaf Shuler ; dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH 4/4] ethdev: add helpers to move to the new > offloads API > > 04/09/2017 1

Re: [dpdk-dev] [PATCH v3 0/2] Dynamically configure mempool handle

2017-09-05 Thread Jerin Jacob
-Original Message- > Date: Tue, 5 Sep 2017 09:47:26 +0200 > From: Olivier MATZ > To: Sergio Gonzalez Monroy > CC: Santosh Shukla , dev@dpdk.org, > tho...@monjalon.net, jerin.ja...@caviumnetworks.com, > hemant.agra...@nxp.com > Subject: Re: [dpdk-dev] [PATCH v3 0/2] Dynamically configure

Re: [dpdk-dev] [PATCH 05/21] vhost: add support to slave requests channel

2017-09-05 Thread Maxime Coquelin
On 09/05/2017 06:19 AM, Tiwei Bie wrote: On Thu, Aug 31, 2017 at 11:50:07AM +0200, Maxime Coquelin wrote: Currently, only QEMU sends requests, the backend sends replies. In some cases, the backend may need to send requests to QEMU, like IOTLB miss events when IOMMU is supported. This patch in

Re: [dpdk-dev] [PATCH v2 00/15] devargs fixes

2017-09-05 Thread Gaëtan Rivet
Hi Ferruh, On Mon, Sep 04, 2017 at 05:04:57PM +0100, Ferruh Yigit wrote: > On 7/14/2017 10:11 PM, Jan Blunck wrote: > > The changes to enum rte_devtype that got merged into 17.08-rc1 are breaking > > API without prior notice. This series is reworking the rte_devargs changes > > in a way hopefully

Re: [dpdk-dev] [PATCH v2] crypto/openssl: add openssl path for cross compile

2017-09-05 Thread De Lara Guarch, Pablo
Hi Akhil, > -Original Message- > From: Akhil Goyal [mailto:akhil.go...@nxp.com] > Sent: Tuesday, August 29, 2017 8:02 AM > To: dev@dpdk.org; De Lara Guarch, Pablo > > Cc: hemant.agra...@nxp.com; Doherty, Declan > ; Akhil Goyal > Subject: [PATCH v2] crypto/openssl: add openssl path for cr

Re: [dpdk-dev] [PATCH 5/6] eal: remove xen dom0 support

2017-09-05 Thread Thomas Monjalon
05/09/2017 10:07, Tan, Jianfeng: > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > 05/09/2017 05:41, Tan, Jianfeng: > > > From: Richardson, Bruce > > > > > > > > Reading the contributors guide section on ABI, specifically > > > > http://dpdk.org/doc/guides/contributing/versioning.html#deprec

Re: [dpdk-dev] [PATCH v2] crypto/openssl: add openssl path for cross compile

2017-09-05 Thread Akhil Goyal
Hi Pablo, On 9/5/2017 1:52 PM, De Lara Guarch, Pablo wrote: Hi Akhil, -Original Message- From: Akhil Goyal [mailto:akhil.go...@nxp.com] Sent: Tuesday, August 29, 2017 8:02 AM To: dev@dpdk.org; De Lara Guarch, Pablo Cc: hemant.agra...@nxp.com; Doherty, Declan ; Akhil Goyal Subject: [PA

Re: [dpdk-dev] [PATCH v7 3/9] linuxapp/eal_pci: get iommu class

2017-09-05 Thread santosh
Hi Anatoly, On Monday 04 September 2017 08:38 PM, Burakov, Anatoly wrote: >> From: Santosh Shukla [mailto:santosh.shu...@caviumnetworks.com] >> Sent: Thursday, August 31, 2017 4:26 AM >> To: dev@dpdk.org >> Cc: tho...@monjalon.net; jerin.ja...@caviumnetworks.com; >> hemant.agra...@nxp.com; olivie

Re: [dpdk-dev] [PATCH 1/8] crypto/aesni_gcm: do not append digest

2017-09-05 Thread De Lara Guarch, Pablo
Hi Fan, > -Original Message- > From: Zhang, Roy Fan > Sent: Monday, September 4, 2017 11:08 AM > To: De Lara Guarch, Pablo > Cc: dev@dpdk.org; Zhang, Roy Fan > Subject: RE: [dpdk-dev] [PATCH 1/8] crypto/aesni_gcm: do not append > digest > > Hi Pablo, > > Thanks for the patch. It is ver

[dpdk-dev] [PATCH] service: fix service lcore stop function

2017-09-05 Thread Guduri Prathyusha
lcore_states store the state of the lcore. Fixing the invalid dereference of lcore_states with service number Fixes: 21698354c832 ("service: introduce service cores concept") Signed-off-by: Guduri Prathyusha --- lib/librte_eal/common/rte_service.c | 2 +- 1 file changed, 1 insertion(+), 1 delet

Re: [dpdk-dev] [PATCH v7 3/9] linuxapp/eal_pci: get iommu class

2017-09-05 Thread Burakov, Anatoly
> From: santosh [mailto:santosh.shu...@caviumnetworks.com] > Sent: Tuesday, September 5, 2017 9:48 AM > To: Burakov, Anatoly ; dev@dpdk.org > Cc: tho...@monjalon.net; jerin.ja...@caviumnetworks.com; > hemant.agra...@nxp.com; olivier.m...@6wind.com; > maxime.coque...@redhat.com; Gonzalez Monroy, Ser

Re: [dpdk-dev] [PATCH v7 3/9] linuxapp/eal_pci: get iommu class

2017-09-05 Thread santosh
Hi Anatoly, On Tuesday 05 September 2017 02:25 PM, Burakov, Anatoly wrote: >> From: santosh [mailto:santosh.shu...@caviumnetworks.com] >> Sent: Tuesday, September 5, 2017 9:48 AM >> To: Burakov, Anatoly ; dev@dpdk.org >> Cc: tho...@monjalon.net; jerin.ja...@caviumnetworks.com; >> hemant.agra...@n

Re: [dpdk-dev] [PATCH v7 3/9] linuxapp/eal_pci: get iommu class

2017-09-05 Thread Burakov, Anatoly
> From: Santosh Shukla [mailto:santosh.shu...@caviumnetworks.com] > Sent: Thursday, August 31, 2017 4:26 AM > To: dev@dpdk.org > Cc: tho...@monjalon.net; jerin.ja...@caviumnetworks.com; > hemant.agra...@nxp.com; olivier.m...@6wind.com; > maxime.coque...@redhat.com; Gonzalez Monroy, Sergio > ; Richa

[dpdk-dev] [PATCH] net/cxgbe: fix memory leak

2017-09-05 Thread Congwen Zhang
In function t4_wr_mbox_meat_timeout(), Dynamic memory stored in 'temp' not free when the functon return, It possible memory leak. Signed-off-by: Congwen Zhang --- drivers/net/cxgbe/base/t4_hw.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/cxgbe/base/t4_hw.c b/drivers/net/cx

Re: [dpdk-dev] [PATCH 3/3] net/mlx5: fix interrupt enable return value

2017-09-05 Thread Shachar Beiser
OK, I will fix to " commit e1016cb733 ("net/mlx5: fix Rx interrupts management") " > -Original Message- > From: Nélio Laranjeiro [mailto:nelio.laranje...@6wind.com] > Sent: Monday, September 4, 2017 6:24 PM > To: Shachar Beiser > Cc: dev@dpdk.org; Adrien Mazarguil ; > sta...@dpdk.org >

Re: [dpdk-dev] [PATCH 1/3] net/mlx5: replace network to host macros

2017-09-05 Thread Shachar Beiser
Does it OK to change it to : " Fixes: 1be17b6a5539 ("eal: introduce big and little endian types")" ? > -Original Message- > From: Nélio Laranjeiro [mailto:nelio.laranje...@6wind.com] > Sent: Monday, September 4, 2017 6:15 PM > To: Shachar Beiser > Cc: dev@dpdk.org; Adrien Mazarguil > Sub

[dpdk-dev] [PATCH v3] crypto/openssl: add openssl path for cross compile

2017-09-05 Thread Akhil Goyal
OPENSSL_PATH should be defined in case openssl driver is cross compiled Signed-off-by: Akhil Goyal --- changes in v3: make OPENSSL_PATH usage conditional if it is not set as suggested by Pablo doc/guides/cryptodevs/openssl.rst | 4 drivers/crypto/openssl/Makefile | 7 +++ mk/rte.app.m

Re: [dpdk-dev] [PATCH v2] net/bonding: support bifurcated driver in eal cli using --vdev

2017-09-05 Thread Thomas Monjalon
Ping - any news? 31/07/2017 16:34, Gaëtan Rivet: > Hi Gowrishankar, Declan, > > On Mon, Jul 10, 2017 at 12:02:24PM +0530, gowrishankar muthukrishnan wrote: > > On Friday 07 July 2017 09:08 PM, Declan Doherty wrote: > > >On 04/07/2017 12:57 PM, Gowrishankar wrote: > > >>From: Gowrishankar Muthukri

Re: [dpdk-dev] [PATCH v3] net/af_packet: support Tx scattered mbuf input

2017-09-05 Thread Ferruh Yigit
On 8/18/2017 3:10 PM, Ferruh Yigit wrote: > On 8/7/2017 10:45 AM, Wenfeng Liu wrote: >> Signed-off-by: Wenfeng Liu > > Reviewed-by: Ferruh Yigit Applied to dpdk-next-net/master, thanks.

Re: [dpdk-dev] [PATCH 03/21] vhost: protect virtio_net device struct

2017-09-05 Thread Maxime Coquelin
On 09/05/2017 06:45 AM, Tiwei Bie wrote: On Thu, Aug 31, 2017 at 11:50:05AM +0200, Maxime Coquelin wrote: virtio_net device might be accessed while being reallocated in case of NUMA awareness. This case might be theoretical, but it will be needed anyway to protect vrings pages against invalida

Re: [dpdk-dev] [PATCH v3] net/mlx5: support device removal event

2017-09-05 Thread Adrien Mazarguil
Hi Matan, On Mon, Sep 04, 2017 at 05:52:55PM +, Matan Azrad wrote: > Hi Adrien, > > > -Original Message- > > From: Adrien Mazarguil [mailto:adrien.mazarg...@6wind.com] > > Sent: Monday, September 4, 2017 6:33 PM > > To: Matan Azrad > > Cc: Nélio Laranjeiro ; dev@dpdk.org > > Subject:

[dpdk-dev] [PATCH] net/ixgbe: fix adding multiple mirror type in a rule

2017-09-05 Thread Wei Dai
mirror rule_type can be a bit OR result of multiple mirror type of a rule. Before the commit which introduced this issue, the code supported adding multiple mirror type in a rule. Fixes: 7ba29a76b196 ("ethdev: rename and extend the mirror type") Cc: sta...@dpdk.org Signed-off-by: Wei Dai --- dr

Re: [dpdk-dev] [PATCH] doc: add i40e firmware upgrade guide

2017-09-05 Thread Ferruh Yigit
On 9/4/2017 5:35 PM, Mcnamara, John wrote: > > >> -Original Message- >> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Qiming Yang >> Sent: Tuesday, August 15, 2017 4:27 AM >> To: dev@dpdk.org >> Cc: Wu, Jingjing ; Xing, Beilei >> ; Yang, Qiming >> Subject: [dpdk-dev] [PATCH] doc:

Re: [dpdk-dev] [PATCH v2] kni: fix build on SLE12 SP3

2017-09-05 Thread Nirmoy Das
On 09/04/2017 11:46 AM, Ferruh Yigit wrote: > On 8/29/2017 4:06 PM, Nirmoy Das wrote: >> compilation error: >> build/lib/librte_eal/linuxapp/kni/kni_net.c:215:5: error: >> ‘struct net_device’ has no member named ‘trans_start’ >> dev->trans_start = jiffies; >> >> Signed-off-by: Nirmoy Das >> --

[dpdk-dev] [PATCH] net/failsafe: stat support enhancement

2017-09-05 Thread Matan Azrad
The previous stats code returned only the current TX sub device stats. This enhancement extends it to return the sum of all sub devices stats with history of removed sub-devices. Dedicated stats accumulator saves the stat history of all sub device remove events. Each failsafe sub device contains

Re: [dpdk-dev] [PATCH v2 00/51] net/mlx4: trim and refactor entire PMD

2017-09-05 Thread Ferruh Yigit
On 9/1/2017 9:06 AM, Adrien Mazarguil wrote: > The main purpose of this large series is to relieve the mlx4 PMD from its > dependency on Mellanox OFED to instead rely on the standard rdma-core > package provided by Linux distributions. > > While compatibility with Mellanox OFED is preserved, all n

Re: [dpdk-dev] [PATCH 03/21] vhost: protect virtio_net device struct

2017-09-05 Thread Tiwei Bie
On Tue, Sep 05, 2017 at 11:24:14AM +0200, Maxime Coquelin wrote: > On 09/05/2017 06:45 AM, Tiwei Bie wrote: > > On Thu, Aug 31, 2017 at 11:50:05AM +0200, Maxime Coquelin wrote: > > > virtio_net device might be accessed while being reallocated > > > in case of NUMA awareness. This case might be theo

[dpdk-dev] [PATCH v2 0/8] Remove temporary digest allocation

2017-09-05 Thread Pablo de Lara
When performing authentication verification, some crypto PMDs require extra memory where the generated digest can be placed. Currently, these PMDs are getting the memory from the end of the source mbuf, which might fail if there is not enough tailroom. To avoid this situation, some memory is alloc

[dpdk-dev] [PATCH v2 2/8] crypto/armv8: do not append digest

2017-09-05 Thread Pablo de Lara
When performing an authentication verification, the PMD was using memory at the end of the input buffer, to store temporarily the digest. This operation requires the buffer to have enough tailroom unnecessarily. Instead, memory is allocated for each queue pair, to store temporarily the digest gener

[dpdk-dev] [PATCH v2 1/8] crypto/aesni_gcm: do not append digest

2017-09-05 Thread Pablo de Lara
When performing an authentication verification, the PMD was using memory at the end of the input buffer, to store temporarily the digest. This operation requires the buffer to have enough tailroom unnecessarily. Instead, memory is allocated for each queue pair, to store temporarily the digest gener

[dpdk-dev] [PATCH v2 4/8] crypto/kasumi: do not append digest

2017-09-05 Thread Pablo de Lara
When performing an authentication verification, the PMD was using memory at the end of the input buffer, to store temporarily the digest. This operation requires the buffer to have enough tailroom unnecessarily. Instead, memory is allocated for each queue pair, to store temporarily the digest gener

[dpdk-dev] [PATCH v2 5/8] crypto/snow3g: do not append digest

2017-09-05 Thread Pablo de Lara
When performing an authentication verification, the PMD was using memory at the end of the input buffer, to store temporarily the digest. This operation requires the buffer to have enough tailroom unnecessarily. Instead, memory is allocated for each queue pair, to store temporarily the digest gener

[dpdk-dev] [PATCH v2 3/8] crypto/openssl: do not append digest

2017-09-05 Thread Pablo de Lara
When performing an authentication verification, the PMD was using memory at the end of the input buffer, to store temporarily the digest. This operation requires the buffer to have enough tailroom unnecessarily. Instead, memory is allocated for each queue pair, to store temporarily the digest gener

[dpdk-dev] [PATCH v2 6/8] crypto/zuc: do not append digest

2017-09-05 Thread Pablo de Lara
When performing an authentication verification, the PMD was using memory at the end of the input buffer, to store temporarily the digest. This operation requires the buffer to have enough tailroom unnecessarily. Instead, memory is allocated for each queue pair, to store temporarily the digest gener

[dpdk-dev] [PATCH v2 7/8] crypto/aesni_mb: do not append digest

2017-09-05 Thread Pablo de Lara
When performing an authentication verification, the PMD was using memory at the end of the input buffer, to store temporarily the digest. This operation requires the buffer to have enough tailroom unnecessarily. Instead, memory is allocated for each queue pair, to store temporarily the digest gener

[dpdk-dev] [PATCH v2 8/8] test/crypto: do not allocate extra memory for digest

2017-09-05 Thread Pablo de Lara
Now that PMDs do not need extra space in the mbuf to store temporarily the digest when verifying an authentication tag, it is not required to allocate more memory in the mbufs passed to cryptodev. Signed-off-by: Pablo de Lara --- test/test/test_cryptodev_blockcipher.c | 29 ++

[dpdk-dev] [PATCH v2 0/5] make dpdk iova aware

2017-09-05 Thread Santosh Shukla
v2: Include build fixes reported in patchworks. Changeset based on deprecation notice[1], planned for v17.11 release. Patches are based commit: (c42021fe56 : ethdev: rename map file to match library name) Summary: Renaming memory address translation api/ datatypes and memory struct members to io

[dpdk-dev] [PATCH v2 1/5] eal: rename phys_addr_t to iova_addr_t

2017-09-05 Thread Santosh Shukla
Renamed data type from phys_addr_t to iova_addr_t. Signed-off-by: Santosh Shukla --- v1 --> v2: - clang build fix for v1 for linuxapp. v1 note: - As changes percolate to all possible dpdk subsystem.. so its difficult to tag subject with one common title, but since, core of changeset is at ea

[dpdk-dev] [PATCH v2 2/5] eal/memory: rename buf_physaddr to buf_iovaaddr

2017-09-05 Thread Santosh Shukla
Signed-off-by: Santosh Shukla --- v1 notes: Since crux of change is at eal/memory area so using that as title. doc/guides/prog_guide/img/mbuf1.svg| 2 +- drivers/bus/fslmc/portal/dpaa2_hw_pvt.h| 2 +- drivers/net/ark/ark_ethdev_rx.c

[dpdk-dev] [PATCH v2 4/5] eal/memory: rename memory api to iova types

2017-09-05 Thread Santosh Shukla
Renamed memory translational api to _iova types. The following api renamed from: rte_mempool_populate_phys() rte_mempool_populate_phys_tab() rte_eal_using_phys_addrs() rte_mem_virt2phy() rte_dump_physmem_layout() rte_eal_get_physmem_layout() rte_eal_get_physmem_size() rte_malloc_virt2phy() rte_mem

[dpdk-dev] [PATCH v2 3/5] eal/memory: rename memseg member phys to iova addr

2017-09-05 Thread Santosh Shukla
Renaming rte_memseg {.phys_addr} to {.iova_addr} Signed-off-by: Santosh Shukla --- v1 --> v2: - includes freebsdp v1 build fixes. lib/librte_eal/bsdapp/eal/eal_memory.c | 4 ++-- lib/librte_eal/common/eal_common_memory.c | 2 +- lib/librte_eal/common/include/rte_memory.h | 4 ++-- lib/libr

[dpdk-dev] [PATCH v2 5/5] doc: remove dpdk iova aware notice

2017-09-05 Thread Santosh Shukla
Removed dpdk iova aware ABI deprecation notice, and updated ABI change details in release_17.11.rst. Signed-off-by: Santosh Shukla --- doc/guides/rel_notes/deprecation.rst | 7 --- doc/guides/rel_notes/release_17_11.rst | 27 +++ 2 files changed, 27 insertions(+),

Re: [dpdk-dev] [PATCH v3] net/mlx5: support device removal event

2017-09-05 Thread Matan Azrad
Hi Adrien > -Original Message- > From: Adrien Mazarguil [mailto:adrien.mazarg...@6wind.com] > Sent: Tuesday, September 5, 2017 12:28 PM > To: Matan Azrad > Cc: Nélio Laranjeiro ; dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v3] net/mlx5: support device removal event > > Hi Matan, > > O

[dpdk-dev] [PATCH v4 1/3] eal: introduce integer divide through reciprocal

2017-09-05 Thread Pavan Nikhilesh
From: Pavan Bhagavatula In some use cases of integer division, denominator remains constant and numerator varies. It is possible to optimize division for such specific scenarios. The librte_sched uses rte_reciprocal to optimize division so, moving it to eal/common would allow other libraries and

[dpdk-dev] [PATCH v4 2/3] eal: add u64 bit variant for reciprocal

2017-09-05 Thread Pavan Nikhilesh
From: Pavan Bhagavatula Currently, rte_reciprocal only supports unsigned 32bit divisors. This commit adds support for unsigned 64bit divisors. Rename unsigned 32bit specific functions appropriately and update librte_sched accordingly. Signed-off-by: Pavan Nikhilesh --- lib/librte_eal/bsdapp/e

[dpdk-dev] [PATCH v4 3/3] test: add tests for reciprocal based division

2017-09-05 Thread Pavan Nikhilesh
From: Pavan Bhagavatula This commit provides a set of tests for verifying the correctness and performance of both unsigned 32 and 64bit reciprocal based division. Signed-off-by: Pavan Nikhilesh --- test/test/Makefile| 2 + test/test/test_reciprocal_division.c | 1

Re: [dpdk-dev] [PATCH 4/4] ethdev: add helpers to move to the new offloads API

2017-09-05 Thread Shahaf Shuler
Tuesday, September 5, 2017 11:10 AM, Ananyev, Konstantin: > > > > > In fact, right now it is possible to query/change these 3 vlan > > > > > offload flags on the fly (after dev_start) on port basis by > rte_eth_dev_(get|set)_vlan_offload API. Regarding this API from ethdev. So this seems like a

Re: [dpdk-dev] [PATCH 03/21] vhost: protect virtio_net device struct

2017-09-05 Thread Maxime Coquelin
On 09/05/2017 12:07 PM, Tiwei Bie wrote: On Tue, Sep 05, 2017 at 11:24:14AM +0200, Maxime Coquelin wrote: On 09/05/2017 06:45 AM, Tiwei Bie wrote: On Thu, Aug 31, 2017 at 11:50:05AM +0200, Maxime Coquelin wrote: virtio_net device might be accessed while being reallocated in case of NUMA awar

Re: [dpdk-dev] [PATCH v2] app/crypto-perf: fix uninitialized errno value

2017-09-05 Thread De Lara Guarch, Pablo
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Hemant Agrawal > Sent: Tuesday, September 5, 2017 7:17 AM > To: dev@dpdk.org > Cc: Doherty, Declan ; De Lara Guarch, Pablo > ; akhil.go...@nxp.com > Subject: [dpdk-dev] [PATCH v2] app/crypto-perf: fix uninitialize

Re: [dpdk-dev] [PATCH] examples/l2fwd-crypto: fix uninitialized errno value

2017-09-05 Thread De Lara Guarch, Pablo
> -Original Message- > From: Hemant Agrawal [mailto:hemant.agra...@nxp.com] > Sent: Wednesday, August 23, 2017 1:24 PM > To: dev@dpdk.org > Cc: Doherty, Declan ; De Lara Guarch, Pablo > ; akhil.go...@nxp.com > Subject: [PATCH] examples/l2fwd-crypto: fix uninitialized errno value > > errn

[dpdk-dev] [PATCH v5 1/3] eal: introduce integer divide through reciprocal

2017-09-05 Thread Pavan Nikhilesh
From: Pavan Bhagavatula In some use cases of integer division, denominator remains constant and numerator varies. It is possible to optimize division for such specific scenarios. The librte_sched uses rte_reciprocal to optimize division so, moving it to eal/common would allow other libraries and

[dpdk-dev] [PATCH v5 2/3] eal: add u64 bit variant for reciprocal

2017-09-05 Thread Pavan Nikhilesh
From: Pavan Bhagavatula Currently, rte_reciprocal only supports unsigned 32bit divisors. This commit adds support for unsigned 64bit divisors. Rename unsigned 32bit specific functions appropriately and update librte_sched accordingly. Signed-off-by: Pavan Nikhilesh --- lib/librte_eal/bsdapp/e

[dpdk-dev] [PATCH v5 3/3] test: add tests for reciprocal based division

2017-09-05 Thread Pavan Nikhilesh
From: Pavan Bhagavatula This commit provides a set of tests for verifying the correctness and performance of both unsigned 32 and 64bit reciprocal based division. Signed-off-by: Pavan Nikhilesh --- test/test/Makefile| 2 + test/test/test_reciprocal_division.c | 1

Re: [dpdk-dev] [PATCH v3] net/mlx5: support device removal event

2017-09-05 Thread Adrien Mazarguil
Hi Matan, On Tue, Sep 05, 2017 at 10:38:21AM +, Matan Azrad wrote: > Hi Adrien > > > -Original Message- > > From: Adrien Mazarguil [mailto:adrien.mazarg...@6wind.com] > > Sent: Tuesday, September 5, 2017 12:28 PM > > To: Matan Azrad > > Cc: Nélio Laranjeiro ; dev@dpdk.org > > Subject

[dpdk-dev] [PATCH v7 3/6] igb_uio: fix MSI-X IRQ assignment with new IRQ function

2017-09-05 Thread Markus Theil
The patch which introduced the usage of pci_alloc_irq_vectors came after the patch which switched to non-threaded ISR (f0d1896fa1), but did not use non-threaded ISR, if pci_alloc_irq_vectors is used. Fixes: 99bb58f3adc7 ("igb_uio: switch to new irq function for MSI-X") Cc: nicolas.dich...@6wind.co

[dpdk-dev] [PATCH v7 4/6] igb_uio: release in exact reverse order

2017-09-05 Thread Markus Theil
For better readability throughout the module, the destruction order is changed to the exact inverse construction order. Signed-off-by: Markus Theil --- lib/librte_eal/linuxapp/igb_uio/igb_uio.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/librte_eal/linuxapp/igb

[dpdk-dev] [PATCH v7 1/6] igb_uio: refactor irq enable/disable into own functions

2017-09-05 Thread Markus Theil
Interrupt setup code in igb_uio has to deal with multiple types of interrupts and kernel versions. This patch moves the setup and teardown code into own functions, to make it more readable. Signed-off-by: Markus Theil --- lib/librte_eal/linuxapp/igb_uio/igb_uio.c | 112 +-

[dpdk-dev] [PATCH v7 6/6] igb_uio: MSI IRQ mode

2017-09-05 Thread Markus Theil
This patch adds MSI IRQ mode in a way, that should also work on older kernel versions. The base for my patch was an attempt to do this in cf705bc36c which was later reverted in d8ee82745a. Compilation was tested on Linux 3.2, 4.10 and 4.12. Signed-off-by: Markus Theil --- lib/librte_eal/linuxapp

[dpdk-dev] [PATCH v7 2/6] igb_uio: fix irq disable on recent kernels

2017-09-05 Thread Markus Theil
igb_uio already allocates irqs using pci_alloc_irq_vectors on recent kernels >= 4.8. The interrupt disable code was not using the corresponding pci_free_irq_vectors, but the also deprecated pci_disable_msix, before this fix. Fixes: 99bb58f3adc7 ("igb_uio: switch to new irq function for MSI-X") Cc:

[dpdk-dev] [PATCH v7 5/6] igb_uio: use kernel functions for masking MSI-X

2017-09-05 Thread Markus Theil
This patch removes the custom MSI-X mask/unmask code and uses already existing kernel functions. Signed-off-by: Markus Theil --- lib/librte_eal/linuxapp/igb_uio/compat.h | 26 +--- lib/librte_eal/linuxapp/igb_uio/igb_uio.c | 51 --- 2 files changed, 28 in

Re: [dpdk-dev] [PATCH v7 0/9] Infrastructure to detect iova mapping on the bus

2017-09-05 Thread Hemant Agrawal
Tested-by: Hemant Agrawal On 8/31/2017 8:56 AM, Santosh Shukla wrote: v7: Includes no major change, minor change detailing: - patch sqashing (Aaron suggestion) - added run_once for device_parse() and bus_scan() in eal init (Aaron suggestion) - Moved rte_eal_device_parse() up in eal init

Re: [dpdk-dev] [PATCH v2] librte_mbuf: modify port initialization value

2017-09-05 Thread Yang, Zhiyong
> -Original Message- > From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Tuesday, September 5, 2017 3:28 PM > To: Yang, Zhiyong > Cc: dev@dpdk.org; Yigit, Ferruh ; > step...@networkplumber.org > Subject: Re: [PATCH v2] librte_mbuf: modify port initialization value > > 05/09/2017

Re: [dpdk-dev] [PATCH v7 0/9] Infrastructure to detect iova mapping on the bus

2017-09-05 Thread Hemant Agrawal
Please note that this series break the DPAA2 BUS. Following patch series (Shreyansh) is required to fix DPAA2 bus working with this patch series: http://dpdk.org/dev/patchwork/patch/27950/ On 9/5/2017 5:58 PM, Hemant Agrawal wrote: Tested-by: Hemant Agrawal On 8/31/2017 8:56 AM, Santosh Sh

Re: [dpdk-dev] [PATCH v2 0/8] Remove temporary digest allocation

2017-09-05 Thread Zhang, Roy Fan
Hi Pablo, Thanks, looks great! Regards, Fan > -Original Message- > From: De Lara Guarch, Pablo > Sent: Tuesday, September 5, 2017 3:20 AM > To: Doherty, Declan ; Zhang, Roy Fan > ; jerin.ja...@caviumnetworks.com > Cc: dev@dpdk.org; De Lara Guarch, Pablo > Subject: [PATCH v2 0/8] Remove

[dpdk-dev] [PATCH v1 0/3] net/mlx4: additional interrupt handling fixes

2017-09-05 Thread Adrien Mazarguil
While the previous interrupt rework improved the situation, it failed to address one last issue pointed out by Matan: RMV/LSC events may be missed and not reported to the application. Adrien Mazarguil (3): net/mlx4: fix unhandled event debug message net/mlx4: fix rescheduled link status check

[dpdk-dev] [PATCH v1 2/3] net/mlx4: fix rescheduled link status check

2017-09-05 Thread Adrien Mazarguil
Link status is sometimes inconsistent during a LSC event. When it occurs, the PMD refrains from immediately notifying the application; instead, an alarm is scheduled to check link status later and notify the application once it has settled. The problem is that subsequent link status checks are onl

[dpdk-dev] [PATCH v1 3/3] net/mlx4: merge interrupt collector function

2017-09-05 Thread Adrien Mazarguil
Since interrupt handler is the only function relying on it, merging them simplifies the code as there is no need for an API to return collected events. Signed-off-by: Adrien Mazarguil --- drivers/net/mlx4/mlx4_intr.c | 94 +-- 1 file changed, 30 insertions(+),

[dpdk-dev] [PATCH v1 1/3] net/mlx4: fix unhandled event debug message

2017-09-05 Thread Adrien Mazarguil
When LSC or RMV events are received by the PMD but are not requested by the application, a misleading debugging message implying the PMD does not support them is shown. Fixes: 6dd7b7056d7f ("net/mlx4: support device removal event") Cc: Gaetan Rivet Cc: sta...@dpdk.org Signed-off-by: Adrien Mazar

[dpdk-dev] [PATCH] buildtools: zero elf info variable in pmdinfogen

2017-09-05 Thread Harry van Haaren
This commit zeros out the elf_info struct at startup of the pmdinfogen code. If it is not zeroed, later in the code gcc produces "may be unused" prints. Clang does not report any issue. This commit enables a simplification in the meson build system, removing the requirement for "-Wno-maybe-uniniti

[dpdk-dev] [PATCH v2 1/3] net/mlx5: replace network to host macros

2017-09-05 Thread Shachar Beiser
Signed-off-by: Shachar Beiser --- drivers/net/mlx5/mlx5_mac.c | 8 ++- drivers/net/mlx5/mlx5_mr.c | 2 +- drivers/net/mlx5/mlx5_rxmode.c | 8 ++- drivers/net/mlx5/mlx5_rxq.c | 9 +-- drivers/net/mlx5/mlx5_rxtx.c | 131 +++--

[dpdk-dev] [PATCH v2 3/3] net/mlx5: fix interrupt enable return value

2017-09-05 Thread Shachar Beiser
return value is sometimes returned uninitialized Fixes: e1016cb73383 ("net/mlx5: fix Rx interrupts management") Fixes: b18042fb8f49 ("net/mlx5: fix misplaced Rx interrupts functions") Cc: adrien.mazarg...@6wind.com Cc: sta...@dpdk.org Signed-off-by: Shachar Beiser --- drivers/net/mlx5/mlx5_rxq.

[dpdk-dev] [PATCH v2 2/3] net/mlx5: fix TSO MLNX OFED 3.3 verification

2017-09-05 Thread Shachar Beiser
Fixes: 3cf87e68d97b ("net/mlx5: remove old MLNX OFED 3.3 verification") Cc: sta...@dpdk.org Signed-off-by: Shachar Beiser --- drivers/net/mlx5/mlx5_prm.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/net/mlx5/mlx5_prm.h b/drivers/net/mlx5/mlx5_prm.h index 608072f..8b82b5e 100644

Re: [dpdk-dev] [PATCH] buildtools: zero elf info variable in pmdinfogen

2017-09-05 Thread Bruce Richardson
On Tue, Sep 05, 2017 at 02:03:33PM +0100, Harry van Haaren wrote: > This commit zeros out the elf_info struct at startup of the > pmdinfogen code. If it is not zeroed, later in the code gcc > produces "may be unused" prints. Clang does not report any > issue. > > This commit enables a simplificati

[dpdk-dev] [PATCH v3] net/mlx5: support upstream rdma-core

2017-09-05 Thread Shachar Beiser
This removes the dependency on specific Mellanox OFED libraries by using the upstream rdma-core and linux upstream community code. --- a. Compile with rdma-core commit f11292efd541 ("Merge pull request #202") b. Tested with linux kernel 4.13-rc4 c. For performance testing recommended to wait till

Re: [dpdk-dev] [PATCH] net/failsafe: stat support enhancement

2017-09-05 Thread Gaëtan Rivet
Hi Matan, On Tue, Sep 05, 2017 at 12:56:34PM +0300, Matan Azrad wrote: > The previous stats code returned only the current TX sub > device stats. > > This enhancement extends it to return the sum of all sub > devices stats with history of removed sub-devices. > > Dedicated stats accumulator save

Re: [dpdk-dev] [PATCH v2 3/3] net/mlx5: fix interrupt enable return value

2017-09-05 Thread Adrien Mazarguil
Hi Shachar, On Tue, Sep 05, 2017 at 01:04:38PM +, Shachar Beiser wrote: > return value is sometimes returned uninitialized > > Fixes: e1016cb73383 ("net/mlx5: fix Rx interrupts management") > Fixes: b18042fb8f49 ("net/mlx5: fix misplaced Rx interrupts functions") > > Cc: adrien.mazarg...@6wi

Re: [dpdk-dev] [PATCH v1 0/3] net/mlx4: additional interrupt handling fixes

2017-09-05 Thread Gaëtan Rivet
On Tue, Sep 05, 2017 at 02:56:36PM +0200, Adrien Mazarguil wrote: > While the previous interrupt rework improved the situation, it failed to > address one last issue pointed out by Matan: RMV/LSC events may be missed > and not reported to the application. > > Adrien Mazarguil (3): > net/mlx4: fi

[dpdk-dev] [PATCH v2] buildtools: zero elf info variable in pmdinfogen

2017-09-05 Thread Harry van Haaren
This commit zeros out the elf_info struct at startup of the pmdinfogen code. If it is not zeroed, later in the code gcc produces "may be unused" prints. Clang does not report any issue. This issue is only observed when compiling pmdinfogen as an optimized build, hence this warning is not disabled

Re: [dpdk-dev] [PATCH v1 3/3] net/mlx4: merge interrupt collector function

2017-09-05 Thread Gaëtan Rivet
On Tue, Sep 05, 2017 at 02:56:39PM +0200, Adrien Mazarguil wrote: > Since interrupt handler is the only function relying on it, merging them > simplifies the code as there is no need for an API to return collected > events. > > Signed-off-by: Adrien Mazarguil > --- > drivers/net/mlx4/mlx4_intr.c

Re: [dpdk-dev] [PATCH v3] net/mlx5: support device removal event

2017-09-05 Thread Matan Azrad
Hi Adrien > -Original Message- > From: Adrien Mazarguil [mailto:adrien.mazarg...@6wind.com] > Sent: Tuesday, September 5, 2017 3:02 PM > To: Matan Azrad > Cc: Nélio Laranjeiro ; dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v3] net/mlx5: support device removal event > > Hi Matan, > > On

Re: [dpdk-dev] [PATCH v2 2/3] net/mlx5: fix TSO MLNX OFED 3.3 verification

2017-09-05 Thread Nélio Laranjeiro
On Tue, Sep 05, 2017 at 01:04:37PM +, Shachar Beiser wrote: > Fixes: 3cf87e68d97b ("net/mlx5: remove old MLNX OFED 3.3 verification") > Cc: sta...@dpdk.org > > Signed-off-by: Shachar Beiser > --- > drivers/net/mlx5/mlx5_prm.h | 3 --- > 1 file changed, 3 deletions(-) > > diff --git a/driver

Re: [dpdk-dev] [PATCH v2 1/3] net/mlx5: replace network to host macros

2017-09-05 Thread Nélio Laranjeiro
On Tue, Sep 05, 2017 at 01:04:36PM +, Shachar Beiser wrote: > Signed-off-by: Shachar Beiser Acked-by: Nelio Laranjeiro Thanks, -- Nélio Laranjeiro 6WIND

Re: [dpdk-dev] [PATCH v3] net/mlx5: support upstream rdma-core

2017-09-05 Thread Nélio Laranjeiro
On Tue, Sep 05, 2017 at 01:19:08PM +, Shachar Beiser wrote: > This removes the dependency on specific Mellanox OFED libraries by > using the upstream rdma-core and linux upstream community code. > > --- > a. Compile with rdma-core commit f11292efd541 ("Merge pull request #202") > b. Tested wit

Re: [dpdk-dev] [PATCH 4/4] ethdev: add helpers to move to the new offloads API

2017-09-05 Thread Thomas Monjalon
05/09/2017 12:51, Shahaf Shuler: > So looks like we all agree PMDs should report as part of the > rte_eth_dev_info_get which offloads are per port and which are per queue. > > Regarding the offloads configuration by application I see 2 options: > 1. have an API to set offloads per port as part of

[dpdk-dev] [PATCH 1/2] service: fix service lcore stop function

2017-09-05 Thread Guduri Prathyusha
lcore_states store the state of the lcore. Fixing the invalid dereference of lcore_states with service number Fixes: 21698354c832 ("service: introduce service cores concept") Signed-off-by: Guduri Prathyusha --- lib/librte_eal/common/rte_service.c | 2 +- 1 file changed, 1 insertion(+), 1 delet

[dpdk-dev] [PATCH 2/2] service: fix service lcore start stop unit test

2017-09-05 Thread Guduri Prathyusha
Unit test case service_lcore_start_stop fails since the service core was stopped without stopping the service. This commit fixes the test by adding negative and positive cases of stopping the service lcore before and after stopping the service respectively. Fixes: f038a81e1c56 ("service: add unit

  1   2   >