Re: [dpdk-dev] [PATCH v2] kni: increase kernel version requirement for VA

2019-11-20 Thread Jerin Jacob
On Wed, Nov 20, 2019 at 10:59 PM David Marchand wrote: > > On Wed, Nov 20, 2019 at 6:22 PM Ferruh Yigit wrote: > > > > A build error reported related to the selected > > 'get_user_pages_remote()' kernel API: > > > > .../kernel/linux/kni/kni_dev.h:113:8: > > error: too few arguments to function

[dpdk-dev] [Bug 356] Building dpdk with rte_vhost sometimes fails due to missing rte_hash.h

2019-11-20 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=356 Maxime Coquelin (maxime.coque...@redhat.com) changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[dpdk-dev] [Bug 315] Virtio crypto does not work . Tried with vhost crypto as backend and dpdk test application (cryptodev_virtio_autotest )

2019-11-20 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=315 Maxime Coquelin (maxime.coque...@redhat.com) changed: What|Removed |Added CC||maxime.coque...@redh

Re: [dpdk-dev] [EXT] Re: [PATCH v2] kni: increase kernel version requirement for VA

2019-11-20 Thread Vamsi Krishna Attunuru
> -Original Message- > From: Jerin Jacob > Sent: Thursday, November 21, 2019 7:28 AM > To: David Marchand > Cc: Vamsi Krishna Attunuru ; Jerin Jacob > Kollanukkaran ; John McNamara > ; Marko Kovacevic > ; dev ; Kiran Kumar > Kokkilagadda ; Igor Ryzhov > ; Ferruh Yigit > Subject: [EXT]

Re: [dpdk-dev] [PATCH v2 0/6] octeontx: sync with latest SDK

2019-11-20 Thread Jerin Jacob
On Wed, Nov 20, 2019 at 9:18 AM wrote: > > From: Pavan Nikhilesh > > Sync octeontx mailbox with the latest version (10.1.2.x) of SDK available. Series applied to dpdk-next-eventdev/master. Thanks. > > Pavan Nikhilesh (6): > octeontx: update mbox definition to version 1.1.3 > net/octeontx:

[dpdk-dev] [PATCH v4] net/ice: fix FDIR flow type conflict

2019-11-20 Thread Qi Zhang
Flow type "IPv4 + UDP" or "IPv4 + TCP" is conflict with "IPv4 + any" flow type. If a rule for IPv4 + any is created, we should reject any rule for IPv4 + UDP otherwise the first rule may be impacted, same decision should be made on a reverse order. For IPv6 and IPv4 GTPU inner case, we have the sam

Re: [dpdk-dev] [PATCH 1/5] event/octeontx2: fix TIM HW race condition

2019-11-20 Thread Jerin Jacob
On Wed, Nov 20, 2019 at 10:26 AM wrote: > > From: Pavan Nikhilesh > > Fix HW race condition observed when timeout resolution is low (<5us). > When HW traverses a given TIM bucket it will clear chunk_remainder, > but since SW always decreases the chunk_remainder at the start of the > arm routine i

Re: [dpdk-dev] [PATCH v18 10/19] raw/ifpga: add SEU error handler

2019-11-20 Thread Ye Xiaolong
On 11/20, Thomas Monjalon wrote: >Rosen (and most of your colleagues), >Please use --in-reply-to when sending a new version. >All versions must be a reply to the very first cover letter. I'll broadcast this message to our team. Thanks, Xiaolong > >14/11/2019 10:02, Rosen Xu: >> +IFPGA_RAWDEV

[dpdk-dev] [PATCH] net/mlx5: fix incorrect L3 layer chosen in TTL action

2019-11-20 Thread Suanming Mou
For IPINIP flow, there are two L3 layer match pattern items, the inner layer follows the outer layer as the latter L3 layer item, the TTL action handles the outer layer. Current the outer and inner L3 layers are both regared as the outer L3 layer, it caueses TTL action uses the incorrect latter in

[dpdk-dev] [PATCH v3 1/2] net/ice: fix pattern name of GTPU with extension header

2019-11-20 Thread Yahui Cao
Pattern name of GTP-U flow with extension header should be xxx_gtpu_eh_xxx. So it will not conflict with the pattern name of a GTP-U flow that does not contains extension header. Fixes: 3e4eab9c2192 ("net/ice: add pattern manifest") Cc: ying.a.w...@intel.com Signed-off-by: Yahui Cao --- drivers

[dpdk-dev] [PATCH v3 2/2] net/ice: add missing FDIR support for GTPU without extension header

2019-11-20 Thread Yahui Cao
Add FDIR support for normal GTP-U packet, which doesn't contain GTP_PSC extension header. Fixes: efc16c621415 ("net/ice: support flow director GTPU tunnel") Cc: yahui@intel.com Signed-off-by: Yahui Cao --- drivers/net/ice/ice_fdir_filter.c | 9 +++-- drivers/net/ice/ice_generic_flow.c

[dpdk-dev] [PATCH v3 0/2] fix FDIR support for GTPU

2019-11-20 Thread Yahui Cao
This patch series enables FDIR support for both GTP-U and GTP-U with extension header. - Patch 1 renames GTPU with extension header related variables - Patch 2 adds FDIR support for non-extension-header GTPU -- v3: * Change commit message v2: * Re-organize patch Yahui Cao (2): net/ice: fix p

Re: [dpdk-dev] [PATCH v3 0/2] fix FDIR support for GTPU

2019-11-20 Thread Zhang, Qi Z
> -Original Message- > From: Cao, Yahui > Sent: Thursday, November 21, 2019 7:20 PM > To: Yang, Qiming ; Lu, Wenzhuo > > Cc: dev@dpdk.org; Zhang, Qi Z ; Cao, Yahui > ; Ye, Xiaolong ; Wang, Ying A > ; Su, Simei ; Sun, Chenmin > > Subject: [PATCH v3 0/2] fix FDIR support for GTPU > > T

Re: [dpdk-dev] [PATCH v4] net/ice: fix FDIR flow type conflict

2019-11-20 Thread Ye Xiaolong
On 11/21, Qi Zhang wrote: >Flow type "IPv4 + UDP" or "IPv4 + TCP" is conflict with "IPv4 + any" >flow type. If a rule for IPv4 + any is created, we should reject any rule >for IPv4 + UDP otherwise the first rule may be impacted, same decision >should be made on a reverse order. >For IPv6 and IPv4 G

Re: [dpdk-dev] [PATCH v3 0/2] fix FDIR support for GTPU

2019-11-20 Thread Ye Xiaolong
On 11/21, Yahui Cao wrote: >This patch series enables FDIR support for both GTP-U and GTP-U with >extension header. > >- Patch 1 renames GTPU with extension header related variables >- Patch 2 adds FDIR support for non-extension-header GTPU > >-- >v3: >* Change commit message > >v2: >* Re-organize

Re: [dpdk-dev] [PATCH v18 10/19] raw/ifpga: add SEU error handler

2019-11-20 Thread Xu, Rosen
Hi, > -Original Message- > From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Thursday, November 21, 2019 5:23 > To: Xu, Rosen > Cc: dev@dpdk.org; Zhang, Tianfei ; Pei, Andy > ; Ye, Xiaolong ; Yigit, Ferruh > ; david.march...@redhat.com > Subject: Re: [dpdk-dev] [PATCH v18 10/19]

Re: [dpdk-dev] [PATCH] net/ixgbe: fix qos sched sample app performance drop

2019-11-20 Thread Wang, ShougangX
Hi, Xiaolong > -Original Message- [snip] > >+static void ixgbe_dev_macsec_init(struct rte_eth_dev *dev); > >+ > > /* > > * Define VF Stats MACRO for Non "cleared on read" register > > */ > >@@ -1095,6 +1097,8 @@ eth_ixgbe_dev_init(struct rte_eth_dev *eth_dev, > >void *init_params __rte_u

Re: [dpdk-dev] [PATCH v18 10/19] raw/ifpga: add SEU error handler

2019-11-20 Thread Zhang, Tianfei
> -Original Message- > From: David Marchand > Sent: Thursday, November 21, 2019 5:30 AM > To: Thomas Monjalon > Cc: Xu, Rosen ; dev ; Zhang, Tianfei > ; Pei, Andy ; Ye, Xiaolong > ; Yigit, Ferruh > Subject: Re: [dpdk-dev] [PATCH v18 10/19] raw/ifpga: add SEU error handler > > On Wed,

[dpdk-dev] [PATCH v2 1/5] event/octeontx2: fix TIM HW race condition

2019-11-20 Thread pbhagavatula
From: Pavan Nikhilesh Fix HW race condition observed when timeout resolution is low (<5us). When HW traverses a given TIM bucket it will clear chunk_remainder, but since SW always decreases the chunk_remainder at the start of the arm routine it might cause a race where SW updates chunk_remainder

[dpdk-dev] [PATCH v2 3/5] event/octeontx2: improve chunk pool performance

2019-11-20 Thread pbhagavatula
From: Pavan Nikhilesh Enable mempool cache for internal mempool to improve alloc performance. Signed-off-by: Pavan Nikhilesh --- drivers/event/octeontx2/otx2_tim_evdev.c | 4 ++-- drivers/event/octeontx2/otx2_tim_worker.h | 15 ++- 2 files changed, 16 insertions(+), 3 deletions(-

[dpdk-dev] [PATCH v2 5/5] event/octeontx2: update start timestamp periodically

2019-11-20 Thread pbhagavatula
From: Pavan Nikhilesh Update start timestamp periodically to prevent drift. Signed-off-by: Pavan Nikhilesh --- drivers/event/octeontx2/otx2_tim_evdev.c | 28 +++ drivers/event/octeontx2/otx2_tim_evdev.h | 7 -- drivers/event/octeontx2/otx2_tim_worker.c | 19 +

[dpdk-dev] [PATCH v2 4/5] event/octeontx2: update SSO buffers based on timer count

2019-11-20 Thread pbhagavatula
From: Pavan Nikhilesh Update SSO internal XAQ buffers based on number of timers in event timer adapter. Signed-off-by: Pavan Nikhilesh --- drivers/event/octeontx2/otx2_evdev.h | 6 +- drivers/event/octeontx2/otx2_evdev_adptr.c | 84 +- drivers/event/octeontx2/otx2_ti

[dpdk-dev] [PATCH v2 2/5] event/octeontx2: use opposite bucket to store current chunk

2019-11-20 Thread pbhagavatula
From: Pavan Nikhilesh Since TIM buckets are always aligned to 32B and our cache line size being 128B, we will always have a cache miss when reading current_chunk pointer. Avoid the cache miss by storing the current_chunk pointer in the bucket opposite to the current bucket. Signed-off-by: Pavan

Re: [dpdk-dev] [PATCH v4] net/ice: add flow mark hint support

2019-11-20 Thread Thomas Monjalon
21/11/2019 02:19, Zhang, Qi Z: > From: Thomas Monjalon > > 19/11/2019 07:14, Qi Zhang: > > > Since not all data paths support flow mark, the driver needs a hint > > > from application to select the correct data path if flow mark is > > > required. The patch introduces a devarg "flow-mark-support"

Re: [dpdk-dev] [PATCH] net/mlx5: fix incorrect L3 layer chosen in TTL action

2019-11-20 Thread Matan Azrad
Hi Mou From: Suanming Mou > For IPINIP flow, there are two L3 layer match pattern items, the inner layer > follows the outer layer as the latter L3 layer item, the TTL action handles > the > outer layer. > > Current the outer and inner L3 layers are both regared as the outer L3 layer, > it cau

[dpdk-dev] [PATCH v2 1/3] doc: add skeleton for eventdevs feature matrices

2019-11-20 Thread Sunil Kumar Kori
Patch adds skeleton for feature matrices for event dev and Rx/Tx adapters. Signed-off-by: Sunil Kumar Kori --- v2: - Review comments incorporated doc/guides/eventdevs/index.rst| 1 + doc/guides/eventdevs/overview.rst | 19 + .../overview_adptr_feature_table.txt

[dpdk-dev] [PATCH v2 3/3] doc: update eventdev feature matrix for octeontx

2019-11-20 Thread Sunil Kumar Kori
Patch updates eventdev and adapters feature matrices for octeontx platform. Signed-off-by: Sunil Kumar Kori --- v2: - Review comments incorporated doc/guides/eventdevs/features/octeontx.ini | 16 .../eventdevs/overview_adptr_feature_table.txt | 4 ++-- doc/guides/even

[dpdk-dev] [PATCH v2 2/3] doc: update eventdev feature matrix for octeontx2

2019-11-20 Thread Sunil Kumar Kori
Patch updates eventdev and adapters feature matrices for octeontx2 platform. Signed-off-by: Sunil Kumar Kori --- v2: - Review comments incorporated doc/guides/eventdevs/features/octeontx2.ini | 17 + .../eventdevs/overview_adptr_feature_table.txt | 6 +++--- doc/guides/ev

<    1   2