[dpdk-dev] [PATCH] net/ena: get device info statically

2019-02-15 Thread Michal Krawczyk
Whenever the app is calling rte_eth_dev_info_get(), it shouldn't use the admin command. It was causing problems, if it was called from the secondary process - the main process was crashing, and the secondary app wasn't getting any result, as the admin request couldn't be processed by the process wh

Re: [dpdk-dev] [PATCH 3/5] app/testpmd: add missing transmit errors stats

2019-02-15 Thread Thomas Monjalon
14/02/2019 19:51, David Marchand: > What is the purpose of oerrors ? > > Since the drivers (via rte_eth_tx_burst return value) report the numbers of > packets successfully transmitted, the application can try to retransmit the > packets that did not make it and counts this. > If the driver counts

Re: [dpdk-dev] [PATCH 3/5] app/testpmd: add missing transmit errors stats

2019-02-15 Thread David Marchand
On Fri, Feb 15, 2019 at 9:58 AM Thomas Monjalon wrote: > 14/02/2019 19:51, David Marchand: > > What is the purpose of oerrors ? > > > > Since the drivers (via rte_eth_tx_burst return value) report the numbers > of > > packets successfully transmitted, the application can try to retransmit > the >

[dpdk-dev] [PATCH] test/compress: add max mbuf size test case

2019-02-15 Thread Tomasz Jozwiak
This patch adds new test case in which max. size of chain mbufs has been used to compress random data dynamically. Signed-off-by: Tomasz Jozwiak --- test/test/test_compressdev.c | 157 +-- 1 file changed, 136 insertions(+), 21 deletions(-) diff --git a/te

[dpdk-dev] [PATCH] compress/qat: add dynamic sgl allocation

2019-02-15 Thread Tomasz Jozwiak
This patch adds dynamic SGL allocation instead of static one. The number of element in SGL can be adjusted in each operation depend of the request. Signed-off-by: Tomasz Jozwiak --- config/common_base | 1 - doc/guides/compressdevs/qat_comp.rst | 1 - doc/guides/cryptodevs/qa

[dpdk-dev] [PATCH] compress/qat: add fallback to fixed compression

2019-02-15 Thread Tomasz Jozwiak
This patch adds fallback to fixed compression feature during dynamic compression, when the input data size is greater than IM buffer size / 1.1. This feature doesn't stop compression proccess when IM buffer can be too small to handle produced data. Signed-off-by: Tomasz Jozwiak --- doc/guides/cr

[dpdk-dev] [PATCH v3] service: fix parameter type

2019-02-15 Thread Nikhil Rao
The type of value parameter to rte_service_attr_get should be uint64_t *, since the attributes are of type uint64_t. Fixes: 4d55194d76a4 ("service: add attribute get function") Reviewed-by: Gage Eads Signed-off-by: Nikhil Rao Acked-by: Harry van Haaren --- lib/librte_eal/common/include/rte_se

[dpdk-dev] [PATCH v3] power: fix to remove unused variable

2019-02-15 Thread Pallantla Poornima
Variable pfi_str is removed since it is unused. Fixes: 450f0791312c ("power: add traffic pattern aware power control") Cc: sta...@dpdk.org Signed-off-by: Pallantla Poornima Reviewed-by: Rami Rosen --- v3: Updated fixes line. v2: Removed unused variable as suggested. --- lib/librte_power/rte_po

Re: [dpdk-dev] rte_flow update support?

2019-02-15 Thread Tom Barbette
Hi Shahaf, This is great news! I'll definitely stay tuned. Is there any way to support replacement with the current system with some patching? Eg the driver refuses to overwrite rules with kernel message such as "FTE flow tag 196608 already exists with different flow tag 327680". Would it be

Re: [dpdk-dev] [PATCH] app/testbbdev: fix sprintf with snprintf

2019-02-15 Thread Mokhtar, Amr
> -Original Message- > From: Parthasarathy, JananeeX M > Sent: Friday 15 February 2019 11:08 > To: Yigit, Ferruh ; Poornima, PallantlaX > ; dev@dpdk.org > Cc: Pattan, Reshma ; Mokhtar, Amr > ; sta...@dpdk.org > Subject: RE: [dpdk-dev] [PATCH] app/testbbdev: fix sprintf with snprintf > > H

Re: [dpdk-dev] [PATCH v3] power: fix to remove unused variable

2019-02-15 Thread Hunt, David
On 15/2/2019 10:28 AM, Pallantla Poornima wrote: Variable pfi_str is removed since it is unused. Fixes: 450f0791312c ("power: add traffic pattern aware power control") Cc: sta...@dpdk.org Signed-off-by: Pallantla Poornima Reviewed-by: Rami Rosen --- v3: Updated fixes line. v2: Removed unuse

Re: [dpdk-dev] [PATCH v2 0/2] Minor changes to checkpatches

2019-02-15 Thread Bruce Richardson
On Thu, Feb 14, 2019 at 02:35:45PM -0500, Michael Santana wrote: > Fixed a minor bug with variable assignment, as well as added an > option for checkpatches > > v1->v2: > Enable codespell by default. Disable via config file > > Michael Santana (2): > Enable codespell by default. Can be disabl

Re: [dpdk-dev] [PATCH 3/5] app/testpmd: add missing transmit errors stats

2019-02-15 Thread Wiles, Keith
> On Feb 15, 2019, at 8:05 AM, Bruce Richardson > wrote: > > On Fri, Feb 15, 2019 at 10:33:47AM +0100, David Marchand wrote: >> On Fri, Feb 15, 2019 at 9:58 AM Thomas Monjalon >> <[1]tho...@monjalon.net> wrote: >> >> 14/02/2019 19:51, David Marchand: >>> What is the purpose of oerror

Re: [dpdk-dev] [PATCH v3] power: fix to remove unused variable

2019-02-15 Thread Aaron Conole
Pallantla Poornima writes: > Variable pfi_str is removed since it is unused. > > Fixes: 450f0791312c ("power: add traffic pattern aware power control") > Cc: sta...@dpdk.org > > Signed-off-by: Pallantla Poornima > Reviewed-by: Rami Rosen > --- Whoops, missed the v3 Acked-by: Aaron Conole

Re: [dpdk-dev] [PATCH 3/5] app/testpmd: add missing transmit errors stats

2019-02-15 Thread Bruce Richardson
On Fri, Feb 15, 2019 at 10:33:47AM +0100, David Marchand wrote: >On Fri, Feb 15, 2019 at 9:58 AM Thomas Monjalon ><[1]tho...@monjalon.net> wrote: > > 14/02/2019 19:51, David Marchand: > > What is the purpose of oerrors ? > > > > Since the drivers (via rte_eth_tx_burst r

Re: [dpdk-dev] [PATCH v2] power: fix to remove unused variable

2019-02-15 Thread Aaron Conole
Pallantla Poornima writes: > Variable pfi_str is removed since it is unused. > > Fixes: 450f079131 ("power: add traffic pattern aware power control") > Cc: sta...@dpdk.org > > Signed-off-by: Pallantla Poornima > --- Acked-by: Aaron Conole

Re: [dpdk-dev] [PATCH 3/5] app/testpmd: add missing transmit errors stats

2019-02-15 Thread David Marchand
On Fri, Feb 15, 2019 at 3:05 PM Bruce Richardson wrote: > On Fri, Feb 15, 2019 at 10:33:47AM +0100, David Marchand wrote: > >On Fri, Feb 15, 2019 at 9:58 AM Thomas Monjalon > ><[1]tho...@monjalon.net> wrote: > > > > 14/02/2019 19:51, David Marchand: > > > What is the purpose of

Re: [dpdk-dev] [PATCH 3/5] app/testpmd: add missing transmit errors stats

2019-02-15 Thread Thomas Monjalon
15/02/2019 16:04, David Marchand: > On Fri, Feb 15, 2019 at 3:05 PM Bruce Richardson > wrote: > > > On Fri, Feb 15, 2019 at 10:33:47AM +0100, David Marchand wrote: > > >On Fri, Feb 15, 2019 at 9:58 AM Thomas Monjalon > > ><[1]tho...@monjalon.net> wrote: > > > > > > 14/02/2019 19:51,

Re: [dpdk-dev] [PATCH] compress/qat: add fallback to fixed compression

2019-02-15 Thread Trahe, Fiona
> -Original Message- > From: Jozwiak, TomaszX > Sent: Friday, February 15, 2019 9:45 AM > To: dev@dpdk.org; Trahe, Fiona ; Jozwiak, TomaszX > > Subject: [PATCH] compress/qat: add fallback to fixed compression > > This patch adds fallback to fixed compression > feature during dynamic co

Re: [dpdk-dev] [PATCH 3/5] app/testpmd: add missing transmit errors stats

2019-02-15 Thread David Marchand
On Fri, Feb 15, 2019 at 5:19 PM Thomas Monjalon wrote: > 15/02/2019 16:04, David Marchand: > > On Fri, Feb 15, 2019 at 3:05 PM Bruce Richardson < > bruce.richard...@intel.com> > > wrote: > > > > > On Fri, Feb 15, 2019 at 10:33:47AM +0100, David Marchand wrote: > > > >On Fri, Feb 15, 2019 at 9

[dpdk-dev] [PATCH 1/1] net/ice: faster bit check

2019-02-15 Thread Paul M Stillwell Jr
From: Jesse Brandeburg Implement a slightly faster bit check, used for checking descriptors in the hot path. Signed-off-by: Jesse Brandeburg Signed-off-by: Paul M Stillwell Jr --- drivers/net/ice/ice_rxtx.c | 15 +++ 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/d

[dpdk-dev] [PATCH v2] net/ice: faster bit check

2019-02-15 Thread Paul M Stillwell Jr
From: Jesse Brandeburg Implement a slightly faster bit check, used for checking descriptors in the hot path. Signed-off-by: Jesse Brandeburg Signed-off-by: Paul M Stillwell Jr --- v2: fixed checkpatch issues --- drivers/net/ice/ice_rxtx.c | 15 +++ 1 file changed, 7 insertions(+),

[dpdk-dev] [PATCH v3] net/ice: faster bit check

2019-02-15 Thread Paul M Stillwell Jr
From: Jesse Brandeburg Implement a slightly faster bit check, used for checking descriptors in the hot path. Signed-off-by: Jesse Brandeburg Signed-off-by: Paul M Stillwell Jr --- v3: really fix checkpatch issues v2: fixed checkpatch issues --- drivers/net/ice/ice_rxtx.c | 11 +-- 1 f

Re: [dpdk-dev] [PATCH 3/5] app/testpmd: add missing transmit errors stats

2019-02-15 Thread Ananyev, Konstantin
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of David Marchand > Sent: Friday, February 15, 2019 5:32 PM > To: Thomas Monjalon > Cc: Richardson, Bruce ; dev@dpdk.org; Lu, Wenzhuo > ; Wu, Jingjing > ; Iremonger, Bernard ; > Maxime Coquelin ; Yigit, Ferruh > ;

Re: [dpdk-dev] [PATCH 3/5] app/testpmd: add missing transmit errors stats

2019-02-15 Thread David Marchand
On Fri, Feb 15, 2019 at 7:15 PM Ananyev, Konstantin < konstantin.anan...@intel.com> wrote: > > -Original Message- > > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of David Marchand > > I am also for option 2 especially because of this. > > A driver that refuses a packet for reason X (

Re: [dpdk-dev] [PATCH 3/5] app/testpmd: add missing transmit errors stats

2019-02-15 Thread Ananyev, Konstantin
>>> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of David Marchand >>> I am also for option 2 especially because of this. >>> A driver that refuses a packet for reason X (which is a limitation, or an >>> incorrect config or whatever that is not a transient condition) but gives >>> it back to t

Re: [dpdk-dev] [PATCH 3/5] app/testpmd: add missing transmit errors stats

2019-02-15 Thread Thomas Monjalon
15/02/2019 19:42, Ananyev, Konstantin: > >>> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of David Marchand > >>> I am also for option 2 especially because of this. > >>> A driver that refuses a packet for reason X (which is a limitation, or an > >>> incorrect config or whatever that is not a

Re: [dpdk-dev] [PATCH 3/5] app/testpmd: add missing transmit errors stats

2019-02-15 Thread Stephen Hemminger
On Fri, 15 Feb 2019 20:38:59 +0100 Thomas Monjalon wrote: > 15/02/2019 19:42, Ananyev, Konstantin: > > >>> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of David Marchand > > >>> I am also for option 2 especially because of this. > > >>> A driver that refuses a packet for reason X (which is a

[dpdk-dev] [PATCH] app/testpmd: fix crash when doing port info of vdev

2019-02-15 Thread Stephen Hemminger
From: Stephen Hemminger Noticed a SEGV in testpmd doing: > show port info 1 on Hyper-V with failsafe/tap PMD. A vdev may not have an associated device (i.e NULL) and therefore testpmd should skip devargs in that case. Fixes: cf72ed09181b ("app/testpmd: display devargs in port info output") Sig

[dpdk-dev] [PATCH v2] mem: poison memory when freed

2019-02-15 Thread Stephen Hemminger
DPDK malloc library allows broken programs to work because the semantics of zmalloc and malloc are the same. This patch enables a more secure model which will catch (and crash) programs that reuse memory already freed if RTE_MALLOC_DEBUG is enabled. Signed-off-by: Stephen Hemminger Acked-by: An