Re: [dpdk-dev] Inconsistent behavior of mempool with regards to hugepage allocation

2019-12-27 Thread Olivier Matz
On Thu, Dec 26, 2019 at 04:45:24PM +0100, Olivier Matz wrote: > Hi Bao-Long, > > On Mon, Dec 23, 2019 at 07:09:29PM +0800, Bao-Long Tran wrote: > > Hi, > > > > I'm not sure if this is a bug, but I've seen an inconsistency in the > > behavior > > of DPDK with regards to hugepage allocation for r

Re: [dpdk-dev] [PATCH v5 0/4] drivers/net: cleanup Tx buffers

2019-12-27 Thread Zhang, Xiao
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Chenxu Di > Sent: Friday, December 27, 2019 11:45 AM > To: dev@dpdk.org > Cc: Yang, Qiming ; Xing, Beilei > ; Di, ChenxuX > Subject: [dpdk-dev] [PATCH v5 0/4] drivers/net: cleanup Tx buffers > > Add support to t

Re: [dpdk-dev] [RFC v2] mlx5/net: hint PMD not to inline packet

2019-12-27 Thread Olivier Matz
Hi Viacheslav, On Wed, Dec 11, 2019 at 05:01:33PM +, Viacheslav Ovsiienko wrote: > Some PMDs inline the mbuf data buffer directly to device transmit descriptor. > This is in order to save the overhead of the PCI headers imposed when the > device DMA reads the data by buffer pointer. For some d

Re: [dpdk-dev] [PATCH v2] mbuf: display more fields in dump

2019-12-27 Thread Olivier Matz
Hi, On Thu, Dec 26, 2019 at 08:58:51AM -0800, Stephen Hemminger wrote: > On Thu, 26 Dec 2019 17:15:39 +0100 > Olivier Matz wrote: > > > Hi, > > > > On Thu, Nov 21, 2019 at 10:30:55AM -0800, Stephen Hemminger wrote: > > > The rte_pktmbuf_dump should display offset, refcount, and vlan > > > info

Re: [dpdk-dev] Inconsistent behavior of mempool with regards to hugepage allocation

2019-12-27 Thread Bao-Long Tran
Hi Olivier, > On 27 Dec 2019, at 4:11 PM, Olivier Matz wrote: > > On Thu, Dec 26, 2019 at 04:45:24PM +0100, Olivier Matz wrote: >> Hi Bao-Long, >> >> On Mon, Dec 23, 2019 at 07:09:29PM +0800, Bao-Long Tran wrote: >>> Hi, >>> >>> I'm not sure if this is a bug, but I've seen an inconsistency in

Re: [dpdk-dev] Inconsistent behavior of mempool with regards to hugepage allocation

2019-12-27 Thread Olivier Matz
Hi Bao-Long, On Fri, Dec 27, 2019 at 06:05:57PM +0800, Bao-Long Tran wrote: > Hi Olivier, > > > On 27 Dec 2019, at 4:11 PM, Olivier Matz wrote: > > > > On Thu, Dec 26, 2019 at 04:45:24PM +0100, Olivier Matz wrote: > >> Hi Bao-Long, > >> > >> On Mon, Dec 23, 2019 at 07:09:29PM +0800, Bao-Long T

[dpdk-dev] [PATCH v2 0/6] OCTEON TX2 End Point Driver

2019-12-27 Thread Mahipal Challa
This patchset adds support for OCTEON TX2 end point mode of operation. The driver implementation uses DPDK rawdevice sub-system. v2: * Updated memory barrior API's as per Gavin Hu suggestion. Mahipal Challa (6): raw/octeontx2_ep: add build infra and device probe raw/octeontx2_ep: add device

[dpdk-dev] [dpdk-dev PATCH v2 2/6] raw/octeontx2_ep: add device configuration

2019-12-27 Thread Mahipal Challa
Register "dev_configure" API to configure/initialize the SDP VF PCIe devices. Signed-off-by: Mahipal Challa --- doc/guides/rawdevs/octeontx2_ep.rst| 29 ++ drivers/common/octeontx2/hw/otx2_sdp.h | 184 + drivers/common/octeontx2/otx2_common.c |

[dpdk-dev] [dpdk-dev PATCH v2 1/6] raw/octeontx2_ep: add build infra and device probe

2019-12-27 Thread Mahipal Challa
Add the OCTEON TX2 SDP EP device probe along with the build infrastructure for Make and meson builds. Signed-off-by: Mahipal Challa --- MAINTAINERS| 5 + config/common_base | 5 + doc/guides/rawdevs/index.rst

[dpdk-dev] [dpdk-dev PATCH v2 3/6] raw/octeontx2_ep: add device uninitialization

2019-12-27 Thread Mahipal Challa
Add rawdev close/uninitialize operation for SDP VF devices. Signed-off-by: Mahipal Challa --- drivers/raw/octeontx2_ep/otx2_ep_enqdeq.c | 111 ++ drivers/raw/octeontx2_ep/otx2_ep_rawdev.c | 78 + drivers/raw/octeontx2_ep/otx2_ep_rawdev.h | 8 +++

[dpdk-dev] [dpdk-dev PATCH v2 4/6] raw/octeontx2_ep: add enqueue operation

2019-12-27 Thread Mahipal Challa
Add rawdev enqueue operation for SDP VF devices. Signed-off-by: Mahipal Challa --- doc/guides/rawdevs/octeontx2_ep.rst | 6 + drivers/raw/octeontx2_ep/otx2_ep_enqdeq.c | 242 ++ drivers/raw/octeontx2_ep/otx2_ep_enqdeq.h | 39 + drivers/raw/octeontx2_ep/ot

[dpdk-dev] [dpdk-dev PATCH v2 5/6] raw/octeontx2_ep: add dequeue operation

2019-12-27 Thread Mahipal Challa
Add rawdev dequeue operation for SDP VF devices. Signed-off-by: Mahipal Challa --- drivers/raw/octeontx2_ep/otx2_ep_enqdeq.c | 197 ++ drivers/raw/octeontx2_ep/otx2_ep_enqdeq.h | 2 + drivers/raw/octeontx2_ep/otx2_ep_rawdev.c | 1 + drivers/raw/octeontx2_ep/otx2_e

[dpdk-dev] [dpdk-dev PATCH v2 6/6] raw/octeontx2_ep: add driver self test

2019-12-27 Thread Mahipal Challa
Add rawdev's selftest feature in SDP VF driver, which verifies the EP mode functionality test. Signed-off-by: Mahipal Challa --- doc/guides/rawdevs/octeontx2_ep.rst | 13 +++ drivers/raw/octeontx2_ep/Makefile | 1 + drivers/raw/octeontx2_ep/meson.build | 1 + drivers/raw/

Re: [dpdk-dev] [PATCH v2 04/11] examples/l3fwd: add ethdev setup based on eventdev

2019-12-27 Thread Nipun Gupta
> -Original Message- > From: dev On Behalf Of > pbhagavat...@marvell.com > Sent: Wednesday, December 4, 2019 8:14 PM > To: jer...@marvell.com; Marko Kovacevic ; Ori > Kam ; Bruce Richardson > ; Radu Nicolau ; > Akhil Goyal ; Tomasz Kantecki > ; Sunil Kumar Kori ; > Pavan Nikhilesh > Cc

Re: [dpdk-dev] questions about new offload ethdev api

2019-12-27 Thread Olivier Matz
Hi, Few comments below. On Mon, Dec 16, 2019 at 11:39:05AM +0300, Andrew Rybchenko wrote: > On 12/10/19 9:07 PM, Ferruh Yigit wrote: > > On 1/23/2018 2:34 PM, Shahaf Shuler wrote: > >> Tuesday, January 23, 2018 3:53 PM, Olivier Matz: > > > > <...> > > > >>> > >>> 2/ meaning of rxmode.jumbo_fram

Re: [dpdk-dev] questions about new offload ethdev api

2019-12-27 Thread Ananyev, Konstantin
> -Original Message- > From: Olivier Matz > Sent: Friday, December 27, 2019 1:54 PM > To: Andrew Rybchenko > Cc: Yigit, Ferruh ; Shahaf Shuler > ; dev@dpdk.org; Ananyev, Konstantin > ; Thomas Monjalon ; > Richardson, Bruce ; Matan > Azrad ; Jerin Jacob Kollanukkaran > Subject: Re: [

Re: [dpdk-dev] [RFC PATCH] mbuf: fix to update documentation of PKT_RX_QINQ_STRIPPED

2019-12-27 Thread Olivier Matz
Hi, On Tue, Dec 24, 2019 at 12:53:21PM +0300, Andrew Rybchenko wrote: > On 12/24/19 6:16 AM, Somnath Kotur wrote: > > Given that we haven't heard any objection from anyone in a while on > > this ...can we get this in please? > > I'm sorry, but have you seen below? > It means that PKT_RX_QINQ_STRI

Re: [dpdk-dev] [PATCH] mempool: fix mempool obj alignment for non x86

2019-12-27 Thread Olivier Matz
Hi, On Sat, Dec 21, 2019 at 10:36:15AM +0530, Jerin Jacob wrote: > On Sat, Dec 21, 2019 at 2:37 AM Honnappa Nagarahalli > wrote: > > > > > > > > > From: Jerin Jacob > > > > > > > > > > The exiting optimize_object_size() function address the memory > > > > > object alignment constraint on x86 fo

Re: [dpdk-dev] [PATCH v2] mbuf: display more fields in dump

2019-12-27 Thread Stephen Hemminger
On Fri, 27 Dec 2019 10:10:18 +0100 Olivier Matz wrote: > Hi, > > On Thu, Dec 26, 2019 at 08:58:51AM -0800, Stephen Hemminger wrote: > > On Thu, 26 Dec 2019 17:15:39 +0100 > > Olivier Matz wrote: > > > > > Hi, > > > > > > On Thu, Nov 21, 2019 at 10:30:55AM -0800, Stephen Hemminger wrote: >