Re: [dpdk-dev] [PATCH] net/mlx5: fix get metadata register for E-Switch domain

2019-11-23 Thread Matan Azrad
From: Viacheslav Ovsiienko > The metadata register used for META item/action within E-Switch steering > domain should be altered depending on dv_xmeta_en devarg value. > > Fixes: 3e8edd0ef848 ("net/mlx5: update metadata register ID query") > > Signed-off-by: Viacheslav Ovsiienko > --- Acked-b

Re: [dpdk-dev] [PATCH v2] net/mlx5: fix incorrect L3/L4 layer chosen with tunnel

2019-11-23 Thread Matan Azrad
From: Suanming Mou > On 11/21/2019 8:09 PM, Suanming Mou wrote: > > For tunnel mode, there maybe two L3/L4 layer match pattern items, the > > inner layer follows the outer layer as the latter layer item, the TTL > > and port modify actions should handle the outermost layer. > > > > Current the ou

[dpdk-dev] [PATCH v3] mbuf: extend pktmbuf pool private structure

2019-11-23 Thread Shahaf Shuler
With the API and ABI freeze ahead, it will be good to reserve some bits on the private structure for future use. Otherwise we will potentially need to maintain two different private structure during 2020 period. There is already one use case for those reserved bits[1] The reserved field should b

Re: [dpdk-dev] [PATCH v2] mbuf: extend pktmbuf pool private structure

2019-11-23 Thread Shahaf Shuler
Thursday, November 21, 2019 4:32 PM, Olivier Matz: > Subject: Re: [PATCH v2] mbuf: extend pktmbuf pool private structure > > On Thu, Nov 21, 2019 at 12:28:18PM +, Shahaf Shuler wrote: [...[ > > > > Sorry I missed the last version in my previous mail. > > I think in examples/ntb/ntb_fwd.c:n

Re: [dpdk-dev] [PATCH v2 3/3] ethdev: improve flow mark Rx offload deprecation notice

2019-11-23 Thread Thomas Monjalon
23/11/2019 10:42, Jerin Jacob: > On Sat, Nov 23, 2019 at 3:58 AM Thomas Monjalon wrote: > > 22/11/2019 12:53, Andrew Rybchenko: > > > On 11/22/19 2:15 PM, Thomas Monjalon wrote: > > > > 22/11/2019 11:12, Andrew Rybchenko: > > > >> On 11/22/19 1:01 AM, Thomas Monjalon wrote: > > > >>> 19/11/2019 13

[dpdk-dev] Build with coverage fail on rte_flow_dynf_metadata_offs is not flagged as experimental

2019-11-23 Thread Andrew Rybchenko
Hi, I've failed to quickly make a patch to fix it. make config T=x86_64-native-linux-gcc O=build_coverage make -j8 EXTRA_CFLAGS='-ggdb --coverage' EXTRA_LDFLAGS=-lgcov results in ...   CC ethdev_private.o   CC rte_ethdev.o   CC rte_class_eth.o   CC rte_flow.o   CC rte_tm.o   CC rte_mtr.o   CC

Re: [dpdk-dev] [PATCH v2 3/3] ethdev: improve flow mark Rx offload deprecation notice

2019-11-23 Thread Jerin Jacob
On Sat, Nov 23, 2019 at 3:58 AM Thomas Monjalon wrote: > > 22/11/2019 12:53, Andrew Rybchenko: > > On 11/22/19 2:15 PM, Thomas Monjalon wrote: > > > 22/11/2019 11:12, Andrew Rybchenko: > > >> On 11/22/19 1:01 AM, Thomas Monjalon wrote: > > >>> 19/11/2019 13:12, Andrew Rybchenko: > > The depre

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

2019-11-23 Thread Jerin Jacob
On Sat, Nov 23, 2019 at 1:07 AM Pavan Nikhilesh Bhagavatula wrote: > > +Cc: sta...@dpdk.org > > >-Original Message- > >From: pbhagavat...@marvell.com > >Sent: Friday, November 22, 2019 9:14 PM > >To: Jerin Jacob Kollanukkaran ; Pavan Nikhilesh > >Bhagavatula > >Cc: dev@dpdk.org > >Subjec

[dpdk-dev] [PATCH] net/octeontx2: fix ptype parsing disabled by default

2019-11-23 Thread pbhagavatula
From: Pavan Nikhilesh Enable Ptype parsing by default, only disable when `rte_eth_dev_set_ptypes` is called with ptype_mask as 0. This would enable applications that are dependent on packet type parsing like l3fwd. Fixes: d2706e15e6fb ("net/octeontx2: support reduced set of packet types") Signe