[dpdk-dev] [PATCH v4 1/2] mbuf: introduce new Tx offload flag for MPLS-in-UDP

2017-06-27 Thread Rasesh Mody
From: Harish Patil Some PMDs need to know the tunnel type in order to handle advance TX features. This patch adds a new TX offload flag for MPLS-in-UDP packets. Signed-off-by: Harish Patil --- lib/librte_mbuf/rte_mbuf.c |3 +++ lib/librte_mbuf/rte_mbuf.h |2 ++ 2 files changed, 5 inser

[dpdk-dev] [PATCH v4 2/2] net/qede: add Tx offloads for MPLS-in-UDP packets

2017-06-27 Thread Rasesh Mody
From: Harish Patil Add support for inner/outer L3/L4 TX csum offload for MPLS-in-UDP packets. The driver checks for PKT_TX_TUNNEL_MPLSINUDP in Tx ol_flags and updates TX BD elements with appropriate offsets/length of tunnel headers. The pseudo csum calculation is removed from qede_xmit_prep_pkts(

Re: [dpdk-dev] [PATCH] eventdev: add producer enqueue hint

2017-06-27 Thread Jerin Jacob
-Original Message- > Date: Mon, 26 Jun 2017 15:44:10 + > From: "Eads, Gage" > To: Jerin Jacob , "dev@dpdk.org" > > CC: "Richardson, Bruce" , "Van Haaren, Harry" > , "hemant.agra...@nxp.com" > , "nipun.gu...@nxp.com" , > "Vangati, Narender" , "Rao, Nikhil" > > Subject: RE: [dpdk-

[dpdk-dev] [PATCH v2 0/2] net/i40e: extended list of operations for ddp processing

2017-06-27 Thread Andrey Chilikin
This patchset adds two new operations for dynamic device personalisation: * remove already loaded profile and delete it from the list * write profile without registering it This patchset depends on: [PATCH v2 00/16] net/i40e: base code update http://dpdk.org/ml/archives/dev/2017-June/068732.html h

[dpdk-dev] [PATCH v2 1/2] net/i40e: extended list of operations for ddp processing

2017-06-27 Thread Andrey Chilikin
This patch adds ability to remove already loaded profile or write profile without registering it Signed-off-by: Andrey Chilikin --- drivers/net/i40e/rte_pmd_i40e.c | 87 + drivers/net/i40e/rte_pmd_i40e.h | 6 ++- 2 files changed, 66 insertions(+), 27 dele

[dpdk-dev] [PATCH v2 2/2] app/testpmd: enable ddp remove profile feature

2017-06-27 Thread Andrey Chilikin
New command 'ddp del (port) (profile_path)' removes previously loaded profile and deletes it from the list of the loaded profiles. Signed-off-by: Andrey Chilikin --- app/test-pmd/cmdline.c | 103 ++-- app/test-pmd/config.c | 21

Re: [dpdk-dev] [PATCH v4 4/4] app/testpmd: add isolated mode parameter

2017-06-27 Thread Thomas Monjalon
22/06/2017 03:13, Wu, Jingjing: > From: Vasily Philipov [mailto:vasi...@mellanox.com] > > From: Wu, Jingjing [mailto:jingjing...@intel.com] > > > > > > > +/* > > > > * Avoids to check link status when starting/stopping a port. > > > > */ > > > > uint8_t no_link_check = 0; /* check by default *

Re: [dpdk-dev] [PATCH v7 0/2] Balanced allocation of hugepages

2017-06-27 Thread Ilya Maximets
On 26.06.2017 18:33, Sergio Gonzalez Monroy wrote: > On 26/06/2017 11:44, Ilya Maximets wrote: >> So, what do you think about this version? >> Is it ready for merge or some additional changes needed? > > I was just having another look at it and was wondering if we should re-set > the old policy i

Re: [dpdk-dev] [PATCH] eventdev: add producer enqueue hint

2017-06-27 Thread Van Haaren, Harry
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Tuesday, June 27, 2017 9:08 AM > To: Eads, Gage > Cc: dev@dpdk.org; Richardson, Bruce ; Van Haaren, > Harry > ; hemant.agra...@nxp.com; nipun.gu...@nxp.com; > Vangati, > Narender ; Rao, Nikhil > Subject: Re: [dpdk-dev] [PATCH]

[dpdk-dev] [PATCH v8 2/2] config: enable vhost numa awareness by default

2017-06-27 Thread Ilya Maximets
It is safe to enable LIBRTE_VHOST_NUMA by default for all configurations where libnuma is already a default dependency. Signed-off-by: Ilya Maximets --- config/common_linuxapp| 1 + config/defconfig_arm-armv7a-linuxapp-gcc | 1 + config/defconfig_arm64-dpaa2-linuxapp-gcc | 1

[dpdk-dev] [PATCH v8 0/2] Balanced allocation of hugepages

2017-06-27 Thread Ilya Maximets
Version 8: * helper functions from libnuma used to set mempolicy and work with cpu mask. * Function now restores previous mempolicy instead of MPOL_DEFAULT. * Fixed essential_memory on SIGBUS. * Fixed restoring of mempolicy in case of errors (goto out).

[dpdk-dev] [PATCH v8 1/2] mem: balanced allocation of hugepages

2017-06-27 Thread Ilya Maximets
Currently EAL allocates hugepages one by one not paying attention from which NUMA node allocation was done. Such behaviour leads to allocation failure if number of available hugepages for application limited by cgroups or hugetlbfs and memory requested not only from the first socket. Example:

Re: [dpdk-dev] [PATCH v5 0/2] Balanced allocation of hugepages

2017-06-27 Thread Hemant Agrawal
On 6/21/2017 4:52 PM, Jerin Jacob wrote: -Original Message- Date: Wed, 21 Jun 2017 13:36:58 +0300 From: Ilya Maximets To: Jerin Jacob , Thomas Monjalon CC: Sergio Gonzalez Monroy , Hemant Agrawal , dev@dpdk.org, Bruce Richardson , David Marchand , Heetae Ahn , Yuanhan Liu , Jianfe

Re: [dpdk-dev] [PATCH v8 2/2] config: enable vhost numa awareness by default

2017-06-27 Thread Hemant Agrawal
On 6/27/2017 2:16 PM, Ilya Maximets wrote: It is safe to enable LIBRTE_VHOST_NUMA by default for all configurations where libnuma is already a default dependency. Signed-off-by: Ilya Maximets --- config/common_linuxapp| 1 + config/defconfig_arm-armv7a-linuxapp-gcc | 1 +

Re: [dpdk-dev] [PATCH v8 2/2] config: enable vhost numa awareness by default

2017-06-27 Thread Thomas Monjalon
27/06/2017 10:46, Ilya Maximets: > It is safe to enable LIBRTE_VHOST_NUMA by default for all > configurations where libnuma is already a default dependency. > > Signed-off-by: Ilya Maximets > --- > config/common_linuxapp| 1 + > config/defconfig_arm-armv7a-linuxapp-gcc | 1 +

Re: [dpdk-dev] [PATCH v7 2/2] config: enable vhost numa awareness by default

2017-06-27 Thread Hemant Agrawal
On 6/21/2017 3:38 PM, Ilya Maximets wrote: It is safe to enable LIBRTE_VHOST_NUMA by default for all configurations where libnuma is already a default dependency. Signed-off-by: Ilya Maximets --- config/common_linuxapp | 1 + config/defconfig_arm-armv7a-linuxapp-gcc |

Re: [dpdk-dev] [PATCH v8 2/2] config: enable vhost numa awareness by default

2017-06-27 Thread Thomas Monjalon
27/06/2017 11:18, Hemant Agrawal: > On 6/27/2017 2:16 PM, Ilya Maximets wrote: > > It is safe to enable LIBRTE_VHOST_NUMA by default for all > > configurations where libnuma is already a default dependency. > > > > Signed-off-by: Ilya Maximets > > --- > > config/common_linuxapp

Re: [dpdk-dev] [PATCH v5 0/2] Balanced allocation of hugepages

2017-06-27 Thread Thomas Monjalon
27/06/2017 11:13, Hemant Agrawal: > On 6/21/2017 4:52 PM, Jerin Jacob wrote: > > From: Ilya Maximets > >>> From: Thomas Monjalon > >> 21/06/2017 10:41, Jerin Jacob: > > 1. There are many machines (arm/ppc), which do not support NUMA. > > > > https://wiki.linaro.org/LEG

[dpdk-dev] [PATCH] net/tap: restore state of remote device when stopping

2017-06-27 Thread Thomas Monjalon
When exiting a DPDK application, the TAP remote was left with the link down even if it was initially up. The device flags of the remote netdevice are saved when probing, and restored when calling the stop function. Signed-off-by: Thomas Monjalon --- drivers/net/tap/rte_eth_tap.c | 18 ++

Re: [dpdk-dev] [PATCH 1/3] examples/eventdev_pipeline: added sample app

2017-06-27 Thread Jerin Jacob
-Original Message- > Date: Mon, 26 Jun 2017 15:46:47 +0100 > From: "Hunt, David" > To: Jerin Jacob , Harry van Haaren > > CC: dev@dpdk.org, Gage Eads , Bruce Richardson > > Subject: Re: [dpdk-dev] [PATCH 1/3] examples/eventdev_pipeline: added > sample app > User-Agent: Mozilla/5.0 (Wi

Re: [dpdk-dev] [PATCH v8 2/2] config: enable vhost numa awareness by default

2017-06-27 Thread Hemant Agrawal
On 6/27/2017 2:51 PM, Thomas Monjalon wrote: 27/06/2017 11:18, Hemant Agrawal: On 6/27/2017 2:16 PM, Ilya Maximets wrote: It is safe to enable LIBRTE_VHOST_NUMA by default for all configurations where libnuma is already a default dependency. Signed-off-by: Ilya Maximets --- config/common_lin

Re: [dpdk-dev] [PATCH v5 0/2] Balanced allocation of hugepages

2017-06-27 Thread Hemant Agrawal
On 6/27/2017 2:56 PM, Thomas Monjalon wrote: 27/06/2017 11:13, Hemant Agrawal: On 6/21/2017 4:52 PM, Jerin Jacob wrote: From: Ilya Maximets From: Thomas Monjalon 21/06/2017 10:41, Jerin Jacob: 1. There are many machines (arm/ppc), which do not support NUMA. https://wiki.linaro.org/LEG/Eng

Re: [dpdk-dev] [PATCH v2 06/12] cryptodev: move vdev functions to a separate file

2017-06-27 Thread De Lara Guarch, Pablo
> -Original Message- > From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Tuesday, June 27, 2017 12:31 AM > To: Doherty, Declan ; De Lara Guarch, Pablo > > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2 06/12] cryptodev: move vdev functions > to a separate file > > 23/06/2

Re: [dpdk-dev] [PATCH v2 2/2] app/testpmd: enable ddp remove profile feature

2017-06-27 Thread Ferruh Yigit
On 6/27/2017 9:18 AM, Andrey Chilikin wrote: > New command 'ddp del (port) (profile_path)' removes previously > loaded profile and deletes it from the list of the loaded profiles. > > Signed-off-by: Andrey Chilikin <...> > @@ -12860,6 +12863,9 @@ cmd_ddp_add_parsed( > struct cmd_ddp_add_r

Re: [dpdk-dev] [PATCH v8 2/2] config: enable vhost numa awareness by default

2017-06-27 Thread Thomas Monjalon
27/06/2017 11:41, Hemant Agrawal: > On 6/27/2017 2:51 PM, Thomas Monjalon wrote: > > 27/06/2017 11:18, Hemant Agrawal: > >> On 6/27/2017 2:16 PM, Ilya Maximets wrote: > >>> It is safe to enable LIBRTE_VHOST_NUMA by default for all > >>> configurations where libnuma is already a default dependency.

Re: [dpdk-dev] [PATCH v8 2/2] config: enable vhost numa awareness by default

2017-06-27 Thread Jerin Jacob
-Original Message- > Date: Tue, 27 Jun 2017 15:11:07 +0530 > From: Hemant Agrawal > To: Thomas Monjalon > CC: Ilya Maximets , dev@dpdk.org, David Marchand > , Sergio Gonzalez Monroy > , Heetae Ahn , > Yuanhan Liu , Jianfeng Tan , > Neil Horman , Yulong Pei , > Bruce Richardson , Jeri

Re: [dpdk-dev] [PATCH] bond: update the NTT flag when partner's state changes from slow to fast

2017-06-27 Thread Ferruh Yigit
On 5/22/2017 8:52 AM, zhangsha.zh...@huawei.com wrote: > From: Sha Zhang > > According to the standard, state machine of lacp should transmit lacpdu > when partner's state changes from slow to fast, rather than from fast > to slow. > > Signed-off-by: Sha Zhang Acked-by: Declan Doherty Appli

Re: [dpdk-dev] [PATCH v5 04/12] bus: add bus iterator to find a device

2017-06-27 Thread Bruce Richardson
On Mon, Jun 26, 2017 at 02:22:02AM +0200, Gaetan Rivet wrote: > From: Jan Blunck > > Signed-off-by: Jan Blunck > Signed-off-by: Gaetan Rivet > --- > lib/librte_eal/bsdapp/eal/rte_eal_version.map | 1 + > lib/librte_eal/common/eal_common_bus.c | 24 +++ > lib/lib

Re: [dpdk-dev] [PATCH] eventdev: add producer enqueue hint

2017-06-27 Thread Jerin Jacob
-Original Message- > Date: Tue, 27 Jun 2017 08:44:34 + > From: "Van Haaren, Harry" > To: Jerin Jacob , "Eads, Gage" > > CC: "dev@dpdk.org" , "Richardson, Bruce" > , "hemant.agra...@nxp.com" > , "nipun.gu...@nxp.com" , > "Vangati, Narender" , "Rao, Nikhil" > > Subject: RE: [dpdk-

[dpdk-dev] [PATCH v9 0/2] Balanced allocation of hugepages

2017-06-27 Thread Ilya Maximets
Version 9: * Removed DPDK_DEP_NUMA from test-build.sh . Not needed anymore. * Fixed out of bound write to essential_memory in case where socket-mem not specified and SIGBUS occured. Version 8: * helper functions from libnuma used to set mempolicy and

[dpdk-dev] [PATCH v9 2/2] config: enable vhost numa awareness by default

2017-06-27 Thread Ilya Maximets
It is safe to enable LIBRTE_VHOST_NUMA by default for all configurations where libnuma is already a default dependency. DPDK_DEP_NUMA not needed anymore. Signed-off-by: Ilya Maximets --- config/common_linuxapp| 1 + config/defconfig_arm-armv7a-linuxapp-gcc | 1 + config/def

[dpdk-dev] [PATCH v9 1/2] mem: balanced allocation of hugepages

2017-06-27 Thread Ilya Maximets
Currently EAL allocates hugepages one by one not paying attention from which NUMA node allocation was done. Such behaviour leads to allocation failure if number of available hugepages for application limited by cgroups or hugetlbfs and memory requested not only from the first socket. Example:

Re: [dpdk-dev] [PATCH v8 2/2] config: enable vhost numa awareness by default

2017-06-27 Thread Ilya Maximets
On 27.06.2017 12:19, Thomas Monjalon wrote: > 27/06/2017 10:46, Ilya Maximets: >> It is safe to enable LIBRTE_VHOST_NUMA by default for all >> configurations where libnuma is already a default dependency. >> >> Signed-off-by: Ilya Maximets >> --- >> config/common_linuxapp| 1 +

[dpdk-dev] [PATCH v3 0/4] Rework cfgfile API to enable apps config file support

2017-06-27 Thread Jacek Piasecki
New API for cfgfile library allows to create a cfgfile at runtime, add new section, add entry in a section, update existing entry and save cfgfile structure to INI file - opens up the possibility to have applications dynamically build up a proper DPDK configuration, rather than having to have a pre

[dpdk-dev] [PATCH v3 1/4] cfgfile: remove EAL dependency

2017-06-27 Thread Jacek Piasecki
This patch removes the dependency to EAL in cfgfile library. Signed-off-by: Jacek Piasecki --- lib/librte_cfgfile/Makefile | 1 + lib/librte_cfgfile/rte_cfgfile.c | 29 + 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/lib/librte_cfgfile/Makefil

[dpdk-dev] [PATCH v3 2/4] cfgfile: add new functions to API

2017-06-27 Thread Jacek Piasecki
Extend existing cfgfile library with providing new API functions: rte_cfgfile_create() - create new cfgfile object rte_cfgfile_add_section() - add new section to existing cfgfile object rte_cfgfile_add_entry() - add new entry to existing cfgfile object in specified section rte_cfgfile_set_entry()

[dpdk-dev] [PATCH v3 3/4] cfgfile: rework of load function

2017-06-27 Thread Jacek Piasecki
From: Kuba Kozak New functions added to cfgfile library make it possible to significantly simplify the code of rte_cfgfile_load_with_params() This patch shows the new body of this function. Signed-off-by: Jacek Piasecki --- lib/librte_cfgfile/rte_cfgfile.c | 143 +-

[dpdk-dev] [PATCH v3 4/4] test/cfgfile: add new unit test

2017-06-27 Thread Jacek Piasecki
Load huge realloc_sections.ini file to check malloc/realloc ability of cfgfile library. Signed-off-by: Jacek Piasecki --- test/test/test_cfgfile.c | 40 +++ test/test/test_cfgfiles/etc/realloc_sections.ini | 128 +++ 2 files changed, 168 insertion

Re: [dpdk-dev] [PATCH v3 8/8] mk: always rebuild in the same order

2017-06-27 Thread Luca Boccassi
On Tue, 2017-06-27 at 01:22 +0200, Thomas Monjalon wrote: > 23/06/2017 20:41, lbocc...@brocade.com: > > From: Luca Boccassi > > > > In order to achieve reproducible builds, always check dependencies > > in > > the same order. > > > > Signed-off-by: Luca Boccassi > > --- > >  mk/internal/rte.com

Re: [dpdk-dev] [PATCH v3 7/8] mk: sort object files when building deps lists

2017-06-27 Thread Luca Boccassi
On Tue, 2017-06-27 at 01:20 +0200, Thomas Monjalon wrote: > 23/06/2017 20:41, lbocc...@brocade.com: > > From: Luca Boccassi > > > > In order to achieve reproducible builds, always use the same > > order when listing object files to build dependencies lists. > > > > Signed-off-by: Luca Boccassi

[dpdk-dev] [PATCH v3 0/3] EAL change for using a config file for DPDK

2017-06-27 Thread Jacek Piasecki
This patchset introduce a mechanism for running dpdk application with parameters provided by configuration file. A new API for EAL takes a config file data type - either loaded from file, or built up programmatically in the application - and extracts DPDK parameters from it to be used when eal ini

[dpdk-dev] [PATCH v3 1/3] eal: add functions parsing EAL arguments

2017-06-27 Thread Jacek Piasecki
From: Kuba Kozak added function rte_eal_configure which configure Environment Abstraction Layer (EAL) using configuration structure. Signed-off-by: Kuba Kozak Suggested-by: Bruce Richardson --- This patch depends on cfgfile patchset with: "cfgfile: remove EAL dependency" "cfgfile: add new func

[dpdk-dev] [PATCH v3 2/3] app/testpmd: changed example to parse options from cfg file

2017-06-27 Thread Jacek Piasecki
From: Kuba Kozak This patch shows how to pass arguments to application using config.ini file. If a --cfgfile-path option is passed into commandline non EAL section, then the file is loaded and used by app. If a config.ini file is present in current working directory, and no --cfgfile-path opti

[dpdk-dev] [PATCH v3 3/3] app/testpmd: add parse arguments from JSON config file

2017-06-27 Thread Jacek Piasecki
From: Kuba Kozak This patch shows usage of Jansson library to parse application arguments from JSON config file. https://github.com/akheron/jansson If a --cfgfile-path option is passed into commandline non EAL section, then the disired JSON file is loaded and used by app. In case when JSON doe

Re: [dpdk-dev] [PATCH v2] drivers/net: add support for IF-MIB and EtherLike-MIB for e1000

2017-06-27 Thread Ferruh Yigit
On 6/26/2017 10:42 AM, Radu Nicolau wrote: > From: Michal Jastrzebski > > If-MIB xstats: > ifNumber > ifIndex > ifType > ifMtu > ifSpeed > ifPhysAddress > ifOperStatus > ifLastChange > ifHighSpeed > ifConnectorPresent > ifCounterDiscontinuityTime > > EtherLike-MIB xstats: > dot3PauseOperMode > d

Re: [dpdk-dev] [PATCH v2] drivers/net: add support for IF-MIB and EtherLike-MIB for e1000

2017-06-27 Thread Bruce Richardson
On Tue, Jun 27, 2017 at 12:08:56PM +0100, Ferruh Yigit wrote: > On 6/26/2017 10:42 AM, Radu Nicolau wrote: > > From: Michal Jastrzebski > > > > If-MIB xstats: > > ifNumber > > ifIndex > > ifType > > ifMtu > > ifSpeed > > ifPhysAddress > > ifOperStatus > > ifLastChange > > ifHighSpeed > > ifConnec

Re: [dpdk-dev] [PATCH v2] drivers/net: add support for IF-MIB and EtherLike-MIB for e1000

2017-06-27 Thread Ferruh Yigit
On 6/27/2017 12:21 PM, Bruce Richardson wrote: > On Tue, Jun 27, 2017 at 12:08:56PM +0100, Ferruh Yigit wrote: >> On 6/26/2017 10:42 AM, Radu Nicolau wrote: >>> From: Michal Jastrzebski >>> >>> If-MIB xstats: >>> ifNumber >>> ifIndex >>> ifType >>> ifMtu >>> ifSpeed >>> ifPhysAddress >>> ifOperSta

[dpdk-dev] [PATCH v2] mbuf: reduce pktmbuf init cycles

2017-06-27 Thread Jerin Jacob
There is no need for initializing the complete packet buffer with zero as the packet data area will be overwritten by the NIC Rx HW anyway. The testpmd configures the packet mempool with around 180k buffers with 2176B size. In existing scheme, the init routine needs to memset around ~370MB vs the

[dpdk-dev] [PATCH] app/testpmd: update ddp add command parameters

2017-06-27 Thread Andrey Chilikin
This patch adds optional output file path to 'ddp add' command: 'ddp add (port) (profile_path[,output_path])' Signed-off-by: Andrey Chilikin --- app/test-pmd/cmdline.c | 29 ++--- app/test-pmd/config.c | 21 +

Re: [dpdk-dev] [PATCH v8 2/2] config: enable vhost numa awareness by default

2017-06-27 Thread Hemant Agrawal
On 6/27/2017 3:29 PM, Jerin Jacob wrote: -Original Message- Date: Tue, 27 Jun 2017 15:11:07 +0530 From: Hemant Agrawal To: Thomas Monjalon CC: Ilya Maximets , dev@dpdk.org, David Marchand , Sergio Gonzalez Monroy , Heetae Ahn , Yuanhan Liu , Jianfeng Tan , Neil Horman , Yulong Pei

Re: [dpdk-dev] [PATCH v5 05/12] bus: introduce hotplug functionality

2017-06-27 Thread Bruce Richardson
On Mon, Jun 26, 2017 at 02:22:03AM +0200, Gaetan Rivet wrote: > From: Jan Blunck > > Signed-off-by: Jan Blunck > Signed-off-by: Gaetan Rivet > --- Acked-by: Bruce Richardson

Re: [dpdk-dev] [PATCH v5 06/12] vdev: implement find_device bus operation

2017-06-27 Thread Bruce Richardson
On Mon, Jun 26, 2017 at 02:22:04AM +0200, Gaetan Rivet wrote: > From: Jan Blunck > > Signed-off-by: Jan Blunck > Signed-off-by: Gaetan Rivet > --- Acked-by: Bruce Richardson

[dpdk-dev] [PATCH v2] net/tap: restore state of remote device when closing

2017-06-27 Thread Thomas Monjalon
When exiting a DPDK application, the TAP remote was left with the link down even if it was initially up. The device flags of the remote netdevice are saved when probing, and restored when calling the close function. The remote state is not set down when calling the stop function anymore. Signed-o

Re: [dpdk-dev] [PATCH v5 07/12] vdev: implement hotplug functionality

2017-06-27 Thread Bruce Richardson
On Mon, Jun 26, 2017 at 02:22:05AM +0200, Gaetan Rivet wrote: > Signed-off-by: Gaetan Rivet > --- > lib/librte_eal/common/eal_common_vdev.c | 36 > + > 1 file changed, 36 insertions(+) > Acked-by: Bruce Richardson

Re: [dpdk-dev] [PATCH v5 08/12] vdev: expose bus name

2017-06-27 Thread Bruce Richardson
On Mon, Jun 26, 2017 at 02:22:06AM +0200, Gaetan Rivet wrote: > Signed-off-by: Gaetan Rivet > --- The reason for this change is not explained, so either it explain it, or better, IMHO, just merge with the next patch, since it's a one-line change. If kept as separate patch: Acked-by: Bruce Richa

Re: [dpdk-dev] [PATCH v8 2/2] config: enable vhost numa awareness by default

2017-06-27 Thread Jerin Jacob
-Original Message- > Date: Tue, 27 Jun 2017 17:47:44 +0530 > From: Hemant Agrawal > To: Jerin Jacob > CC: Thomas Monjalon , Ilya Maximets > , dev@dpdk.org, David Marchand > , Sergio Gonzalez Monroy > , Heetae Ahn , > Yuanhan Liu , Jianfeng Tan , > Neil Horman , Yulong Pei , > Bruce

[dpdk-dev] [PATCH v3 0/3] next-eventdev: evendev pipeline sample app

2017-06-27 Thread David Hunt
This patchset introduces a sample application that demonstrates a pipeline model for packet processing. Running this sample app with 17.05-rc2 or later is recommended. Changes in patch v2: * None, incorrect patch upload Changes in patch v3: * Re-work based on comments on mailing list. No majo

[dpdk-dev] [PATCH v3 1/3] examples/eventdev_pipeline: added sample app

2017-06-27 Thread David Hunt
From: Harry van Haaren This commit adds a sample app for the eventdev library. The app has been tested with DPDK 17.05-rc2, hence this release (or later) is recommended. The sample app showcases a pipeline processing use-case, with event scheduling and processing defined per stage. The applicati

[dpdk-dev] [PATCH v3 3/3] doc: add eventdev library to programmers guide

2017-06-27 Thread David Hunt
From: Harry van Haaren This commit adds an entry in the programmers guide explaining the eventdev library. The rte_event struct, queues and ports are explained. An API walktrough of a simple two stage atomic pipeline provides the reader with a step by step overview of the expected usage of the E

[dpdk-dev] [PATCH v3 2/3] doc: add eventdev pipeline to sample app ug

2017-06-27 Thread David Hunt
From: Harry van Haaren Add a new entry in the sample app user-guides, which details the working of the eventdev_pipeline. Signed-off-by: Harry van Haaren Signed-off-by: David Hunt --- doc/guides/sample_app_ug/eventdev_pipeline.rst | 188 + doc/guides/sample_app_ug/inde

Re: [dpdk-dev] [PATCH v5 09/12] vdev: use standard bus registration function

2017-06-27 Thread Bruce Richardson
On Mon, Jun 26, 2017 at 02:22:07AM +0200, Gaetan Rivet wrote: > Signed-off-by: Gaetan Rivet > --- > lib/librte_eal/common/eal_common_vdev.c | 18 +- > 1 file changed, 1 insertion(+), 17 deletions(-) > Acked-by: Bruce Richardson

Re: [dpdk-dev] [PATCH v8 2/2] config: enable vhost numa awareness by default

2017-06-27 Thread Hemant Agrawal
On 6/27/2017 6:15 PM, Jerin Jacob wrote: -Original Message- Date: Tue, 27 Jun 2017 17:47:44 +0530 From: Hemant Agrawal To: Jerin Jacob CC: Thomas Monjalon , Ilya Maximets , dev@dpdk.org, David Marchand , Sergio Gonzalez Monroy , Heetae Ahn , Yuanhan Liu , Jianfeng Tan , Neil Horma

Re: [dpdk-dev] [PATCH 1/3] examples/eventdev_pipeline: added sample app

2017-06-27 Thread Hunt, David
Hi Jerin: On 27/6/2017 10:35 AM, Jerin Jacob wrote: -Original Message- Date: Mon, 26 Jun 2017 15:46:47 +0100 From: "Hunt, David" To: Jerin Jacob , Harry van Haaren CC: dev@dpdk.org, Gage Eads , Bruce Richardson Subject: Re: [dpdk-dev] [PATCH 1/3] examples/eventdev_pipeline: adde

[dpdk-dev] [PATCH] ether: add support for vtune task tracing

2017-06-27 Thread ilia . kurakin
From: Ilia Kurakin The patch adds tracing of loop iterations that yielded no packets in a DPDK application. It is using ITT task API: https://software.intel.com/en-us/node/544206 We suppose the flow of using this tracing would assume the user has ITT lib and header on machine and re-build DP

Re: [dpdk-dev] [PATCH v6 0/2] ethdev: abstraction layer for QoS traffic management

2017-06-27 Thread Dumitrescu, Cristian
> This patch set introduces an ethdev-based abstraction layer for Quality of > Service (QoS) Traffic Management, which includes: hierarchical scheduling, > traffic shaping, congestion management, packet marking. The goal is to > provide a simple generic API that is agnostic of the underlying HW, SW

Re: [dpdk-dev] bug: virtio PMD sends malformed packets for 32-bit processes on 64-bit kernel

2017-06-27 Thread Frederico Cadete
On Mon, 2017-06-26 at 18:15 +0800, Tan, Jianfeng wrote: > On 6/26/2017 4:14 PM, Frederico Cadete wrote: > > > > On Fri, 2017-06-23 at 23:36 +0800, Tan, Jianfeng wrote: > > > > > > Hi Cadete, > > > > > > > > > On 6/22/2017 10:58 PM, Frederico Cadete wrote: > > > > > > > > Hello, > > > > > > >

[dpdk-dev] [PATCH v3 00/17] net/i40e: base code update

2017-06-27 Thread Jingjing Wu
v3 chanes: - extra patch to update README - remove unnecessary code - fix checkpatch warnings v2 changes: - fix compile issue - update from package from 2017.05.24 to 2017.06.23 i40e base code upate. The main changes are: - use virtchnl.h instead of i40e_virtchnl.h - add support for Adapti

[dpdk-dev] [PATCH v3 01/17] net/i40e/base: use new virtchnl header file

2017-06-27 Thread Jingjing Wu
Modify the necessary files to be compatible with the new virtchnl.h file instead of relying on i40e_virtchnl.h variant. This mostly changes references to VIRTCHNL_ variables by removing prefix of I40E_. Signed-off-by: Jingjing Wu --- drivers/net/i40e/base/i40e_common.c| 24 +- drivers/net/i

[dpdk-dev] [PATCH v3 02/17] net/i40e/base: sync nvmupdate command and adminq subtask

2017-06-27 Thread Jingjing Wu
During NVMupdate, state machine gets into unrecoverable state because i40e_clean_adminq_subtask can get scheduled after the admin queue command but before other state variables are updated. This patch adds locking around admin queue command and update of state variables so that adminq_subtask will

[dpdk-dev] [PATCH v3 03/17] net/i40e/base: add AQ command for read/write PHY registers

2017-06-27 Thread Jingjing Wu
This patch adds new additional command for accessing to PHY registers. Signed-off-by: Jingjing Wu --- drivers/net/i40e/base/i40e_adminq_cmd.h | 18 + drivers/net/i40e/base/i40e_common.c | 70 + drivers/net/i40e/base/i40e_prototype.h | 9 + 3 file

[dpdk-dev] [PATCH v3 04/17] net/i40e/base: add support for Adaptive Virtual Function

2017-06-27 Thread Jingjing Wu
Add device id define and mac_type assignment needed for Adaptive Virtual Function. Signed-off-by: Jingjing Wu --- drivers/net/i40e/base/i40e_common.c | 1 + drivers/net/i40e/base/i40e_devids.h | 1 + 2 files changed, 2 insertions(+) diff --git a/drivers/net/i40e/base/i40e_common.c b/drivers/ne

[dpdk-dev] [PATCH v3 05/17] net/i40e/base: store the requested FEC information

2017-06-27 Thread Jingjing Wu
Store information about FEC modes, that were requested. It will be used in printing link status information function and this way there is no need to call admin queue there. Signed-off-by: Jingjing Wu --- drivers/net/i40e/base/i40e_common.c | 4 drivers/net/i40e/base/i40e_type.h | 1 + 2

[dpdk-dev] [PATCH v3 06/17] net/i40e/base: add new phy types for 25G AOC and ACC

2017-06-27 Thread Jingjing Wu
This patch adds new phy types for 25G Active Optical Cables (AOC) and Active Copper Cables (ACC) support. Signed-off-by: Jingjing Wu --- drivers/net/i40e/base/i40e_adminq_cmd.h | 4 drivers/net/i40e/base/i40e_common.c | 2 ++ 2 files changed, 6 insertions(+) diff --git a/drivers/net/i4

[dpdk-dev] [PATCH v3 09/17] net/i40e/base: update FW AQ API version to 1.7

2017-06-27 Thread Jingjing Wu
Signed-off-by: Jingjing Wu --- drivers/net/i40e/base/i40e_adminq_cmd.h | 10 +- drivers/net/i40e/base/i40e_common.c | 5 +++-- drivers/net/i40e/base/i40e_type.h | 4 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/drivers/net/i40e/base/i40e_adminq_cmd.h b

[dpdk-dev] [PATCH v3 07/17] net/i40e/base: report supported link modes

2017-06-27 Thread Jingjing Wu
Signed-off-by: Jingjing Wu --- drivers/net/i40e/base/i40e_adminq_cmd.h | 22 +++--- drivers/net/i40e/base/i40e_common.c | 18 +++--- 2 files changed, 34 insertions(+), 6 deletions(-) diff --git a/drivers/net/i40e/base/i40e_adminq_cmd.h b/drivers/net/i40e/base/i40

[dpdk-dev] [PATCH v3 08/17] net/i40e/base: track id can be 0

2017-06-27 Thread Jingjing Wu
track_id == 0 is valid for “read only” profiles when profile does not have any “write” commands. Signed-off-by: Jingjing Wu --- drivers/net/i40e/base/i40e_common.c| 7 +-- drivers/net/i40e/base/i40e_prototype.h | 12 +++- 2 files changed, 8 insertions(+), 11 deletions(-) diff -

[dpdk-dev] [PATCH v3 10/17] net/i40e/base: add support for switch parameters

2017-06-27 Thread Jingjing Wu
Adds double VLAN tagging ethertype fields to Set Switch Parameters AQ command. These were added in firmware API 1.7. Callers of i40e_aq_set_switch_config() can specify the ethertypes to use by filling out the corresponding fields in struct i40e_hw. Signed-off-by: Jingjing Wu --- drivers/net/i4

[dpdk-dev] [PATCH v3 13/17] net/i40e/base: avoid reset timeout issue

2017-06-27 Thread Jingjing Wu
This patch allows detection of upcoming core reset in case NIC gets stuck while performing FLR reset. The i40e_pf_reset() function returns I40E_ERR_NOT_READY when global reset was detected. Signed-off-by: Jingjing Wu --- drivers/net/i40e/base/i40e_common.c | 8 1 file changed, 8 inserti

[dpdk-dev] [PATCH v3 12/17] net/i40e/base: avoid potential null pointer dereference

2017-06-27 Thread Jingjing Wu
Signed-off-by: Jingjing Wu --- drivers/net/i40e/base/i40e_common.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/net/i40e/base/i40e_common.c b/drivers/net/i40e/base/i40e_common.c index 3f3b275..78ed2a8 100644 --- a/drivers/net/i40e/base/i40e_common.c +++ b/driver

[dpdk-dev] [PATCH v3 11/17] net/i40e/base: use admin queue for setting LEDs behavior

2017-06-27 Thread Jingjing Wu
Instead of accessing register directly, use newly added AQC in order to blink LEDs. Introduce and utilize a new flag to prevent excessive API version checking. Signed-off-by: Jingjing Wu --- drivers/net/i40e/base/i40e_adminq.c | 6 ++ drivers/net/i40e/base/i40e_common.c | 148 +

[dpdk-dev] [PATCH v3 15/17] net/i40e/base: extend processing of DDP

2017-06-27 Thread Jingjing Wu
This patch adds extended processing of DDP packages: - Execution of adminq command sections to support AQ-depended profiles, for example, for programming cloud filters types. - Ability to write a profile without registering it in the list of applied profiles, to be used for AQ-depended prof

[dpdk-dev] [PATCH v3 14/17] net/i40e/base: add EEPROM checksum verification

2017-06-27 Thread Jingjing Wu
This patch ensures PFs mutually exclusive access to NVM. Signed-off-by: Jingjing Wu --- drivers/net/i40e/base/i40e_nvm.c | 14 ++ 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/drivers/net/i40e/base/i40e_nvm.c b/drivers/net/i40e/base/i40e_nvm.c index 90521fa..a1e7830

[dpdk-dev] [PATCH v3 16/17] net/i40e: use set switch aq instead of register setting

2017-06-27 Thread Jingjing Wu
TPID can be set by set_switch_config aq, change the TPID setting by set_switch_config on new FW release. Signed-off-by: Jingjing Wu --- drivers/net/i40e/i40e_ethdev.c | 102 + 1 file changed, 62 insertions(+), 40 deletions(-) diff --git a/drivers/net/i40e

[dpdk-dev] [PATCH v3 17/17] net/i40e/base: update base code info

2017-06-27 Thread Jingjing Wu
Signed-off-by: Jingjing Wu --- drivers/net/i40e/base/README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/i40e/base/README b/drivers/net/i40e/base/README index 0da9f67..59e76c2 100644 --- a/drivers/net/i40e/base/README +++ b/drivers/net/i40e/base/README @@ -34,7

[dpdk-dev] [PATCH v3 1/2] net/i40e: extended list of operations for ddp processing

2017-06-27 Thread Andrey Chilikin
This patch adds ability to remove already loaded profile or write profile without registering it Signed-off-by: Andrey Chilikin --- drivers/net/i40e/rte_pmd_i40e.c | 87 + drivers/net/i40e/rte_pmd_i40e.h | 6 ++- 2 files changed, 66 insertions(+), 27 dele

[dpdk-dev] [PATCH v3 0/2] net/i40e: extended list of operations for ddp processing

2017-06-27 Thread Andrey Chilikin
This patch adds two new operations for dynamic device personalisation: * remove already loaded profile and delete it from the list * write profile without registering it This patchset depends on: [PATCH v2 00/16] net/i40e: base code update http://dpdk.org/ml/archives/dev/2017-June/068732.html http

[dpdk-dev] [PATCH v3 2/2] app/testpmd: enable ddp remove profile feature

2017-06-27 Thread Andrey Chilikin
New command 'ddp del (port) (profile_path)' removes previously loaded profile and deletes it from the list of the loaded profiles. Signed-off-by: Andrey Chilikin --- app/test-pmd/cmdline.c | 74 + doc/guides/testpmd_app_ug/testpmd_funcs.rst | 7 +

Re: [dpdk-dev] [PATCH v5 10/12] pci: implement find_device bus operation

2017-06-27 Thread Bruce Richardson
On Mon, Jun 26, 2017 at 02:22:08AM +0200, Gaetan Rivet wrote: > Signed-off-by: Gaetan Rivet > --- > lib/librte_eal/common/eal_common_pci.c | 13 + > 1 file changed, 13 insertions(+) > Acked-by: Bruce Richardson

Re: [dpdk-dev] [PATCH v5 11/12] pci: implement hotplug bus operation

2017-06-27 Thread Bruce Richardson
On Mon, Jun 26, 2017 at 02:22:09AM +0200, Gaetan Rivet wrote: > Signed-off-by: Gaetan Rivet > --- > lib/librte_eal/common/eal_common_pci.c | 44 > ++ > 1 file changed, 44 insertions(+) > > diff --git a/lib/librte_eal/common/eal_common_pci.c > b/lib/librte_eal/co

Re: [dpdk-dev] [PATCH v2 3/6] net/vmxnet3: Generate link-state change notifications

2017-06-27 Thread Ferruh Yigit
On 6/15/2017 1:16 PM, Charles (Chas) Williams wrote: > From: Robert Shearman > > Generate link-state change notifications by listening to interrupts > generated by the device. Make use of the existing > vmxnet3_process_events function that was compiled out, but change it > to call vmxnet3_dev_lin

Re: [dpdk-dev] [PATCH v3 7/8] mk: sort object files when building deps lists

2017-06-27 Thread Thomas Monjalon
27/06/2017 12:43, Luca Boccassi: > On Tue, 2017-06-27 at 01:20 +0200, Thomas Monjalon wrote: > > 23/06/2017 20:41, lbocc...@brocade.com: > > > From: Luca Boccassi > > > > > > In order to achieve reproducible builds, always use the same > > > order when listing object files to build dependencies l

Re: [dpdk-dev] [PATCH v5 04/12] bus: add bus iterator to find a device

2017-06-27 Thread Bruce Richardson
On Mon, Jun 26, 2017 at 02:22:02AM +0200, Gaetan Rivet wrote: > From: Jan Blunck > > Signed-off-by: Jan Blunck > Signed-off-by: Gaetan Rivet > --- > lib/librte_eal/bsdapp/eal/rte_eal_version.map | 1 + > lib/librte_eal/common/eal_common_bus.c | 24 +++ > lib/lib

Re: [dpdk-dev] [PATCH v5 12/12] eal: make virtual driver probe and remove take rte_vdev_device

2017-06-27 Thread Bruce Richardson
On Mon, Jun 26, 2017 at 02:22:10AM +0200, Gaetan Rivet wrote: > From: Jan Blunck > > This is a preparation to embed the generic rte_device into the rte_eth_dev > also for virtual devices. > > Signed-off-by: Jan Blunck > Signed-off-by: Gaetan Rivet > --- > lib/librte_eal/common/eal_common_dev.

Re: [dpdk-dev] [PATCH v5 12/12] eal: make virtual driver probe and remove take rte_vdev_device

2017-06-27 Thread Bruce Richardson
I'm also not sure about the commit title of this patch. It doesn't match my understanding of what the patch does. /Bruce On Mon, Jun 26, 2017 at 02:22:10AM +0200, Gaetan Rivet wrote: > From: Jan Blunck > > This is a preparation to embed the generic rte_device into the rte_eth_dev > also for vir

[dpdk-dev] [PATCH v4 00/17] net/i40e: base code update

2017-06-27 Thread Jingjing Wu
v4 changes: - fix more checkpatch warnings v3 changes: - extra patch to update README - remove unnecessary code - fix checkpatch warning v2 changes: - fix compile issue - update from package from 2017.05.24 to 2017.06.23 i40e base code upate. The main changes are: - use virtchnl.h instead

[dpdk-dev] [PATCH v4 01/17] net/i40e/base: use new virtchnl header file

2017-06-27 Thread Jingjing Wu
Modify the necessary files to be compatible with the new virtchnl.h file instead of relying on i40e_virtchnl.h variant. This mostly changes references to VIRTCHNL_ variables by removing prefix of I40E_. Signed-off-by: Jingjing Wu --- drivers/net/i40e/base/i40e_common.c| 24 +- drivers/net/i

[dpdk-dev] [PATCH v4 02/17] net/i40e/base: sync nvmupdate command and adminq subtask

2017-06-27 Thread Jingjing Wu
During NVMupdate, state machine gets into unrecoverable state because i40e_clean_adminq_subtask can get scheduled after the admin queue command but before other state variables are updated. This patch adds locking around admin queue command and update of state variables so that adminq_subtask will

[dpdk-dev] [PATCH v4 03/17] net/i40e/base: add AQ command for read/write PHY registers

2017-06-27 Thread Jingjing Wu
This patch adds new additional command for accessing to PHY registers. Signed-off-by: Jingjing Wu --- drivers/net/i40e/base/i40e_adminq_cmd.h | 18 + drivers/net/i40e/base/i40e_common.c | 70 + drivers/net/i40e/base/i40e_prototype.h | 9 + 3 file

[dpdk-dev] [PATCH v4 04/17] net/i40e/base: add support for Adaptive Virtual Function

2017-06-27 Thread Jingjing Wu
Add device id define and mac_type assignment needed for Adaptive Virtual Function. Signed-off-by: Jingjing Wu --- drivers/net/i40e/base/i40e_common.c | 1 + drivers/net/i40e/base/i40e_devids.h | 1 + 2 files changed, 2 insertions(+) diff --git a/drivers/net/i40e/base/i40e_common.c b/drivers/ne

[dpdk-dev] [PATCH v4 05/17] net/i40e/base: store the requested FEC information

2017-06-27 Thread Jingjing Wu
Store information about FEC modes, that were requested. It will be used in printing link status information function and this way there is no need to call admin queue there. Signed-off-by: Jingjing Wu --- drivers/net/i40e/base/i40e_common.c | 4 drivers/net/i40e/base/i40e_type.h | 1 + 2

  1   2   >