Re: [dpdk-dev] [EXT] Re: [PATCH v3 0/3] test: fix timeout in flags autotest

2019-11-13 Thread Krzysztof Kanas
On 12/11/2019 21:34, David Marchand wrote: > On Tue, Nov 12, 2019 at 9:29 AM Krzysztof Kanas wrote: >> On 19-11-08 14:45, David Marchand wrote: >>> External Email >>> >>> -- >>> O

Re: [dpdk-dev] [EXT] Re: [PATCH v3 0/3] test: fix timeout in flags autotest

2019-11-12 Thread Krzysztof Kanas
On 19-11-08 14:45, David Marchand wrote: > External Email > > -- > On Fri, Nov 8, 2019 at 12:05 PM David Marchand > wrote: > > > > On Fri, Nov 8, 2019 at 11:21 AM wrote: > > > > > > Hi David, > > > > > > Thanks for review, hopef

Re: [dpdk-dev] [EXT] Re: [PATCH v2] test: fix process dup fd close

2019-11-03 Thread Krzysztof Kanas
On 19-10-30 10:06, David Marchand wrote: > External Email > > -- > On Mon, Sep 2, 2019 at 11:50 AM wrote: > > > > From: Krzysztof Kanas > > > > process_dup was intending to close it'

Re: [dpdk-dev] [PATCH v2] test: fix process dup fd close

2019-09-23 Thread Krzysztof Kanas
Ping.. On 19-09-02 11:49, kka...@marvell.com wrote: > From: Krzysztof Kanas > > process_dup was intending to close it's own fd's but failed to do so > > Fixes: af75078fece3 ("first public release") > > Signed-off-by: Krzysztof Kanas > --- > v2

Re: [dpdk-dev] [EXT] Re: [PATCH 1/2] net/bonding: fix stack overflow in selection logic

2019-08-07 Thread Krzysztof Kanas
On 19-08-05 17:09, David Marchand wrote: > External Email > > -- > On Mon, Aug 5, 2019 at 4:46 PM wrote: > > > > From: Krzysztof Kanas > > > > Bonding selection logic uses agg_bandwidth,

Re: [dpdk-dev] [EXT] Re: [PATCH] mk: disable flag for no packet member warning

2019-07-23 Thread Krzysztof Kanas
On 19-07-22 14:44, Bruce Richardson wrote: > External Email > > -- > On Mon, Jul 22, 2019 at 02:39:59PM +0200, kka...@marvell.com wrote: > > From: Krzysztof Kanas > > > > gcc prior 9 don

Re: [dpdk-dev] [EXT] Re: [PATCH v2] net/af_packet: add string error for system errors

2019-07-11 Thread Krzysztof Kanas
On 19-07-10 09:04, Stephen Hemminger wrote: > External Email > > -- > On Wed, 10 Jul 2019 16:46:30 +0200 > wrote: > > > > > +#define PMD_LOG_ERRNO(level, fmt, args...) \ > > + rte_log(RTE_LOG_ ## level, af_packet_logtype, \

Re: [dpdk-dev] [EXT] Re: [PATCH] net/af_packet: append system error to error msgs

2019-07-05 Thread Krzysztof Kanas
On 19-07-04 19:59, Ferruh Yigit wrote: > External Email > > -- > On 7/4/2019 3:39 PM, kka...@marvell.com wrote: > > From: Krzysztof Kanas > > > > Print system error to make easier diag

Re: [dpdk-dev] [EXT] Re: [PATCH] net/af_packet: set default blocksize to pagesize

2019-07-03 Thread Krzysztof Kanas
On 19-06-27 19:25, Ferruh Yigit wrote: > External Email > > -- > On 6/24/2019 3:32 PM, kka...@marvell.com wrote: > > From: Krzysztof Kanas > > > > Kernel validates block size to be align

[dpdk-dev] [PATCH] app/testpmd: add commands for TM to mark pkts

2018-08-17 Thread Krzysztof Kanas
Add following testpmd run-time commands to support test of TM packet marking: set port tm mark ip_ecn set port tm mark ip_dscp set port tm mark vlan_dei Signed-off-by: Krzysztof Kanas --- app/test-pmd/cmdline.c | 3 + app/test-pmd/cmdline_tm.c

[dpdk-dev] [PATCH v3 1/2] app/testpmd: fix use of uninitialized field

2018-07-25 Thread Krzysztof Kanas
print_err_msg uses message field that may be not initialized causing segmentation fault. Fixes: 12f76f5247e2 ("app/testpmd: add command to resume a TM node") Cc: t...@semihalf.com Signed-off-by: Krzysztof Kanas --- v3: Fix the Fixes: commit message line --- app/test-pmd/cmdline

[dpdk-dev] [PATCH v3 2/2] app/testpmd: fix help string for tm commit cmd

2018-07-25 Thread Krzysztof Kanas
Fixes: 996cb153af06 ("app/testpmd: add commands for TM nodes and hierarchy commit") Cc: jasvinder.si...@intel.com Signed-off-by: Krzysztof Kanas --- app/test-pmd/cmdline_tm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test-pmd/cmdline_tm.c b/ap

[dpdk-dev] [PATCH v2 2/2] app/testpmd: fix help string for tm commit cmd

2018-07-18 Thread Krzysztof Kanas
Fixes: bd475cefc7cb ("app/testpmd: fix use of uninitialized field") Cc: krzysztof.ka...@caviumnetworks.com Signed-off-by: Krzysztof Kanas --- v2: * Fix the Fixes commit message line --- app/test-pmd/cmdline_tm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ap

[dpdk-dev] [PATCH 2/2] app/testpmd: fix help string for tm commit cmd

2018-07-10 Thread Krzysztof Kanas
Fixes: 86dd86088506 ("app/testpmd: fix use of uninitialized field") Cc: krzysztof.ka...@caviumnetworks.com Signed-off-by: Krzysztof Kanas --- app/test-pmd/cmdline_tm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test-pmd/cmdline_tm.c b/app/test-pmd/cmdline_

[dpdk-dev] [PATCH 1/2] app/testpmd: fix use of uninitialized field

2018-07-10 Thread Krzysztof Kanas
print_err_msg uses message field that may be not initialized causing segmentation fault. Fixes: 12f76f5247e2 ("app/testpmd: add command to resume a TM node") Cc: t...@semihalf.com Signed-off-by: Krzysztof Kanas --- app/test-pmd/cmdline_tm.c | 19 +++ 1 file c