Re: [PATCH] version: 22.11-rc0

2022-07-20 Thread Thomas Monjalon
19/07/2022 23:02, Thomas Monjalon: > 18/07/2022 12:09, David Marchand: > > --- a/devtools/libabigail.abignore > > +++ b/devtools/libabigail.abignore > > - > > -; Temporary exceptions till next major ABI version ; > > -;

Re: [v3 01/24] eal/loongarch: add atomic operations for LoongArch

2022-07-20 Thread zhoumin
Ping for review or feedback for this new arch support. Thanks, Min On 2022年06月06日 21:10, Min Zhou wrote: This patch adds architecture specific atomic operations for LoongArch architecture. These implementations use standard atomics of toolchain and heavily reference generic atomics codes. Sig

Re: autotest system requirements.

2022-07-20 Thread Bruce Richardson
On Tue, Jul 19, 2022 at 01:00:07PM -0700, Stephen Hemminger wrote: > With 22.07 release, the test requirements seemed to have changed. > Can't run tests unless root now. > > And the table test fails if only 1G of hugepages is setup. > > This doesn't match the documentation: > https://doc.dpdk.org

[Bug 1054] Bugzilla test

2022-07-20 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1054 Bug ID: 1054 Summary: Bugzilla test Product: DPDK Version: 22.03 Hardware: All OS: All Status: UNCONFIRMED Severity: normal Priority: Normal Co

Re: [PATCH] crypto/ccp: Check for the NULL pointer after calling rte_malloc

2022-07-20 Thread David Marchand
On Wed, Jul 20, 2022 at 8:29 AM Namburu, Chandu-babu wrote: > From: Shiqi Liu <835703...@qq.com> > > As the possible failure of the rte_malloc(), the not_checked and checked > could be NULL pointer. > Therefore, it should be better to check it in order to avoid the dereference > of the NULL poin

Re: [PATCH] crypto/ccp: Check for the NULL pointer after calling rte_malloc

2022-07-20 Thread Stephen Hemminger
On Wed, 20 Jul 2022 06:29:06 + "Namburu, Chandu-babu" wrote: > sha_ctx = (void *)rte_malloc(NULL, SHA512_DIGEST_SIZE, 64); > + if (sha_ctx == NULL) { > + return -ENOMEM; > + } There is unnecessary cast here (pre-existing). rte_malloc() already returns void *

Re: autotest system requirements.

2022-07-20 Thread Stephen Hemminger
On Wed, 20 Jul 2022 12:07:59 +0100 Bruce Richardson wrote: > On Tue, Jul 19, 2022 at 01:00:07PM -0700, Stephen Hemminger wrote: > > With 22.07 release, the test requirements seemed to have changed. > > Can't run tests unless root now. > > > > And the table test fails if only 1G of hugepages is s

RE: [PATCH v2 1/3] power: add uncore API to power library

2022-07-20 Thread Pattan, Reshma
> -Original Message- > From: Kearney, Tadhg > diff --git a/config/x86/meson.build b/config/x86/meson.build index > +dpdk_conf.set('RTE_MAX_NUMA_DIE', 1) > +dpdk_conf.set('RTE_MAX_UNCORE_FREQS', 32) Check if these flags should be added to other platforms. > +Abstract > + > +

Re: [v3 00/24] Support LoongArch architecture

2022-07-20 Thread David Marchand
Hello, On Mon, Jun 6, 2022 at 3:11 PM Min Zhou wrote: > > Dear team, > The following patch set is intended to support DPDK running on LoongArch > architecture. > > LoongArch is the general processor architecture of Loongson and is a new > RISC ISA, which is a bit like MIPS or RISC-V. > > The onli

RE: [EXT] Re: [PATCH] examples/l2fwd: add check of Rx packets count

2022-07-20 Thread Rahul Bhansali
Ping > -Original Message- > From: Thomas Monjalon > Sent: Monday, June 27, 2022 2:42 AM > To: dev@dpdk.org > Cc: Bruce Richardson ; ferruh.yi...@xilinx.com; > ajit.khapa...@broadcom.com; abo...@pensando.io; > andrew.rybche...@oktetlabs.ru; beilei.x...@intel.com; ch...@att.com; > chenbo...

Re: [PATCH] examples/l2fwd: add check of Rx packets count

2022-07-20 Thread Stephen Hemminger
On Wed, 25 May 2022 14:43:27 +0530 Rahul Bhansali wrote: > An additional check is added to avoid extra processing if > receive packets are 0. > > Performance impact: with Marvell OCTEON TX2 platform, observed an > improvement by ~14%. > > Signed-off-by: Rahul Bhansali This makes sense. Could

RE: [PATCH v9 2/4] ethdev: introduce protocol hdr based buffer split

2022-07-20 Thread Ding, Xuan
Hi Andrew, > -Original Message- > From: Andrew Rybchenko > Sent: 2022年7月8日 23:01 > To: Wu, WenxuanX ; tho...@monjalon.net; Li, > Xiaoyun ; ferruh.yi...@xilinx.com; Singh, Aman Deep > ; dev@dpdk.org; Zhang, Yuying > ; Zhang, Qi Z ; > jerinjac...@gmail.com > Cc: step...@networkplumber.org;

[PATCH] app/crypto-perf: remove redundant function return

2022-07-20 Thread Anoob Joseph
Remove redundant function return value. The function is used in datapath and the return value is not checked in any of the existing callers. Signed-off-by: Anoob Joseph --- app/test-crypto-perf/cperf_ops.c | 36 +--- app/test-crypto-perf/cperf_ops.h | 2 +- 2 files c