[dpdk-dev] [PATCH v4] app/testpmd: add option ring-bind-lcpu to bind Q with CPU

2018-01-10 Thread wei . guo . simon
From: Simon Guo Currently the rx/tx queue is allocated from the buffer pool on socket of: - port's socket if --port-numa-config specified - or ring-numa-config setting per port All the above will "bind" queue to single socket per port configuration. But it can actually archieve better performanc

Re: [dpdk-dev] [PATCH] build: add support for detecting march on ARM

2018-01-10 Thread Pavan Nikhilesh
On Mon, Jan 08, 2018 at 05:05:47PM +, Bruce Richardson wrote: > On Sat, Dec 30, 2017 at 10:07:54PM +0530, Pavan Nikhilesh wrote: > > Added support for detecting march and mcpu by reading midr_el1 register. > > The implementer, primary part number values read can be used to figure > > out the un

[dpdk-dev] [PATCH 0/8] net/ixgbe: update base code

2018-01-10 Thread Qiming Yang
The patchset update ixgbe base code base on latest CID drop cid- ixgbe.2018.01.02.tar.gz, couple issues are fixed, include: SECRX_RDY polling frequency and semaphore timeout, PHY initialization code not cleanup, uninitialized padding, PHY init fails, SW resource bits sync and some compile issues fo

[dpdk-dev] [PATCH 2/8] net/ixgbe/base: increasing timeout

2018-01-10 Thread Qiming Yang
Increasing SECRX_RDY polling frequency and semaphore timeout. Fixed the FWSW.PT check in ixgbe_mng_present(). Signed-off-by: Qiming Yang --- drivers/net/ixgbe/base/ixgbe_common.c | 4 ++-- drivers/net/ixgbe/base/ixgbe_x540.c | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git

[dpdk-dev] [PATCH 1/8] net/ixgbe/base: add common FW version functions

2018-01-10 Thread Qiming Yang
Added common functions for getting OEM product verison, option ROM version, and ETrack id. Signed-off-by: Qiming Yang --- drivers/net/ixgbe/base/ixgbe_common.c | 111 ++ drivers/net/ixgbe/base/ixgbe_common.h | 6 ++ drivers/net/ixgbe/base/ixgbe_type.h | 47 ++

[dpdk-dev] [PATCH 3/8] net/ixgbe/base: x550 related bug fix

2018-01-10 Thread Qiming Yang
Added error code when PHY init fails. Cleanup PHY initialization code. Fixed the error use of uninitialized padding. Added x553 SGMII 10/100Mbps support. Signed-off-by: Qiming Yang --- drivers/net/ixgbe/base/ixgbe_common.c | 19 +++-- drivers/net/ixgbe/base/ixgbe_x550.c | 144 ++--

[dpdk-dev] [PATCH 5/8] net/ixgbe/base: clear sync register during init

2018-01-10 Thread Qiming Yang
Cleared SW resource bits in synchronization register and update host interface resource bit error case to X540. Fix complier warnings for gcc 7. Signed-off-by: Qiming Yang --- drivers/net/ixgbe/base/ixgbe_82599.c | 10 +++--- drivers/net/ixgbe/base/ixgbe_common.c | 4 ++-- drivers/net/ixgb

[dpdk-dev] [PATCH 4/8] net/ixgbe/base: changed method for flash read

2018-01-10 Thread Qiming Yang
Stored host interface read resolte in two bytes instead of one byte. And added definitions for LESM module structure. Signed-off-by: Qiming Yang --- drivers/net/ixgbe/base/ixgbe_common.c | 22 +++--- drivers/net/ixgbe/base/ixgbe_type.h | 10 ++ 2 files changed, 29 inser

[dpdk-dev] [PATCH 6/8] net/ixgbe/base: update function comments

2018-01-10 Thread Qiming Yang
This patch mainly adds/removes comments for function parameters that were missing or no longer needed. Signed-off-by: Qiming Yang --- drivers/net/ixgbe/base/ixgbe_82598.c | 3 ++- drivers/net/ixgbe/base/ixgbe_82599.c | 14 +++--- drivers/net/ixgbe/base/ixgbe_api.c | 16 +++

[dpdk-dev] [PATCH 8/8] net/ixgbe/base: update README file

2018-01-10 Thread Qiming Yang
Update README file to specify the version of CID drop. Signed-off-by: Qiming Yang --- drivers/net/ixgbe/base/README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ixgbe/base/README b/drivers/net/ixgbe/base/README index 8c833b4..70fdfe7 100644 --- a/drivers/net/ix

[dpdk-dev] [PATCH 7/8] net/ixgbe/base: added media type fiber fixed

2018-01-10 Thread Qiming Yang
Added function ixgbe_media_type_fiber_fixed. Signed-off-by: Qiming Yang --- drivers/net/ixgbe/base/ixgbe_82599.c | 7 +++ drivers/net/ixgbe/base/ixgbe_api.c| 2 ++ drivers/net/ixgbe/base/ixgbe_common.c | 6 ++ drivers/net/ixgbe/base/ixgbe_mbx.c| 22 -- dri

[dpdk-dev] [RFC v3] Compression API in DPDK :SW ZLIB PMD

2018-01-10 Thread Verma, Shally
Hi Fiona We are planning to implement ZLIB based SW PMD to proof-concept DPDK compression RFC v3 API spec internally. However, would like to check If you're working upon similar in parallel and if yes, then what's your development roadmap / strategy so that we could see if we could leverage join

Re: [dpdk-dev] [PATCH v1] app/testpmd: support command echo in CLI batch loading

2018-01-10 Thread Lu, Wenzhuo
Hi Xueming, > -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Xueming Li > Sent: Tuesday, December 26, 2017 10:26 PM > Cc: Xueming Li ; Wu, Jingjing > ; dev@dpdk.org; Olivier MATZ > ; Burakov, Anatoly > Subject: [dpdk-dev] [PATCH v1] app/testpmd: support command

Re: [dpdk-dev] [PATCH 0/8] net/ixgbe: update base code

2018-01-10 Thread Lu, Wenzhuo
Hi, > -Original Message- > From: Yang, Qiming > Sent: Thursday, January 11, 2018 12:05 AM > To: dev@dpdk.org > Cc: Lu, Wenzhuo ; Dai, Wei ; > Yang, Qiming > Subject: [PATCH 0/8] net/ixgbe: update base code > > The patchset update ixgbe base code base on latest CID drop cid- > ixgbe.2018

Re: [dpdk-dev] [PATCH v2 2/2] app/testpmd: fix invalid txq number setting

2018-01-10 Thread Dai, Wei
> -Original Message- > From: Yang, Qiming > Sent: Wednesday, January 10, 2018 2:38 PM > To: Dai, Wei ; Lu, Wenzhuo ; > Wu, Jingjing ; Peng, Yuan ; > Ananyev, Konstantin > Cc: dev@dpdk.org; sta...@dpdk.org; Dai, Wei > Subject: RE: [dpdk-dev] [PATCH v2 2/2] app/testpmd: fix invalid txq numb

Re: [dpdk-dev] [PATCH v1] app/testpmd: support command echo in CLI batch loading

2018-01-10 Thread Xueming(Steven) Li
> -Original Message- > From: Lu, Wenzhuo [mailto:wenzhuo...@intel.com] > Sent: Wednesday, January 10, 2018 4:36 PM > To: Xueming(Steven) Li > Cc: Wu, Jingjing ; dev@dpdk.org; Olivier MATZ > ; Burakov, Anatoly > Subject: RE: [dpdk-dev] [PATCH v1] app/testpmd: support command echo in > CLI

[dpdk-dev] [PATCH v3 0/2] app/testpmd: fix invalid rxq and txq nubmer setting

2018-01-10 Thread Wei Dai
If an invlaid number of RX or TX queues is configured from testpmd command like "port config all rxq number" or "port config all txq number". The global variable rxq or txq is updated by the invalid input. This can cause testpmd crash. For example, if the maximum number of RX or TX queues is 4, tes

[dpdk-dev] [PATCH v3 2/2] app/testpmd: fix invalid txq number setting

2018-01-10 Thread Wei Dai
If an invalid TX queue is configured from testpmd command like "port config all txq number", the global variable txq is updated by this invalid value. It may cause testpmd crash. This patch restores its last correct value when an invalid txq number configured is detected. Fixes: ce8d561418d4 ("app

[dpdk-dev] [PATCH v3 1/2] app/testpmd: fix invalid rxq number setting

2018-01-10 Thread Wei Dai
If an invalid RX queue is configured from testpmd command like "port config all rxq number", the global variable rxq is updated by this invalid value. It may cause testpmd crash. This patch restores its last correct value when an invalid rxq number configured is detected. Fixes: ce8d561418d4 ("app

[dpdk-dev] [PATCH v4 00/11] convert testpmd to new ethdev offloads API

2018-01-10 Thread Shahaf Shuler
This series is to convert testpmd application to the new offloads API [1]. on v4: - Enable FAST_FREE Tx offload by default if device supports. - Fix commit log for the VLAN configuration patch. on v3: - Remove warn prints on bad offloads configuration from application. on v2: - Splited the p

[dpdk-dev] [PATCH v4 03/11] app/testpmd: support check of single port stop

2018-01-10 Thread Shahaf Shuler
This patch adds supports for checking if a single port is stopped. currently there is a function to check only for all ports. Signed-off-by: Shahaf Shuler Acked-by: Wenzhuo Lu --- app/test-pmd/testpmd.c | 16 app/test-pmd/testpmd.h | 1 + 2 files changed, 13 insertions(+), 4 d

[dpdk-dev] [PATCH v4 04/11] app/testpmd: convert to new Ethdev Tx offloads API

2018-01-10 Thread Shahaf Shuler
Ethdev Tx offloads API has changed since: commit cba7f53b717d ("ethdev: introduce Tx queue offloads API") Convert the application to use the new API. This patch mandates the port to be stopped when configure the Tx offloads. This is because the PMD must be aware to the offloads changes on the de

[dpdk-dev] [PATCH v4 01/11] app/testpmd: fix port configuration print

2018-01-10 Thread Shahaf Shuler
The print of the port configuration was only according to configuration of the first port. Fixes: f2c5125a686a ("app/testpmd: use default Rx/Tx port configuration") Cc: pablo.de.lara.gua...@intel.com Cc: sta...@dpdk.org Signed-off-by: Shahaf Shuler Acked-by: Wenzhuo Lu --- app/test-pmd/config.

[dpdk-dev] [PATCH v4 02/11] app/testpmd: convert to new Ethdev Rx offloads API

2018-01-10 Thread Shahaf Shuler
Ethdev Rx offloads API has changed since: commit ce17eddefc20 ("ethdev: introduce Rx queue offloads API") Convert the application to use the new API. The is no functionality changes rather simple conversion of the flags. Signed-off-by: Shahaf Shuler Acked-by: Wenzhuo Lu --- app/test-pmd/cmdli

[dpdk-dev] [PATCH v4 05/11] app/testpmd: fix flowgen forwarding ol flags

2018-01-10 Thread Shahaf Shuler
The mbuf ol_flags were taken directly from testpmd internal enumeration leading to incorrect values. addressing only insertion offload flags as the checksum flags by the application design are only with csum forwarding. Fixes: e9e23a617eb8 ("app/testpmd: add flowgen forwarding engine") Cc: cchemp

[dpdk-dev] [PATCH v4 06/11] app/testpmd: cleanup internal Tx offloads flags field

2018-01-10 Thread Shahaf Shuler
The tx_ol_flags field was used in order to control the different Tx offloads set. After the conversion to the new Ethdev Tx offloads API it is not needed anymore as the offloads configuration is stored in ethdev structs. Signed-off-by: Shahaf Shuler Acked-by: Wenzhuo Lu --- app/test-pmd/cmdline

[dpdk-dev] [PATCH v4 07/11] app/testpmd: add command line option for Tx offloads

2018-01-10 Thread Shahaf Shuler
This patch adds command line option to set hex value for the ports Tx offloads flags. Signed-off-by: Shahaf Shuler --- app/test-pmd/parameters.c | 17 +++-- app/test-pmd/testpmd.c| 4 app/test-pmd/testpmd.h| 2 ++ doc/guides/testpmd_

[dpdk-dev] [PATCH v4 08/11] app/testpmd: remove txqflags

2018-01-10 Thread Shahaf Shuler
Since testpmd is now using the new Ethdev offloads API and there is a way configure each of the tx offloads from CLI or command line, there is no need for the txqflags configuration anymore. Signed-off-by: Shahaf Shuler Acked-by: Nelio Laranjeiro Acked-by: Wenzhuo Lu --- app/test-pmd/cmdline.c

[dpdk-dev] [PATCH v4 10/11] app/testpmd: adjust on the flight VLAN configuration

2018-01-10 Thread Shahaf Shuler
On ethdev there is an API to configure VLAN offloads after the port was started and without reconfiguration of the port or queues. In the current design of the application, when the Rx offloads are changed (through "port config all" CLI command) the port configuration is overwritten, therefore the

[dpdk-dev] [PATCH v4 11/11] app/testpmd: enable fast free Tx offload by default

2018-01-10 Thread Shahaf Shuler
Enable the DEV_TX_OFFLOAD_MBUF_FAST_FREE in case the underlying device supports. This is to preserve the previous offloads configuration made according to the PMD defaults. Signed-off-by: Shahaf Shuler --- app/test-pmd/testpmd.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff

[dpdk-dev] [PATCH v4 09/11] app/testpmd: enforce offloads caps

2018-01-10 Thread Shahaf Shuler
In the current design it was possible for offload to be set even though the device is not supporting it. A warning message was printed instead. This is a wrong behaviour, as application should set only the offloads reported by the capabilities of the device. This patch adds verification for the o

[dpdk-dev] [PATCH V9 2/5] eal: add uevent pass and process function

2018-01-10 Thread Jeff Guo
In order to handle the uevent which have been detected from the kernel side, add uevent process function, let hot plug event to be example to show uevent mechanism how to pass the uevent and process the uevent. About uevent passing and processing, add below functions in linux eal dev layer. FreeBS

[dpdk-dev] [PATCH V9 1/5] eal: add uevent monitor api and callback func

2018-01-10 Thread Jeff Guo
This patch aim to add a general uevent mechanism in eal device layer, to enable all linux kernel object uevent monitoring, user could use these APIs to monitor and read out the device status info that sent from the kernel side, then corresponding to handle it, such as when detect hotplug uevent typ

[dpdk-dev] [PATCH V9 0/5] add uevent mechanism in eal framework

2018-01-10 Thread Jeff Guo
So far, about hot plug in dpdk, we already have hot plug add/remove api and fail-safe driver to offload the fail-safe work from the app user. But there are still lack of a general event api to detect all hotplug event for all driver,now the hotplug interrupt event is diversity between each device a

[dpdk-dev] [PATCH V9 3/5] app/testpmd: use uevent to monitor hotplug

2018-01-10 Thread Jeff Guo
use testpmd for example, to show app how to request and use uevent monitoring to handle the hot removal event and the hot insertion event. Signed-off-by: Jeff Guo --- v9->v8: split the patch set into small and explicit patch --- app/test-pmd/testpmd.c | 179 ++

[dpdk-dev] [PATCH V9 4/5] pci_uio: add uevent hotplug failure handler in pci

2018-01-10 Thread Jeff Guo
when detect hot removal uevent of device, the device resource become invalid, in order to avoid unexpected usage of this resource, remap the device resource to be a fake memory, that would lead the application keep running well but not encounter system core dump. Signed-off-by: Jeff Guo --- v9->v

[dpdk-dev] [PATCH V9 5/5] pci: add driver auto bind for hot insertion

2018-01-10 Thread Jeff Guo
Normally we bind nic driver before application running, so if we want to automatically driver binding after application run, need to implement a auto bind function, that would benefit for hot insertion case, when detect hot insertion uevent of device, auto bind the driver according some user policy

[dpdk-dev] [PATCH v3 1/7] net/mlx5: change pkt burst select function prototype

2018-01-10 Thread Shahaf Shuler
Change the function prototype to return the function pointer of the selected Tx/Rx burst function instead of assigning it directly to the device context. Such change will enable to use those select functions to query the burst function that will be selected according to the device configuration.

[dpdk-dev] [PATCH v3 3/7] net/mlx5: rename counter set in configuration

2018-01-10 Thread Shahaf Shuler
From: Nelio Laranjeiro Counter_set is a counter used for flows when its support is available. Renaming it to flow counter. Signed-off-by: Nelio Laranjeiro --- drivers/net/mlx5/mlx5.c | 3 +-- drivers/net/mlx5/mlx5.h | 2 +- drivers/net/mlx5/mlx5_flow.c | 2 +- 3 files changed, 3 inse

[dpdk-dev] [PATCH v3 2/7] net/mlx5: add device configuration structure

2018-01-10 Thread Shahaf Shuler
Move device configuration and features capabilities to its own structure. This structure is filled by mlx5_pci_probe(), outside of this function it should be treated as *read only*. This configuration struct will be used for the Tx/Rx queue setup to select the Tx/Rx queue parameters based on the u

[dpdk-dev] [PATCH v3 0/7] convert mlx PMDs to new ethdev offloads API

2018-01-10 Thread Shahaf Shuler
This series is to convert mlx4 and mlx5 PMDs to the new offloads API [1]. On v3: - address almost all of Adrien's comments on mlx4. On v2: - New design to hold PMD specific args and combine them with offloads requested. - Fix missing IPV4 checksum flag on vector function selection. - Verif

[dpdk-dev] [PATCH v3 4/7] net/mlx5: convert to new Tx offloads API

2018-01-10 Thread Shahaf Shuler
Ethdev Tx offloads API has changed since: commit cba7f53b717d ("ethdev: introduce Tx queue offloads API") This commit support the new Tx offloads API. Signed-off-by: Shahaf Shuler Acked-by: Nelio Laranjeiro --- doc/guides/nics/mlx5.rst | 15 +++ drivers/net/mlx5/mlx5.c |

[dpdk-dev] [PATCH v3 7/7] net/mlx4: convert to new Rx offloads API

2018-01-10 Thread Shahaf Shuler
Ethdev Rx offloads API has changed since: commit ce17eddefc20 ("ethdev: introduce Rx queue offloads API") This commit support the new Rx offloads API. Signed-off-by: Shahaf Shuler --- drivers/net/mlx4/mlx4_ethdev.c | 9 ++--- drivers/net/mlx4/mlx4_flow.c | 5 ++- drivers/net/mlx4/mlx4_rxq.

[dpdk-dev] [PATCH v3 6/7] net/mlx4: convert to new Tx offloads API

2018-01-10 Thread Shahaf Shuler
Ethdev Tx offloads API has changed since: commit cba7f53b717d ("ethdev: introduce Tx queue offloads API") This commit support the new Tx offloads API. Signed-off-by: Shahaf Shuler --- drivers/net/mlx4/mlx4_ethdev.c | 7 +--- drivers/net/mlx4/mlx4_rxtx.h | 1 + drivers/net/mlx4/mlx4_txq.c

[dpdk-dev] [PATCH v3 5/7] net/mlx5: convert to new Rx offloads API

2018-01-10 Thread Shahaf Shuler
Ethdev Rx offloads API has changed since: commit ce17eddefc20 ("ethdev: introduce Rx queue offloads API") This commit support the new Rx offloads API. Signed-off-by: Shahaf Shuler Acked-by: Nelio Laranjeiro --- drivers/net/mlx5/mlx5_ethdev.c | 23 +--- drivers/net/mlx5/mlx5_rxq.c| 10

[dpdk-dev] [PATCH] doc: minor updates to the enic guide

2018-01-10 Thread John Daley
From: Hyong Youb Kim Fix typos, inconsistencies, duplicate text, and so on. Signed-off-by: Hyong Youb Kim Reviewed-by: John Daley --- doc/guides/nics/enic.rst | 52 +--- 1 file changed, 27 insertions(+), 25 deletions(-) diff --git a/doc/guides/nics

[dpdk-dev] [PATCH] net/enic: do not set checksum unkonwn offload flag

2018-01-10 Thread John Daley
From: Hyong Youb Kim PKT_RX_IP_CKSUM_UNKNOWN and PKT_RX_L4_CKSUM_UNKNOWN are zeros, so no need to set them. Signed-off-by: Hyong Youb Kim Reviewed-by: John Daley --- drivers/net/enic/enic_rxtx.c | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/drivers/net/enic/enic_rxtx

[dpdk-dev] [PATCH] net/enic: use the new ethdev offloads API

2018-01-10 Thread John Daley
From: Hyong Youb Kim The following commits deprecate the use of the offload bit fields (e.g. header_split) in rte_eth_rxmode and txq_flags in rte_eth_txconf. commit ce17eddefc20 ("ethdev: introduce Rx queue offloads API") commit cba7f53b717d ("ethdev: introduce Tx queue offloads API") For enic,

[dpdk-dev] [PATCH] net/enic: fix L4 Rx ptype comparison

2018-01-10 Thread John Daley
From: Hyong Youb Kim For non-UDP/TCP packets, enic may wrongly set PKT_RX_L4_CKSUM_BAD in ol_flags. The comparison that checks if a packet is UDP or TCP assumes that RTE_PTYPE_L4 values are bit flags, but they are not. For example, the following evaluates to true because NONFRAG is 0x600 and UDP

[dpdk-dev] [PATCH] net/enic: remove remaining header-split code

2018-01-10 Thread John Daley
From: Hyong Youb Kim Header splitting has been disabled at least since the following commit. Remove the remaining code to avoid confusion. commit 947d860c821f ("enic: improve Rx performance") Signed-off-by: Hyong Youb Kim Reviewed-by: John Daley --- drivers/net/enic/base/vnic_dev.c |

[dpdk-dev] [PATCH] maintainers: update for enic

2018-01-10 Thread John Daley
Welcome Hyong Youb Kim. Signed-off-by: John Daley --- MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index d64cd243d..86eb7bb0d 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -391,7 +391,7 @@ F: doc/guides/nics/features/cxgbe.ini Cisco

[dpdk-dev] [PATCH] net/enic: use dynamic log types

2018-01-10 Thread John Daley
From: Hyong Youb Kim "pmd.enic.init" replaces CONFIG_RTE_LIBRTE_ENIC_DEBUG "pmd.enic.flow" replaces CONFIG_RTE_LIBRTE_ENIC_DEBUG_FLOW Signed-off-by: Hyong Youb Kim Reviewed-by: John Daley --- config/common_base | 2 -- doc/guides/nics/enic.rst | 6 -- drivers/net/enic/

[dpdk-dev] [PATCH] net/enic: refill only the address of the RQ descriptor

2018-01-10 Thread John Daley
From: Hyong Youb Kim Once the RQ descriptors are initialized (enic_alloc_rx_queue_mbufs), their length_type does not change during normal RX operations. rx_pkt_burst only needs to reset their address field for newly allocated mbufs. Signed-off-by: Hyong Youb Kim Reviewed-by: John Daley --- dr

[dpdk-dev] [PATCH] net/enic: remove a couple unnecessary statements

2018-01-10 Thread John Daley
From: Hyong Youb Kim No need to zero ol_flags as it is overwritten at the end of the function. No need to check for EOP as the caller (enic_recv_pkts) has already checked it. Signed-off-by: Hyong Youb Kim Reviewed-by: John Daley --- drivers/net/enic/enic_rxtx.c | 10 +- 1 file changed

[dpdk-dev] [PATCH] net/enic: use BSD-3-Clause

2018-01-10 Thread John Daley
From: Hyong Youb Kim enic is currently using BSD-2-Clause, whereas the DPDK approved license is BSD-3-Clause. So replace license text with BSD-3-Clause. Remove LICENSE as it is redundant. Signed-off-by: Hyong Youb Kim Reviewed-by: John Daley --- drivers/net/enic/LICENSE | 27 ---

[dpdk-dev] [PATCH] net/enic: remove a conditional from the Tx path

2018-01-10 Thread John Daley
The VLAN insert flag and VLAN tag used in the VIC write descriptor can be set unconditionally. Signed-off-by: John Daley Reviewed-by: Hyong Youb Kim --- drivers/net/enic/enic_rxtx.c | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/drivers/net/enic/enic_rxtx.c b/driver

[dpdk-dev] [PATCH] net/enic: use TSO flags

2018-01-10 Thread John Daley
Depend on the tx_offload flags in the mbuf to determeine the length of the headers instead of looking into the packet itself. Signed-off-by: John Daley Reviewed-by: Hyong Youb Kim --- drivers/net/enic/enic_rxtx.c | 56 ++-- 1 file changed, 2 insertions(+)

Re: [dpdk-dev] [PATCH v2 0/2] AVX2 Vectorized Rx/Tx functions for i40e

2018-01-10 Thread Richardson, Bruce
> -Original Message- > From: John Fastabend [mailto:john.fastab...@gmail.com] > Sent: Tuesday, January 9, 2018 4:31 PM > To: Richardson, Bruce; Zhang, Qi Z; Xing, Beilei > Cc: dev@dpdk.org; Zhang, Helin; Yigit, Ferruh > Subject: Re: [dpdk-dev] [PATCH v2 0/2] AVX2 Vectorized Rx/Tx function

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

2018-01-10 Thread Zhang, Helin
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Xing, Beilei > Sent: Wednesday, January 10, 2018 1:37 PM > To: Zhang, Qi Z > Cc: dev@dpdk.org; Wu, Jingjing > Subject: Re: [dpdk-dev] [PATCH v3 00/24] net/i40e: update base code > > > > > -Original Message-

Re: [dpdk-dev] [PATCH v7 1/2] eal: add uevent monitor for hot plug

2018-01-10 Thread Guo, Jia
On 1/9/2018 8:42 PM, Gaëtan Rivet wrote: Hi Jeff, On Tue, Jan 09, 2018 at 12:08:52PM +, Guo, Jia wrote: Your comments about split it totally make sense ,no doubt that, but my question is that if split api with the funcational , so the function part should be set null implement or stake.

Re: [dpdk-dev] [PATCH v7 1/2] eal: add uevent monitor for hot plug

2018-01-10 Thread Guo, Jia
On 1/9/2018 9:44 PM, Thomas Monjalon wrote: 09/01/2018 13:08, Guo, Jia: Your comments about split it totally make sense ,no doubt that, but my question is that if split api with the funcational , so the function part should be set null implement or stake. Any other good idea or tip for that.

Re: [dpdk-dev] [PATCH v3 1/2] net/tap: add eBPF instructions to TAP device

2018-01-10 Thread Pascal Mazon
Hi Ophir, I have a few remarks. - Why do you define ARRAY_SIZE in tap_flow.h while it's used only in tap_bpf_insns.c? - I really dislike having the BPF bytecode hardcoded in tap_bpf_insns.c.   You don't provide the commands used to generate that bytecode.   And you don't provide the way to trans

[dpdk-dev] [PATCH v3 02/19] crypto/ccp: support ccp device initialization and deintialization

2018-01-10 Thread Ravi Kumar
CCP PMD is a virtual crypto PMD which schedules all the available actual hardware engines. The PMD creates a linked list of all CCP engines which will be scheduled in a round-robin fashion to the CPU core requesting crypto operations. Signed-off-by: Ravi Kumar --- drivers/crypto/ccp/Makefile

[dpdk-dev] [PATCH v3 01/19] crypto/ccp: add AMD ccp skeleton PMD

2018-01-10 Thread Ravi Kumar
Signed-off-by: Ravi Kumar --- MAINTAINERS| 6 +++ config/common_base | 5 +++ doc/guides/rel_notes/release_18_02.rst | 5 +++ drivers/crypto/Makefile| 1 + drivers/crypto/ccp/Makefile| 55 +

[dpdk-dev] [PATCH v3 04/19] crypto/ccp: support session related crypto pmd ops

2018-01-10 Thread Ravi Kumar
Signed-off-by: Ravi Kumar --- drivers/crypto/ccp/Makefile | 3 +- drivers/crypto/ccp/ccp_crypto.c | 229 + drivers/crypto/ccp/ccp_crypto.h | 267 +++ drivers/crypto/ccp/ccp_dev.h | 129 +++ drivers/cr

[dpdk-dev] [PATCH v3 03/19] crypto/ccp: support basic pmd ops

2018-01-10 Thread Ravi Kumar
Signed-off-by: Ravi Kumar --- drivers/crypto/ccp/ccp_dev.c | 9 ++ drivers/crypto/ccp/ccp_dev.h | 9 ++ drivers/crypto/ccp/ccp_pmd_ops.c | 61 +--- drivers/crypto/ccp/ccp_pmd_private.h | 43 + 4 files changed, 1

[dpdk-dev] [PATCH v3 05/19] crypto/ccp: support queue pair related pmd ops

2018-01-10 Thread Ravi Kumar
Signed-off-by: Ravi Kumar --- drivers/crypto/ccp/ccp_pmd_ops.c | 149 +-- 1 file changed, 144 insertions(+), 5 deletions(-) diff --git a/drivers/crypto/ccp/ccp_pmd_ops.c b/drivers/crypto/ccp/ccp_pmd_ops.c index ad0a670..a02aa6f 100644 --- a/drivers/crypto/ccp/

[dpdk-dev] [PATCH v3 06/19] crypto/ccp: support crypto enqueue and dequeue burst api

2018-01-10 Thread Ravi Kumar
Signed-off-by: Ravi Kumar --- drivers/crypto/ccp/ccp_crypto.c | 360 +++ drivers/crypto/ccp/ccp_crypto.h | 35 drivers/crypto/ccp/ccp_dev.c | 27 +++ drivers/crypto/ccp/ccp_dev.h | 9 + drivers/crypto/ccp/rte_ccp_pmd.c | 64 ++- 5 files

[dpdk-dev] [PATCH v3 07/19] crypto/ccp: support for RTE_CRYPTO_OP_SESSIONLESS

2018-01-10 Thread Ravi Kumar
Signed-off-by: Ravi Kumar --- drivers/crypto/ccp/rte_ccp_pmd.c | 33 +++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/drivers/crypto/ccp/rte_ccp_pmd.c b/drivers/crypto/ccp/rte_ccp_pmd.c index ed6ca5d..23d3af3 100644 --- a/drivers/crypto/ccp/rte_ccp_

[dpdk-dev] [PATCH v3 08/19] crypto/ccp: support stats related crypto pmd ops

2018-01-10 Thread Ravi Kumar
Signed-off-by: Ravi Kumar --- drivers/crypto/ccp/ccp_pmd_ops.c | 34 -- 1 file changed, 32 insertions(+), 2 deletions(-) diff --git a/drivers/crypto/ccp/ccp_pmd_ops.c b/drivers/crypto/ccp/ccp_pmd_ops.c index a02aa6f..d483a74 100644 --- a/drivers/crypto/ccp/ccp_pmd

[dpdk-dev] [PATCH v3 11/19] crypto/ccp: support 3des cipher algo

2018-01-10 Thread Ravi Kumar
Signed-off-by: Ravi Kumar --- drivers/crypto/ccp/ccp_crypto.c | 132 ++- drivers/crypto/ccp/ccp_crypto.h | 3 + drivers/crypto/ccp/ccp_pmd_ops.c | 20 ++ 3 files changed, 154 insertions(+), 1 deletion(-) diff --git a/drivers/crypto/ccp/ccp_crypto.c b/

[dpdk-dev] [PATCH v3 10/19] crypto/ccp: support aes cipher algo

2018-01-10 Thread Ravi Kumar
Signed-off-by: Ravi Kumar --- drivers/crypto/ccp/ccp_crypto.c | 197 ++- drivers/crypto/ccp/ccp_crypto.h | 13 +++ drivers/crypto/ccp/ccp_dev.h | 53 +++ drivers/crypto/ccp/ccp_pmd_ops.c | 60 4 files changed, 321 insertions(+), 2

[dpdk-dev] [PATCH v3 09/19] crypto/ccp: support ccp hwrng feature

2018-01-10 Thread Ravi Kumar
Signed-off-by: Ravi Kumar --- drivers/crypto/ccp/ccp_dev.c | 20 drivers/crypto/ccp/ccp_dev.h | 11 +++ 2 files changed, 31 insertions(+) diff --git a/drivers/crypto/ccp/ccp_dev.c b/drivers/crypto/ccp/ccp_dev.c index fee90e3..d8c0ab4 100644 --- a/drivers/crypto/ccp/c

[dpdk-dev] [PATCH v3 12/19] crypto/ccp: support aes-cmac auth algo

2018-01-10 Thread Ravi Kumar
Signed-off-by: Ravi Kumar --- drivers/crypto/ccp/ccp_crypto.c | 277 ++- drivers/crypto/ccp/ccp_pmd_ops.c | 20 +++ 2 files changed, 295 insertions(+), 2 deletions(-) diff --git a/drivers/crypto/ccp/ccp_crypto.c b/drivers/crypto/ccp/ccp_crypto.c index 066076

[dpdk-dev] [PATCH v3 14/19] crypto/ccp: support sha1 authentication algo

2018-01-10 Thread Ravi Kumar
Signed-off-by: Ravi Kumar --- drivers/crypto/ccp/ccp_crypto.c | 367 +++ drivers/crypto/ccp/ccp_crypto.h | 23 +++ drivers/crypto/ccp/ccp_pmd_ops.c | 42 + 3 files changed, 432 insertions(+) diff --git a/drivers/crypto/ccp/ccp_crypto.c b/drivers/crypto

[dpdk-dev] [PATCH v3 15/19] crypto/ccp: support sha2 family authentication algo

2018-01-10 Thread Ravi Kumar
Signed-off-by: Ravi Kumar --- drivers/crypto/ccp/ccp_crypto.c | 270 +++ drivers/crypto/ccp/ccp_crypto.h | 48 +++ drivers/crypto/ccp/ccp_pmd_ops.c | 168 3 files changed, 486 insertions(+) diff --git a/drivers/crypto/ccp/ccp_cr

[dpdk-dev] [PATCH v3 13/19] crypto/ccp: support aes-gcm aead algo

2018-01-10 Thread Ravi Kumar
Signed-off-by: Ravi Kumar --- drivers/crypto/ccp/ccp_crypto.c | 240 ++- drivers/crypto/ccp/ccp_pmd_ops.c | 30 + 2 files changed, 266 insertions(+), 4 deletions(-) diff --git a/drivers/crypto/ccp/ccp_crypto.c b/drivers/crypto/ccp/ccp_crypto.c index 6e59

[dpdk-dev] [PATCH v3 16/19] crypto/ccp: support sha3 family authentication algo

2018-01-10 Thread Ravi Kumar
Signed-off-by: Ravi Kumar --- drivers/crypto/ccp/ccp_crypto.c | 667 +- drivers/crypto/ccp/ccp_crypto.h | 22 ++ drivers/crypto/ccp/ccp_pmd_ops.c | 168 + lib/librte_cryptodev/rte_crypto_sym.h | 17 + 4 files changed, 873 insertions(+), 1

[dpdk-dev] [PATCH v3 17/19] crypto/ccp: support cpu based md5 and sha2 family authentication algo

2018-01-10 Thread Ravi Kumar
Auth operations can be performed on CPU without offloading to CCP if CONFIG_RTE_LIBRTE_PMD_CCP_CPU_AUTH is enabled in DPDK configuration. Signed-off-by: Ravi Kumar --- config/common_base | 1 + drivers/crypto/ccp/ccp_crypto.c | 282 ++- dr

[dpdk-dev] [PATCH v3 18/19] test/crypto: add test for AMD CCP crypto poll mode driver

2018-01-10 Thread Ravi Kumar
Signed-off-by: Ravi Kumar --- test/test/test_cryptodev.c | 161 +++ test/test/test_cryptodev.h | 1 + test/test/test_cryptodev_aes_test_vectors.h | 93 ++-- test/test/test_cryptodev_blockcipher.c | 9 +- test/test

[dpdk-dev] [PATCH v3 19/19] doc: add document for AMD CCP crypto poll mode driver

2018-01-10 Thread Ravi Kumar
Signed-off-by: Ravi Kumar --- doc/guides/cryptodevs/ccp.rst | 127 + doc/guides/cryptodevs/features/ccp.ini | 57 + doc/guides/cryptodevs/features/default.ini | 12 +++ doc/guides/cryptodevs/index.rst| 1 + 4 files changed,

Re: [dpdk-dev] [PATCH v6 05/14] net/avf: enable link status update

2018-01-10 Thread Xing, Beilei
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Wenzhuo Lu > Sent: Wednesday, January 10, 2018 2:16 PM > To: dev@dpdk.org > Cc: Wu, Jingjing > Subject: [dpdk-dev] [PATCH v6 05/14] net/avf: enable link status update > > From: Jingjing Wu > > Signed-off-by: J

[dpdk-dev] [PATCH v3 10/19] net/dpaa: change Tx HW budget to 7

2018-01-10 Thread Hemant Agrawal
From: Nipun Gupta change the TX budget to 7 to sync best with the hw. Signed-off-by: Nipun Gupta Acked-by: Hemant Agrawal --- drivers/net/dpaa/dpaa_ethdev.h | 2 +- drivers/net/dpaa/dpaa_rxtx.c | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/net/dpaa/dpaa_e

[dpdk-dev] [PATCH v3 12/19] net/dpaa: optimize Rx path

2018-01-10 Thread Hemant Agrawal
From: Nipun Gupta Signed-off-by: Nipun Gupta Signed-off-by: Hemant Agrawal --- drivers/net/dpaa/dpaa_rxtx.c | 48 drivers/net/dpaa/dpaa_rxtx.h | 2 +- 2 files changed, 23 insertions(+), 27 deletions(-) diff --git a/drivers/net/dpaa/dpaa_rxtx.c b/d

[dpdk-dev] [PATCH v3 15/19] net/dpaa: add support for loopback API

2018-01-10 Thread Hemant Agrawal
PMD specific API is being added as an EXPERIMENTAL API Signed-off-by: Hemant Agrawal --- doc/api/doxy-api-index.md | 1 + doc/api/doxy-api.conf | 1 + drivers/net/dpaa/Makefile | 3 +++ drivers/net/dpaa/dpaa_ethdev.c| 42

[dpdk-dev] [PATCH v3 14/19] net/dpaa: add Rx queue count support

2018-01-10 Thread Hemant Agrawal
Signed-off-by: Hemant Agrawal --- drivers/net/dpaa/dpaa_ethdev.c | 17 + 1 file changed, 17 insertions(+) diff --git a/drivers/net/dpaa/dpaa_ethdev.c b/drivers/net/dpaa/dpaa_ethdev.c index 5d94af5..de016ab 100644 --- a/drivers/net/dpaa/dpaa_ethdev.c +++ b/drivers/net/dpaa/dpaa_et

[dpdk-dev] [PATCH v3 13/19] bus/dpaa: query queue frame count support

2018-01-10 Thread Hemant Agrawal
Signed-off-by: Hemant Agrawal --- drivers/bus/dpaa/base/qbman/qman.c| 22 ++ drivers/bus/dpaa/include/fsl_qman.h | 7 +++ drivers/bus/dpaa/rte_bus_dpaa_version.map | 1 + 3 files changed, 30 insertions(+) diff --git a/drivers/bus/dpaa/base/qbman/qman.c b/

[dpdk-dev] [PATCH v3 16/19] app/testpmd: add support for loopback config for dpaa

2018-01-10 Thread Hemant Agrawal
Signed-off-by: Hemant Agrawal --- app/test-pmd/Makefile | 4 app/test-pmd/cmdline.c | 7 +++ 2 files changed, 11 insertions(+) diff --git a/app/test-pmd/Makefile b/app/test-pmd/Makefile index 82b3481..34125e5 100644 --- a/app/test-pmd/Makefile +++ b/app/test-pmd/Makefile @@ -43,6 +43,1

[dpdk-dev] [PATCH v3 17/19] bus/dpaa: add support for static queues

2018-01-10 Thread Hemant Agrawal
DPAA hardware support two kinds of queues: 1. Pull mode queue - where one needs to regularly pull the packets. 2. Push mode queue - where the hw pushes the packet to queue. These are high performance queues, but limited in number. This patch add the driver support for push mode queues. Signed-

[dpdk-dev] [PATCH v3 18/19] net/dpaa: integrate the support of push mode in PMD

2018-01-10 Thread Hemant Agrawal
Signed-off-by: Sunil Kumar Kori Signed-off-by: Hemant Agrawal Signed-off-by: Nipun Gupta --- doc/guides/nics/dpaa.rst | 11 drivers/net/dpaa/dpaa_ethdev.c | 64 +- drivers/net/dpaa/dpaa_ethdev.h | 2 +- drivers/net/dpaa/dpaa_rxtx.c | 34

[dpdk-dev] [PATCH v3 19/19] bus/dpaa: support for enqueue frames of multiple queues

2018-01-10 Thread Hemant Agrawal
From: Akhil Goyal Signed-off-by: Akhil Goyal Signed-off-by: Nipun Gupta Acked-by: Hemant Agrawal --- drivers/bus/dpaa/base/qbman/qman.c| 66 +++ drivers/bus/dpaa/include/fsl_qman.h | 14 +++ drivers/bus/dpaa/rte_bus_dpaa_version.map | 1 + 3 file

Re: [dpdk-dev] [PATCH] fix multiple typos: 'the the ' => 'the '

2018-01-10 Thread Thomas Monjalon
15/12/2017 13:34, Thierry Herbelot: > Repeated occurrences of 'the'. > > The change was obtained using the following command: > > sed -i "s;the the ;the ;" `git grep -l "the "` > > Signed-off-by: Thierry Herbelot Applied, thanks

Re: [dpdk-dev] [PATCH v4 1/4] lib/librte_flow_classify: remove table id parameter from apis

2018-01-10 Thread Thomas Monjalon
10/01/2018 10:54, Singh, Jasvinder: > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > 19/12/2017 15:29, Jasvinder Singh: > > > This patch removes table id parameter from all the flow classify apis > > > to reduce the complexity alongwith some code cleanup. > > > > > > The validate api is exp

Re: [dpdk-dev] [PATCH v4] kernel folder for Linux and BSD modules

2018-01-10 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Hemant Agrawal > Sent: Wednesday, January 10, 2018 6:46 AM > To: dev@dpdk.org; tho...@monjalon.net > Cc: Yigit, Ferruh > Subject: [dpdk-dev] [PATCH v4] kernel folder for Linux and BSD modules > > This patch moves t

Re: [dpdk-dev] [PATCH v4 1/4] lib/librte_flow_classify: remove table id parameter from apis

2018-01-10 Thread Singh, Jasvinder
> -Original Message- > From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Wednesday, January 10, 2018 10:53 AM > To: Singh, Jasvinder > Cc: dev@dpdk.org; Iremonger, Bernard ; > Kovacevic, Marko > Subject: Re: [dpdk-dev] [PATCH v4 1/4] lib/librte_flow_classify: remove table > id

[dpdk-dev] [PATCH v2 01/15] examples/eventdev: add Rx adapter support

2018-01-10 Thread Pavan Nikhilesh
Use event Rx adapter for packets Rx instead of explicit producer logic. Use service run iter function for granular control instead of using dedicated service lcore. Signed-off-by: Pavan Nikhilesh --- v2 Changes: - split work funtion into delay cycles and excange_mac - add option to configur

Re: [dpdk-dev] [PATCH v4 1/4] lib/librte_flow_classify: remove table id parameter from apis

2018-01-10 Thread Thomas Monjalon
10/01/2018 11:59, Singh, Jasvinder: > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > 10/01/2018 10:54, Singh, Jasvinder: > > > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > > > 19/12/2017 15:29, Jasvinder Singh: > > > > > This patch removes table id parameter from all the flow clas

[dpdk-dev] [PATCH v2 04/15] examples/eventdev: add generic worker pipeline

2018-01-10 Thread Pavan Nikhilesh
Rename existing pipeline as generic worker pipeline. Signed-off-by: Pavan Nikhilesh --- v2 Changes: - Add SPDX licence tags examples/eventdev_pipeline_sw_pmd/Makefile | 1 + examples/eventdev_pipeline_sw_pmd/main.c | 440 + .../eventdev_pipeline_sw_pmd

[dpdk-dev] [PATCH v2 05/15] examples/eventdev: add ops to check cmdline args

2018-01-10 Thread Pavan Nikhilesh
Each eventdev pipeline needs to allow different cmdline args combination based on pipeline type. Signed-off-by: Pavan Nikhilesh --- v2 Changes: - remove redundant split in printf examples/eventdev_pipeline_sw_pmd/main.c | 16 +++- .../eventdev_pipeline_sw_pmd/pipeline_common.h

[dpdk-dev] [PATCH v2 03/15] examples/eventdev: add framework for caps based pipeline

2018-01-10 Thread Pavan Nikhilesh
Add framework to support capability based pipeline. Based on the capability of event device and probed ethernet devices the optimal pipeline configuration can be chosen. Signed-off-by: Pavan Nikhilesh --- examples/eventdev_pipeline_sw_pmd/pipeline_common.h | 17 + 1 file changed,

  1   2   3   4   >