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
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
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
>
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
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
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
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
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
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
> -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
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
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
> 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
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
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
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
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
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,
> -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
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
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
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(+),
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
> -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
> ;
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 (
>>> 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
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
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
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 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
30 matches
Mail list logo