Re: [dpdk-dev] [PATCH] net/ixgbe: fix Tx check descriptor status APIs error

2018-06-24 Thread Zhao1, Wei
Hi,qi > -Original Message- > From: Zhang, Qi Z > Sent: Monday, June 25, 2018 10:49 AM > To: Zhao1, Wei ; dev@dpdk.org > Cc: Lu, Wenzhuo ; sta...@dpdk.org > Subject: RE: [PATCH] net/ixgbe: fix Tx check descriptor status APIs error > > > > > -Original Message- > > From: Zhao1, Wei

Re: [dpdk-dev] [PATCH] net/mlx5: separate generic tunnel TSO from the standard one

2018-06-24 Thread Nélio Laranjeiro
On Sun, Jun 24, 2018 at 09:22:26AM +0300, Shahaf Shuler wrote: > The generic tunnel TSO was depended in the regular one capabilities to > be enabled. > > Cc: sta...@dpdk.org > > Signed-off-by: Shahaf Shuler > Acked-by: Yongseok Koh > --- > drivers/net/mlx5/mlx5_txq.c | 13 + > 1 fi

Re: [dpdk-dev] [PATCH] net/ixgbe: fix Tx check descriptor status APIs error

2018-06-24 Thread Zhao1, Wei
Hi, qi > -Original Message- > From: Zhang, Qi Z > Sent: Monday, June 25, 2018 10:49 AM > To: Zhao1, Wei ; dev@dpdk.org > Cc: Lu, Wenzhuo ; sta...@dpdk.org > Subject: RE: [PATCH] net/ixgbe: fix Tx check descriptor status APIs error > > > > > -Original Message- > > From: Zhao1, We

[dpdk-dev] [PATCH] net/virtio-user: add unsupported features mask

2018-06-24 Thread Marvin Liu
This patch introduces unsupported features mask for virtio-user device. For virtio-user server mode, when reconnecting virtio-user will retrieve vhost devcie features as base and then unmask unsupported features. Signed-off-by: Marvin Liu diff --git a/drivers/net/virtio/virtio_user/virtio_user_d

[dpdk-dev] [PATCH] crypto/kasumi: add dynamic logging to kasumi

2018-06-24 Thread Naga Suresh Somarowthu
1.added new logtype for kasumi driver. 2.registered new logtype. 3.KASUMI_LOG_ERR and CDEV_LOG_ERR are replaced with new logtype name KASUMI_PMD_LOG. Signed-off-by: Naga Suresh Somarowthu Reviewed-by: Reshma Pattan --- drivers/crypto/kasumi/rte_kasumi_pmd.c | 29 +-

[dpdk-dev] [PATCH] crypto/zuc: add dynamic logging to zuc

2018-06-24 Thread Jananee Parthasarathy
From: Agalya Babu Radha Krishnan 1.added new logtype for zuc driver. 2.registered new logtype. 3.ZUC_LOG_ERR and CDEV_LOG_ERR are replaced with new logtype name ZUC_PMD_LOG Signed-off-by: Agalya Babu RadhaKrishnan Reviewed-by: Reshma Pattan --- drivers/crypto/zuc/rte_zuc_pmd.c

Re: [dpdk-dev] [PATCH v3 0/3] Support UDP/IPv4 GSO

2018-06-24 Thread Wang, Xiao W
Hi, > -Original Message- > From: Hu, Jiayu > Sent: Friday, June 22, 2018 1:54 PM > To: dev@dpdk.org > Cc: Wang, Xiao W ; Ananyev, Konstantin > ; Zhang, Yuwei1 ; > Iremonger, Bernard ; tho...@monjalon.net; > Hu, Jiayu > Subject: [PATCH v3 0/3] Support UDP/IPv4 GSO > > With the support of

[dpdk-dev] [PATCH v13 6/6] devtools: expand meson cross compiling test coverage

2018-06-24 Thread Gavin Hu
The default test script covers only default host cc compiler, either gcc or clang, the fix is to increase the coverage by adding one more to cover clang and the others for gcc. Fixes: a55277a788 ("devtools: add test script for meson builds") Cc: sta...@dpdk.org Signed-off-by: Gavin Hu Reviewed-b

[dpdk-dev] [PATCH v13 4/6] devtools: fix the missing ninja command error

2018-06-24 Thread Gavin Hu
On some linux distributions, eg: CentOS, the ninja executable has a different name: ninja-build, this patch is to check and adapt to it accordingly. ./devtools/test-meson-builds.sh: line 24: ninja: command not found Fixes: a55277a788 ("devtools: add test script for meson builds") Cc: sta...@dpdk.

[dpdk-dev] [PATCH v13 2/6] doc: add a guide doc for cross compiling from x86

2018-06-24 Thread Gavin Hu
From: gavin hu This is the guide for cross compiling ARM64 DPDK from X86 hosts. Signed-off-by: Gavin Hu Reviewed-by: Steve Capper Reviewed-by: Honnappa Nagarahalli Acked-by: Marko Kovacevic --- .../linux_gsg/cross_build_dpdk_for_arm64.rst | 132 + doc/guides/linux_

[dpdk-dev] [PATCH v13 3/6] build: fix the meson build warning

2018-06-24 Thread Gavin Hu
This is to fix the unnecessary warning output, it is not consistent with the configurations of other platforms. WARNING: Cross file does not specify strip binary, result will not be stripped. Fixes: e53a5299d2 ("build: support vendor specific ARM cross builds") Cc: sta...@dpdk.org Signed-off-by:

[dpdk-dev] [PATCH v13 1/6] mk: fix makefile based cross build errors

2018-06-24 Thread Gavin Hu
From: gavin hu The "-Wimplicit-fallthrough=2" option was introduced into gcc 7.0, it was enabled when the cross compiler gcc is greater than 7.0, but for the host side buildtools/pmdinfogen, if the native gcc is older than 7.0, or the host cc compiler is clang, it should not be enabled. The fix

[dpdk-dev] [PATCH v13 5/6] build: fix the meson cross compile error

2018-06-24 Thread Gavin Hu
The following error hits if host cc compiler is clang(default one in most linux distributions) and the cross compiler is gcc. The root cause is: the hybride compilers add the warning options to the meson project as project arguments, which apply for both host compiling and cross compiling. But som

Re: [dpdk-dev] [PATCH] net/ixgbe: fix Tx check descriptor status APIs error

2018-06-24 Thread Zhang, Qi Z
> -Original Message- > From: Zhao1, Wei > Sent: Monday, June 25, 2018 9:58 AM > To: Zhang, Qi Z ; dev@dpdk.org > Cc: Lu, Wenzhuo ; sta...@dpdk.org > Subject: RE: [PATCH] net/ixgbe: fix Tx check descriptor status APIs error > > Hi, > > > -Original Message- > > From: Zhang, Qi Z

[dpdk-dev] [PATCH v13 0/6] Fix the cross compiling errors

2018-06-24 Thread Gavin Hu
1. Pre-v5 of this patch set(two patches) is to fix the GNU Makefile based cross compiling errors and add a guiding doc for this. 2. v6 add 5 more new patches to cover meson cross fixes 3. v7 Some minor changes to address the comments: a) trim the commit message b) at the start of the scri

Re: [dpdk-dev] [PATCH v2 4/7] vhost: translate iovas at vectors fill time

2018-06-24 Thread Tiwei Bie
On Sat, Jun 23, 2018 at 09:11:24AM +0200, Maxime Coquelin wrote: > This patch aims at simplifying the desc to mbuf and mbuf to desc > copy functions. It performs the iova to hva translations at > vectors fill time. > > Doing this, in case desc buffer isn't contiguous in hva space, > it gets split

Re: [dpdk-dev] [PATCH] net/ixgbe: fix Tx check descriptor status APIs error

2018-06-24 Thread Zhao1, Wei
Hi, > -Original Message- > From: Zhang, Qi Z > Sent: Friday, June 22, 2018 9:47 PM > To: Zhao1, Wei ; dev@dpdk.org > Cc: Lu, Wenzhuo ; sta...@dpdk.org > Subject: RE: [PATCH] net/ixgbe: fix Tx check descriptor status APIs error > > Hi Wei: > > > -Original Message- > > From: Zhao1,

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

2018-06-24 Thread Wiles, Keith
> On Jun 23, 2018, at 6:17 PM, Ophir Munk wrote: > > Prior to this commit IP/UDP/TCP checksum offload calculations > were skipped in case of a multi segments packet. > This commit enables TAP checksum calculations for multi segments > packets. > The only restriction is that the first segment mu

Re: [dpdk-dev] [PATCH v2 6/7] net/mlx5: probe all port representors

2018-06-24 Thread Shahaf Shuler
One more input, Sunday, June 17, 2018 1:15 PM, Shahaf Shuler: > Subject: RE: [dpdk-dev] [PATCH v2 6/7] net/mlx5: probe all port representors [...] > > > + eth_list = tmp; > > > for (i = 0; i < attr.orig_attr.phys_port_cnt; ++i) { > > > - eth_list[i] = mlx5_dev_spawn_one(dpdk_dev, ibv_

Re: [dpdk-dev] [PATCH] mk: change TLS model for ARMv8 and DPAA machine

2018-06-24 Thread Jerin Jacob
-Original Message- > Date: Thu, 14 Jun 2018 06:42:40 + > From: Sachin Saxena > To: Jerin Jacob > CC: Hemant Agrawal , "dev@dpdk.org" , > "nitin.sax...@cavium.com" , > "narayanaprasad.athr...@cavium.com" > Subject: RE: [dpdk-dev] [PATCH] mk: change TLS model for ARMv8 and DPAA > ma

Re: [dpdk-dev] [PATCH] net/thunderx: fix build with gcc optimization on

2018-06-24 Thread Jerin Jacob
-Original Message- > Date: Thu, 21 Jun 2018 19:14:50 +0100 > From: Ferruh Yigit > To: Jerin Jacob , Maciej Czekaj > > CC: dev@dpdk.org, Ferruh Yigit , sta...@dpdk.org > Subject: [PATCH] net/thunderx: fix build with gcc optimization on > X-Mailer: git-send-email 2.17.1 > > > build error

Re: [dpdk-dev] [PATCH v12 2/6] doc: add a guide doc for cross compiling from x86

2018-06-24 Thread Jerin Jacob
-Original Message- > Date: Tue, 19 Jun 2018 18:36:53 +0800 > From: Gavin Hu > To: dev@dpdk.org > CC: n...@arm.com, gavin...@arm.com > Subject: [dpdk-dev] [PATCH v12 2/6] doc: add a guide doc for cross > compiling from x86 > X-Mailer: git-send-email 2.11.0 > > > From: gavin hu > > This

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

2018-06-24 Thread Jerin Jacob
-Original Message- > Date: Thu, 21 Jun 2018 09:23:21 -0500 > From: Gage Eads > To: dev@dpdk.org > CC: jerin.ja...@caviumnetworks.com, harry.van.haa...@intel.com, > bruce.richard...@intel.com, nikhil@intel.com, > erik.g.carri...@intel.com, abhinandan.guj...@intel.com, > tho...@monjal

Re: [dpdk-dev] [PATCH] event/octeontx: fix flush callback

2018-06-24 Thread Jerin Jacob
-Original Message- > Date: Sun, 17 Jun 2018 19:57:46 +0530 > From: Jerin Jacob > To: Pavan Nikhilesh > CC: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH] event/octeontx: fix flush callback > User-Agent: Mutt/1.10.0 (2018-05-17) > > > -Original Message- > > Date: Fri, 15 Jun 2018

Re: [dpdk-dev] [PATCH] eventdev: update get id from name to include PCI devices

2018-06-24 Thread Jerin Jacob
-Original Message- > Date: Sun, 17 Jun 2018 20:01:51 +0530 > From: Jerin Jacob > To: Pavan Nikhilesh > CC: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH] eventdev: update get id from name to > include PCI devices > User-Agent: Mutt/1.10.0 (2018-05-17) > > > -Original Message- >

Re: [dpdk-dev] [PATCH v12 3/6] build: fix the meson build warning

2018-06-24 Thread Jerin Jacob
-Original Message- > Date: Tue, 19 Jun 2018 18:36:54 +0800 > From: Gavin Hu > To: dev@dpdk.org > CC: n...@arm.com, gavin...@arm.com, sta...@dpdk.org > Subject: [dpdk-dev] [PATCH v12 3/6] build: fix the meson build warning > X-Mailer: git-send-email 2.11.0 > > > This is to fix the unneces

Re: [dpdk-dev] [PATCH v2] net/i40e: remove VF interrupt handler

2018-06-24 Thread Zhang, Qi Z
Hi Stephen: > -Original Message- > From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Friday, June 22, 2018 11:44 PM > To: Zhang, Qi Z > Cc: Xing, Beilei ; Wu, Jingjing > ; > Yu, De ; dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2] net/i40e: remove VF interrupt handler