[PATCH] crypto/qat: fix cleanup function default behaviour

2022-06-15 Thread Arek Kusztal
Full cookie data should be cleared by default if not algorithm specified. This is protection in case algorithm specific cleanup is not implemented. Fixes: 3b78aa7b2317 ("crypto/qat: refactor asymmetric crypto functions") Signed-off-by: Arek Kusztal --- drivers/crypto/qat/qat_asym.c | 4 1

Re: [PATCH 2/2] common/cnxk: add include for macro definition

2022-06-15 Thread Thomas Monjalon
14/06/2022 14:29, Bruce Richardson: > The header file "roc_io.h" uses the "__plt_always_inline" macro but > don't include "roc_platform.h" to get the definition of it. This > inclusion is not necessary for compilation, but the lack of it can > confuse some indexers - such as those in eclipse, which

[PATCH v2] vdpa/ifc: fix null pointer dereference

2022-06-15 Thread Andy Pei
Fix null pointer dereference reported in coverity scan. Coverity issue: 378882 Fixes: 5d75517beffe ("vdpa/ifc/base: access correct register for blk device") Signed-off-by: Andy Pei --- drivers/vdpa/ifc/base/ifcvf.c | 9 + 1 file changed, 9 insertions(+) diff --git a/drivers/vdpa/ifc/ba

RE: [PATCH v7 2/5] raw/ifpga: add N3000 AFU driver

2022-06-15 Thread Xu, Rosen
Hi Wei, Some comments. Thanks, Rosen > -Original Message- > From: Huang, Wei > Sent: Thursday, June 09, 2022 15:37 > To: dev@dpdk.org; tho...@monjalon.net; nipun.gu...@nxp.com; > hemant.agra...@nxp.com > Cc: sta...@dpdk.org; Xu, Rosen ; Zhang, Tianfei > ; Zhang, Qi Z ; Huang, Wei > > S

RE: [PATCH] vdpa/ifc: fix null pointer dereference

2022-06-15 Thread Pei, Andy
Hi Chenbo, Thanks for your reply. I will fix this in next version. > -Original Message- > From: Xia, Chenbo > Sent: Wednesday, June 15, 2022 10:04 AM > To: Pei, Andy ; dev@dpdk.org > Cc: maxime.coque...@redhat.com; Wang, Xiao W ; > Xu, Rosen ; Xiao, QimaiX > Subject: RE: [PATCH] vdpa/if

RE: [PATCH v7 3/5] raw/ifpga: add HE-LPBK AFU driver

2022-06-15 Thread Xu, Rosen
Hi Wei, > -Original Message- > From: Huang, Wei > Sent: Thursday, June 09, 2022 15:37 > To: dev@dpdk.org; tho...@monjalon.net; nipun.gu...@nxp.com; > hemant.agra...@nxp.com > Cc: sta...@dpdk.org; Xu, Rosen ; Zhang, Tianfei > ; Zhang, Qi Z ; Huang, Wei > > Subject: [PATCH v7 3/5] raw/ifpg

RE: [PATCH v7 4/5] raw/ifpga: add HE-MEM AFU driver

2022-06-15 Thread Xu, Rosen
Hi Wei, > -Original Message- > From: Huang, Wei > Sent: Thursday, June 09, 2022 15:37 > To: dev@dpdk.org; tho...@monjalon.net; nipun.gu...@nxp.com; > hemant.agra...@nxp.com > Cc: sta...@dpdk.org; Xu, Rosen ; Zhang, Tianfei > ; Zhang, Qi Z ; Huang, Wei > > Subject: [PATCH v7 4/5] raw/ifp

[PATCH v2] vdpa/ifc: fix null pointer dereference

2022-06-15 Thread Andy Pei
Fix null pointer dereference reported in coverity scan. Coverity issue: 378882 Fixes: 5d75517beffe ("vdpa/ifc/base: access correct register for blk device") Signed-off-by: Andy Pei Acked-by: Xiao Wang --- drivers/vdpa/ifc/base/ifcvf.c | 9 + 1 file changed, 9 insertions(+) diff --git

Re: [PATCH] config: remove explicit undef of unset values

2022-06-15 Thread David Marchand
On Thu, Dec 16, 2021 at 12:15 PM Bruce Richardson wrote: > > Rather than explicitly clearing any setting of undefined values in our > rte_config.h file, it's better to instead just add a comment that the > value is not set. Using a comment allows the user to set the value using > CFLAGS or similar

RE: [PATCH v7 5/5] raw/ifpga: add HE-HSSI AFU driver

2022-06-15 Thread Xu, Rosen
Hi Wei, > -Original Message- > From: Huang, Wei > Sent: Thursday, June 09, 2022 15:37 > To: dev@dpdk.org; tho...@monjalon.net; nipun.gu...@nxp.com; > hemant.agra...@nxp.com > Cc: sta...@dpdk.org; Xu, Rosen ; Zhang, Tianfei > ; Zhang, Qi Z ; Huang, Wei > > Subject: [PATCH v7 5/5] raw/ifpg

[Bug 1035] __rte_raw_cksum() crash with misaligned pointer

2022-06-15 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1035 Bug ID: 1035 Summary: __rte_raw_cksum() crash with misaligned pointer Product: DPDK Version: 21.11 Hardware: All OS: All Status: UNCONFIRMED Severity: normal

RE: [PATCH v1] raw/ifpga: free file handle before function return

2022-06-15 Thread Xu, Rosen
Hi Wei, > -Original Message- > From: Huang, Wei > Sent: Thursday, June 09, 2022 16:50 > To: dev@dpdk.org; tho...@monjalon.net; nipun.gu...@nxp.com; > hemant.agra...@nxp.com > Cc: sta...@dpdk.org; Xu, Rosen ; Zhang, Tianfei > ; Zhang, Qi Z ; Huang, Wei > > Subject: [PATCH v1] raw/ifpga: f

Re: [PATCH 0/3] Fix xmm_t to rte_xmm_t scalar conversion

2022-06-15 Thread David Marchand
On Thu, Jun 9, 2022 at 2:17 PM Stanislaw Kardach wrote: > > As David noticed in [1] there is an issue with C++ compilation of the > rte_vect.h header in RISC-V. Upon closer inspection, the problem appears on > all architectures due to the type conversion rules in C++. > More precisely a union type

[PATCH] net/igc: fix segmentation fault in secondary dpdk-symmetric_mp

2022-06-15 Thread zhichaox . zeng
From: Zhichao Zeng In the secondary dpdk-symmetric_mp process, the "smp_port_init" was skipped, which cause some function pointers not to be initialized, and a segmentation fault occurred when calling these function pointers. This patch assigns initial values to rx_pkt_burst, tx_pkt_burst and tx

RE: [PATCH V2] vdpa/mlx5: return correct error code after rte_intr_instance_alloc failed

2022-06-15 Thread Matan Azrad
Hi Shiqi From: 835703...@qq.com <835703...@qq.com> > From: Shiqi Liu <835703...@qq.com> > > To Maxime, > I am so sorry too late to reply your comment.My name is Shiqi Liu. > I got stuck in how to reply the comment before.Now, it seenms to be > ok!Maybe there will be some mistakes I have taken ,

RE: [PATCH v7] app/testpmd: add Host Shaper command

2022-06-15 Thread Matan Azrad
From: Spike Du > Add command line options to support host shaper configure. > - Command syntax: > mlx5 set port host_shaper avail_thresh_triggered <0|1> rate > > > - Example commands: > To enable avail_thresh_triggered on port 1 and disable current host > shaper: > testpmd> mlx5 set port 1

DPDK Compilation consuming too much memory

2022-06-15 Thread Raslan Darawsheh
Hi, I've been facing an issue while building DPDK (mostly noticeable when building cross compilation on arm64) as follows: meson --werror --buildtype=debugoptimized --cross-file config/arm/arm64_armv8_linux_gcc -Dexamples=all /tmp/build-aarch64-gcc; ninja -C /tmp/build-aarch64-gcc/ I can see th

Re: [PATCH v2] net/mlx5: fix build with clang 14

2022-06-15 Thread Thomas Monjalon
11/05/2022 18:41, Ali Alnubani: > Use fgets instead of fscanf to resolve the following warning > reported by clang 14.0.0 in Fedora 37 (Rawhide): > > drivers/net/mlx5/linux/mlx5_ethdev_os.c:1137:52: error: > 'fscanf' may overflow; destination buffer in argument 3 has size 16, > but the corresp

event_eth_rx_intr_adapter_autotest failing

2022-06-15 Thread Kundapura, Ganapati
Hi dpdk-dev, Test command: DPDK_TEST=event_eth_rx_intr_adapter_autotest ./dpdk-test event_eth_rx_intr_adapter_autotest is failing while adding interrupt queue to adapter instance. It's failing in rte_eth_dev_rx_intr_ctl_q(), at dev->intr_handle == NULL check 5248 if (!dev->intr_hand

RE: [PATCH v2] net/mlx5: fix build with clang 14

2022-06-15 Thread Slava Ovsiienko
> -Original Message- > From: Ali Alnubani > Sent: Wednesday, May 11, 2022 19:41 > To: dev@dpdk.org > Cc: Michael Baum ; sta...@dpdk.org > Subject: [PATCH v2] net/mlx5: fix build with clang 14 > > Use fgets instead of fscanf to resolve the following warning reported by clang > 14.0.0 in Fe

[Bug 857] gcc12 build error, lib/mbuf

2022-06-15 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=857 David Marchand (david.march...@redhat.com) changed: What|Removed |Added CC||david.march...@redhat.

[Bug 858] gcc12 build error, net/failsafe

2022-06-15 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=858 David Marchand (david.march...@redhat.com) changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Reso

[Bug 860] gcc12 build error, net/ngbe

2022-06-15 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=860 David Marchand (david.march...@redhat.com) changed: What|Removed |Added CC||david.march...@redhat.

[Bug 1016] [dpdk-22.07*] drivers/net/ice meson build failed with gcc12.1.1 on Fedora36/64

2022-06-15 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1016 David Marchand (david.march...@redhat.com) changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Bug 849] gcc12 build error, net/ena

2022-06-15 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=849 David Marchand (david.march...@redhat.com) changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Bug 855] gcc12 build error, vdpa/ifc

2022-06-15 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=855 David Marchand (david.march...@redhat.com) changed: What|Removed |Added CC||david.march...@redhat.

[Bug 856] gcc12 build error, app/test-flow-perf

2022-06-15 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=856 David Marchand (david.march...@redhat.com) changed: What|Removed |Added CC||david.march...@redhat.

Re: [PATCH v2] net/mlx5: fix build with clang 14

2022-06-15 Thread David Marchand
On Wed, Jun 15, 2022 at 10:17 AM Thomas Monjalon wrote: > > 11/05/2022 18:41, Ali Alnubani: > > Use fgets instead of fscanf to resolve the following warning > > reported by clang 14.0.0 in Fedora 37 (Rawhide): > > > > drivers/net/mlx5/linux/mlx5_ethdev_os.c:1137:52: error: > > 'fscanf' may overf

dev@dpdk.org

2022-06-15 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1033 David Marchand (david.march...@redhat.com) changed: What|Removed |Added CC||david.march...@redhat

[Bug 1008] Building DPDK with gcc 12.1.1 throws warnings on Fedora 36

2022-06-15 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1008 David Marchand (david.march...@redhat.com) changed: What|Removed |Added Resolution|--- |INVALID

RE: [EXT] Re: [PATCH v2] devtools: ensure proper tag sequence

2022-06-15 Thread Jakub Palider
> -Original Message- > From: Thomas Monjalon > Sent: Wednesday, June 15, 2022 8:21 AM > To: Jakub Palider > Cc: dev@dpdk.org; david.march...@redhat.com > Subject: [EXT] Re: [PATCH v2] devtools: ensure proper tag sequence > > External Email > > ---

Re: [PATCH 00/12] Fix compilation with gcc 12

2022-06-15 Thread David Marchand
On Wed, May 18, 2022 at 12:17 PM David Marchand wrote: > > Fedora 36 is out since early may and comes with gcc 12. > This series fixes compilation or waives some checks. > > There might be something fishy with rte_memcpy on x86 but, for now, > the rte_memcpy related fixes are on the caller side. >

RE: [PATCH v7 1/5] raw/ifpga: introduce AFU driver framework

2022-06-15 Thread Huang, Wei
> -Original Message- > From: Xu, Rosen > Sent: Wednesday, June 15, 2022 14:55 > To: Huang, Wei ; dev@dpdk.org; > tho...@monjalon.net; nipun.gu...@nxp.com; hemant.agra...@nxp.com > Cc: sta...@dpdk.org; Zhang, Tianfei ; Zhang, Qi Z > > Subject: RE: [PATCH v7 1/5] raw/ifpga: introduce AFU

[PATCH v3] vdpa/mlx5: workaround var offset within page

2022-06-15 Thread Yajun Wu
vDPA driver first uses kernel driver to allocate doorbell(VAR) area for each device. Then uses var->mmap_off and var->length to mmap uverbs device file as doorbell userspace virtual address. Current kernel driver provides var->mmap_off equal to page start of VAR. It's fine with x86 4K page server,

RE: [PATCH v2] net/mlx5: fix build with clang 14

2022-06-15 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Ali Alnubani > Sent: Wednesday, May 11, 2022 7:41 PM > To: dev@dpdk.org > Cc: Michael Baum ; sta...@dpdk.org > Subject: [PATCH v2] net/mlx5: fix build with clang 14 > > Use fgets instead of fscanf to resolve the following warning reported by > clang 14.0.

[PATCH v2] net/nfp: initialize the flbufsz

2022-06-15 Thread Peng Zhang
When the testpmd start-up, it will check MTU range, if MTU > flubfsz, it will lead testpmd start fail. Because the hw->flbufsz doesn't have the initialized value, so it will lead the bug. Fixes: 97a30c4d4c7b ("net/nfp: make sure MTU is never larger than mbuf size") Cc: sta...@dpdk.org Signed-off-

Re: [PATCH 2/2] common/cnxk: add include for macro definition

2022-06-15 Thread Bruce Richardson
On Wed, Jun 15, 2022 at 09:06:26AM +0200, Thomas Monjalon wrote: > 14/06/2022 14:29, Bruce Richardson: > > The header file "roc_io.h" uses the "__plt_always_inline" macro but > > don't include "roc_platform.h" to get the definition of it. This > > inclusion is not necessary for compilation, but the

Re: [PATCH v7] app/testpmd: add Host Shaper command

2022-06-15 Thread Thomas Monjalon
Few comments below, 14/06/2022 14:01, Spike Du: > Add command line options to support host shaper configure. > - Command syntax: > mlx5 set port host_shaper avail_thresh_triggered <0|1> rate > > > - Example commands: > To enable avail_thresh_triggered on port 1 and disable current host > shap

[PATCH] net/mlx5: block negative integrity flows

2022-06-15 Thread Raja Zidane
Negative integrity flows are supported, but malfunctioning due to a bug, and an API change is necessary to fix. Drop negative flow support for now. Signed-off-by: Raja Zidane Acked-by: Matan Azrad Acked-by: Gregory Etelson --- doc/guides/nics/mlx5.rst| 4 +++- drivers/net/mlx5/mlx5_fl

[Bug 1036] vhost primary and secondary process symmetric test meet issue

2022-06-15 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1036 Bug ID: 1036 Summary: vhost primary and secondary process symmetric test meet issue Product: DPDK Version: 22.03 Hardware: x86 OS: Linux Status: UNCONFI

RE: [PATCH v7] net/i40e: add outer VLAN processing

2022-06-15 Thread Zhang, Qi Z
> -Original Message- > From: Zhang, Yuying > Sent: Tuesday, June 14, 2022 4:40 PM > To: Liu, KevinX ; dev@dpdk.org > Cc: Xing, Beilei ; Yang, SteveX > ; Zhang, RobinX > Subject: RE: [PATCH v7] net/i40e: add outer VLAN processing > > Hi Kevin, > > Workaround should be replaced when ro

Re: [PATCH 1/2] common/cnxk: decrypt packet count register update

2022-06-15 Thread Jerin Jacob
On Fri, May 20, 2022 at 10:53 AM Rahul Bhansali wrote: > > Corrects the CPT decrypt packet counter register. > > Signed-off-by: Rahul Bhansali Updated the git commit as follows and applied to dpdk-next-net-mrvl/for-next-net. Thanks common/cnxk: fix decrypt packet count register update

Re: [PATCH 2/2] common/cnxk: print NIX inline outbound CPT LF registers

2022-06-15 Thread Jerin Jacob
On Tue, May 24, 2022 at 8:43 PM Ray Kinsella wrote: > > > Rahul Bhansali writes: > > > This add the support to dump NIX inline outbound CPT LF > > registers. > > > > Signed-off-by: Rahul Bhansali > > --- > > drivers/common/cnxk/roc_nix_debug.c | 14 ++ > > drivers/common/cnxk/roc_ni

Re: [dpdk-dev] [PATCH] common/cnxk: add ROC API to free MCAM entry

2022-06-15 Thread Jerin Jacob
On Fri, Jun 3, 2022 at 9:06 AM wrote: > > From: Satheesh Paul > > Add ROC API to free the given MCAM entry. If the MCAM > entry has flow counter associated, this API will clear > and free the flow counter. > > Signed-off-by: Satheesh Paul > Reviewed-by: Jerin Jacob Kollanukkaran > --- > driver

[PATCH v8 2/6] common/mlx5: share interrupt management

2022-06-15 Thread Spike Du
There are many duplicate code of creating and initializing rte_intr_handle. Add a new mlx5_os API to do this, replace all PMD related code with this API. Signed-off-by: Spike Du --- drivers/common/mlx5/linux/mlx5_common_os.c | 131 ++ drivers/common/mlx5/linux/mlx5_comm

[PATCH v8 0/6] introduce per-queue available descriptor threshold and host shaper

2022-06-15 Thread Spike Du
available descriptor threshold(ADT for short) is per RX queue attribute, when RX queue available descriptors for HW is below ADT, HW sends an event to application. Host shaper can configure shaper rate and avail_thresh-triggered for a host port. The shaper limits the rate of traffic from host po

[PATCH v8 5/6] net/mlx5: add private API to config host port shaper

2022-06-15 Thread Spike Du
Host port shaper can be configured with QSHR(QoS Shaper Host Register). Add check in build files to enable this function or not. The host shaper configuration affects all the ethdev ports belonging to the same host port. Host shaper can configure shaper rate and lwm-triggered for a host port. The

[PATCH v8 1/6] net/mlx5: add LWM support for Rxq

2022-06-15 Thread Spike Du
Add lwm(Limit WaterMark) field to Rxq object which indicates the percentage of RX queue size used by HW to raise LWM event to the user. Allow LWM setting in modify_rq command. Allow the LWM configuration dynamically by adding RDY2RDY state change. Signed-off-by: Spike Du --- drivers/net/mlx5/mlx

[PATCH v8 3/6] net/mlx5: add LWM event handling support

2022-06-15 Thread Spike Du
When LWM meets RQ WQE, the kernel driver raises an event to SW. Use devx event_channel to catch this and to notify the user. Allocate this channel per shared device. The channel has a cookie that informs the specific event port and queue. Signed-off-by: Spike Du --- drivers/net/mlx5/mlx5.c

[PATCH v8 4/6] net/mlx5: support Rx queue based available descriptor threshold

2022-06-15 Thread Spike Du
Add mlx5 specific available descriptor threshold configuration and query handler. In mlx5 PMD, available descriptor threshold is also called LWM(limit watermark). While the Rx queue fullness reaches the LWM limit, the driver catches an HW event and invokes the user callback. The query handler finds

[PATCH v8 6/6] app/testpmd: add Host Shaper command

2022-06-15 Thread Spike Du
Add command line options to support host shaper configure. - Command syntax: mlx5 set port host_shaper avail_thresh_triggered <0|1> rate - Example commands: To enable avail_thresh_triggered on port 1 and disable current host shaper: testpmd> mlx5 set port 1 host_shaper avail_thresh_triggered 1

[PATCH] crypto/scheduler: fix qp_id in scheduler failover

2022-06-15 Thread Jakub Wysocki
This commit fixes wrong qp_id value in cryptodev scheduler in failover mode. Fixes: 37f075dad1e9 ("crypto/scheduler: add fail-over scheduling mode") Cc: roy.fan.zh...@intel.com Signed-off-by: Jakub Wysocki --- drivers/crypto/scheduler/scheduler_failover.c | 3 +++ 1 file changed, 3 insertions(+

RE: [PATCH 1/5] usertools: use non-strict when json-loads in telemetry

2022-06-15 Thread Morten Brørup
> From: Chengwen Feng [mailto:fengcheng...@huawei.com] > Sent: Wednesday, 15 June 2022 09.39 > > Use 'strict=False' in json-loads, it will ignore control characters > (e.g. '\n\t'), this patch is prepared for the support of telemetry dump > in the future. > > Signed-off-by: Chengwen Feng > --- >

[dpdk-dev] [PATCH v2] common/cnxk: add ROC API to free MCAM entry

2022-06-15 Thread psatheesh
From: Satheesh Paul Add ROC API to free the given MCAM entry. If the MCAM entry has flow counter associated, this API will clear and free the flow counter. Signed-off-by: Satheesh Paul Reviewed-by: Jerin Jacob --- v2: * Removed unnecessary variable initialization drivers/common/cnxk/roc_npc.

Re: [PATCH v2 3/3] test: support trace-autotest when enable trace

2022-06-15 Thread David Marchand
On Tue, Jun 14, 2022 at 8:06 AM Chengwen Feng wrote: > > There are a bug[1] when exit application while enable tracing, this > bug has not been discovered for a long time, to quickly detect such > bugs, this patch was introduced. > > This patch adds a testcase with trace enabling, it also depends

Re: [PATCH v2 2/3] eal: fix trace init fail with long file-prefix

2022-06-15 Thread David Marchand
On Tue, Jun 14, 2022 at 8:06 AM Chengwen Feng wrote: > > Bug scenario: > 1. start testpmd: > dpdk-testpmd -l 4-6 -a :7d:00.0 --trace=.* \ > -file-prefix=trace_autotest -- -i > 2. then observed: > EAL: eal_trace_init():94 failed to initialize trace [File exists] This is not directly related to

RE: [EXT] [PATCH v7 0/6] drivers/baseband: PMD to support ACC100/ACC101 devices

2022-06-15 Thread Akhil Goyal
> v7: updates suggested by Akhil and Maxime. Removed RTE prefix for internal > #define, removed > build-time single FEC engine configuration mode, documentation fix, coding > guideline fix, renamed new file without rte prefix. > > v6: use formally an unified driver for AC100 and AC101. Exposing si

Re: [PATCH 0/3] bugfix and feature for skeleton DMA

2022-06-15 Thread Thomas Monjalon
08/06/2022 10:50, Chengwen Feng: > This patch set contains three patches for skeleton DMA. > > Chengwen Feng (2): > dma/skeleton: fix return last-idx when no memcopy completed > test/dma: reset last-idx before invoke DMA completed ops > > Sivaprasad Tummala (1): > dma/skeleton: support mult

Re: [PATCH] dma/hisilicon: fix header file self contained

2022-06-15 Thread Thomas Monjalon
14/06/2022 11:33, Chengwen Feng: > From: "Min Hu (Connor)" > > Header files should be self contained. This patch fixed it. > > Fixes: 9e16317a38f9 ("dma/hisilicon: add probing") > Cc: sta...@dpdk.org > > Signed-off-by: Min Hu (Connor) > Signed-off-by: Chengwen Feng Applied, thanks.

Re: [dpdk-dev] [RFC PATCH v2] raw/ptdma: introduce ptdma driver

2022-06-15 Thread Thomas Monjalon
28/10/2021 16:54, Sebastian, Selwin: > I am working on making ptdma driver as a dmadev. Will submit new patch for > review. Any update?

RE: [Bug 1035] __rte_raw_cksum() crash with misaligned pointer

2022-06-15 Thread Morten Brørup
> From: bugzi...@dpdk.org [mailto:bugzi...@dpdk.org] > Sent: Wednesday, 15 June 2022 09.16 > > https://bugs.dpdk.org/show_bug.cgi?id=1035 > > Bug ID: 1035 >Summary: __rte_raw_cksum() crash with misaligned pointer >Product: DPDK >Version: 21.11 >

[PATCH v9 1/6] net/mlx5: add LWM support for Rxq

2022-06-15 Thread Spike Du
Add lwm(Limit WaterMark) field to Rxq object which indicates the percentage of RX queue size used by HW to raise LWM event to the user. Allow LWM setting in modify_rq command. Allow the LWM configuration dynamically by adding RDY2RDY state change. Signed-off-by: Spike Du --- drivers/net/mlx5/mlx

[PATCH v9 0/6] introduce per-queue available descriptor threshold and host shaper

2022-06-15 Thread Spike Du
available descriptor threshold(ADT for short) is per RX queue attribute, when RX queue available descriptors for HW is below ADT, HW sends an event to application. Host shaper can configure shaper rate and avail_thresh-triggered for a host port. The shaper limits the rate of traffic from host po

[PATCH v9 2/6] common/mlx5: share interrupt management

2022-06-15 Thread Spike Du
There are many duplicate code of creating and initializing rte_intr_handle. Add a new mlx5_os API to do this, replace all PMD related code with this API. Signed-off-by: Spike Du --- drivers/common/mlx5/linux/mlx5_common_os.c | 131 ++ drivers/common/mlx5/linux/mlx5_comm

[PATCH v9 3/6] net/mlx5: add LWM event handling support

2022-06-15 Thread Spike Du
When LWM meets RQ WQE, the kernel driver raises an event to SW. Use devx event_channel to catch this and to notify the user. Allocate this channel per shared device. The channel has a cookie that informs the specific event port and queue. Signed-off-by: Spike Du --- drivers/net/mlx5/mlx5.c

[PATCH v9 4/6] net/mlx5: support Rx queue based available descriptor threshold

2022-06-15 Thread Spike Du
Add mlx5 specific available descriptor threshold configuration and query handler. In mlx5 PMD, available descriptor threshold is also called LWM(limit watermark). While the Rx queue fullness reaches the LWM limit, the driver catches an HW event and invokes the user callback. The query handler finds

[PATCH v9 5/6] net/mlx5: add private API to config host port shaper

2022-06-15 Thread Spike Du
Host port shaper can be configured with QSHR(QoS Shaper Host Register). Add check in build files to enable this function or not. The host shaper configuration affects all the ethdev ports belonging to the same host port. Host shaper can configure shaper rate and lwm-triggered for a host port. The

[PATCH v9 6/6] app/testpmd: add Host Shaper command

2022-06-15 Thread Spike Du
Add command line options to support host shaper configure. - Command syntax: mlx5 set port host_shaper avail_thresh_triggered <0|1> rate - Example commands: To enable avail_thresh_triggered on port 1 and disable current host shaper: testpmd> mlx5 set port 1 host_shaper avail_thresh_triggered 1

Re: [PATCH 00/12] Fix compilation with gcc 12

2022-06-15 Thread Stephen Hemminger
On Wed, 15 Jun 2022 10:49:17 +0200 David Marchand wrote: > On Wed, May 18, 2022 at 12:17 PM David Marchand > wrote: > > > > Fedora 36 is out since early may and comes with gcc 12. > > This series fixes compilation or waives some checks. > > > > There might be something fishy with rte_memcpy on x

[dpdk-dev] [PATCH 0/8] bnxt PMD fixes

2022-06-15 Thread Kalesh A P
From: Kalesh AP This patchset contains bug fixes in bnxt PMD. Ajit Khaparde (1): net/bnxt: fix switch domain allocation Damodharam Ammepalli (3): net/bnxt: allow Tx only or Rx only configs in PMD net/bnxt: disallow MTU change when device is started net/bnxt: cleanups in MTU set callback

[dpdk-dev] [PATCH 1/8] net/bnxt: remove assert for zero data len in Tx path

2022-06-15 Thread Kalesh A P
From: Somnath Kotur Currently the PMD tries to detect a potential 0 byte DMA by using RTE_VERIFY. But since RTE_VERIFY internally calls rte_panic() it is fatal to the application and some applications want to avoid that. So return an error from the bnxt xmit handler if such a bad pkt is encounter

[dpdk-dev] [PATCH 2/8] net/bnxt: fix switch domain allocation

2022-06-15 Thread Kalesh A P
From: Ajit Khaparde Allocate switch domain after the trusted VF capability is queried from the FW. Currently we are calling the function earlier. Since the switch domain is allocated only for PFs or trusted VF, the current location of code fails to allocate the domain during init. But during clea

[dpdk-dev] [PATCH 3/8] net/bnxt: reduce the verbosity of a log

2022-06-15 Thread Kalesh A P
From: Kalesh AP Broadcom HW drops packets when there are no descriptors available. It does not matter what flag the application specifies in "rx_drop_en" when configuring the Rx ring. Reduce the verbosity of the log to print the status of the "rx_drop_en" when configuring the Rx ring. Signed-of

[dpdk-dev] [PATCH 4/8] net/bnxt: allow Tx only or Rx only configs in PMD

2022-06-15 Thread Kalesh A P
From: Damodharam Ammepalli Currently, we fail the init/probe of pmd if eth_dev->data->nb_tx_queues or eth_dev->data->nb_rx_queues is 0. We are removing this check. Fixes: daef48efe5e5 ("net/bnxt: support set MTU") Cc: sta...@dpdk.org Signed-off-by: Damodharam Ammepalli Reviewed-by: Ajit Khapar

[dpdk-dev] [PATCH 5/8] net/bnxt: fix setting forced speed

2022-06-15 Thread Kalesh A P
From: Kalesh AP The "active_fec_signal_mode" in HWRM_PORT_PHY_QCFG response does not return correct value till the link is up. Driver cannot rely on active_fec_signal_mode while setting forced speed. While setting forced speed of 50G/100G/200G, check if PAM4 speeds are supported for the port fir

[dpdk-dev] [PATCH 6/8] net/bnxt: disallow MTU change when device is started

2022-06-15 Thread Kalesh A P
From: Damodharam Ammepalli With this patch, bnxt_mtu_set_op() will return an error code if the device has already started. The user application will have to take care to bring down device before invoking the mtu_set() Fixes: daef48efe5e5 ("net/bnxt: support set MTU") Cc: sta...@dpdk.org Signed-

[dpdk-dev] [PATCH 7/8] net/bnxt: cleanups in MTU set callback

2022-06-15 Thread Kalesh A P
From: Damodharam Ammepalli Minor cleanup in bnxt_mtu_set_op() to move pre-mature setting of jumbo flag post mtu check and remove a redundant mtu set operation from rxq vnic configs. Fixes: daef48efe5e5 ("net/bnxt: support set MTU") Cc: sta...@dpdk.org Signed-off-by: Damodharam Ammepalli Review

[dpdk-dev] [PATCH 8/8] net/bnxt: fix the check for autoneg enablement in the PHY FW

2022-06-15 Thread Kalesh A P
From: Somnath Kotur The current combination of checks to determine whether autoneg is enabled in the card is a bit convoluted and may become incorrect as well in the future as one of the fields being used - auto_link_speed might become deprecated. Switch to using the 'auto_mode' field obtained fr

Re: [PATCH 00/12] Fix compilation with gcc 12

2022-06-15 Thread Thomas Monjalon
15/06/2022 16:45, Stephen Hemminger: > On Wed, 15 Jun 2022 10:49:17 +0200 > David Marchand wrote: > > > On Wed, May 18, 2022 at 12:17 PM David Marchand > > wrote: > > > > > > Fedora 36 is out since early may and comes with gcc 12. > > > This series fixes compilation or waives some checks. > > >

RE: [EXT] [PATCH 1/3] ipsec: fix NAT-T ports and length

2022-06-15 Thread Akhil Goyal
> -- > Fix the UDP header fields, wrong byte order used for src and dst port > and wrong offset used when updating UDP datagram length. > > Fixes: 01eef5907fc3 ("ipsec: support NAT-T") > Cc: sta...@dpdk.org > > Signed-off-by: Rad

RE: [EXT] [PATCH v2] test/crypto: fix warnings for optimization=1 build

2022-06-15 Thread Akhil Goyal
> Fail IPSec ESN and antireplay cases, if there are no packets. Fixes > following warning when using optimization=1 build flag with GCC 11. > > ../app/test/test_cryptodev.c: In function ‘test_ipsec_pkt_replay’: > ../app/test/test_cryptodev.c:10074:15: warning: ‘td_outb’ may be used > uninitialized

RE: [PATCH] examples/ipsec-secgw: fix ESN setting

2022-06-15 Thread Akhil Goyal
> > > > Fix ESN option flag and initial value for the rte_ipsec library path. > > > > Fixes: 560029d5cfc9 ("examples/ipsec-secgw: define initial ESN value") > > Cc: sta...@dpdk.org > > > > Signed-off-by: Radu Nicolau > Acked-by: Fan Zhang Applied to dpdk-next-crypto Thanks.

RE: [PATCH 1/1] examples/ipsec-secgw: add option for descriptors per QP

2022-06-15 Thread Akhil Goyal
> > Added option to configure number of queue pair descriptors via command > > line (--desc-nb NUMBER_OF_DESC). > > > > When the crypto processing takes longer durations, small queue pair size > > would result in cryptodev enqueue failures. Larger queue pair size would > > allow more packets to sta

Re: [PATCH 00/12] Fix compilation with gcc 12

2022-06-15 Thread Stephen Hemminger
On Wed, 15 Jun 2022 16:59:51 +0200 Thomas Monjalon wrote: > 15/06/2022 16:45, Stephen Hemminger: > > On Wed, 15 Jun 2022 10:49:17 +0200 > > David Marchand wrote: > > > > > On Wed, May 18, 2022 at 12:17 PM David Marchand > > > wrote: > > > > > > > > Fedora 36 is out since early may and come

RE: [PATCH] examples/ipsec-secgw: fix packet type parsing

2022-06-15 Thread Akhil Goyal
> > Add new packet type flags instead of overwriting. > > > > Fixes: d04bb1c52647 ("examples/ipsec-secgw: use HW parsed packet type in > > poll mode") > > > > Signed-off-by: Radu Nicolau > Acked-by: Fan Zhang Acked-by: Akhil Goyal Applied to dpdk-next-crypto Thanks.

RE: [PATCH 0/2] add zuc-256 support

2022-06-15 Thread Akhil Goyal
> Adds support for zuc-256 cipher in cnxk crypto PMD. > > Ankur Dwivedi (2): > common/cnxk: swap zuc-256 key > crypto/cnxk: swap zuc-256 iv > > drivers/common/cnxk/roc_se.c | 7 +-- > drivers/common/cnxk/roc_se.h | 22 ++ > drivers/crypto/cnxk/cnxk_se.h | 24 ++

RE: [PATCH] crypto/cnxk: fix condition check

2022-06-15 Thread Akhil Goyal
> > > Subject: [PATCH] crypto/cnxk: fix condition check > > > > The value of ec_mdata cannot be NULL, instead check that value of > > private_data_offset was set. > > > > > > Fixes: c3a498c01121 ("crypto/cnxk: add event metadata set operation") > > Coverity issue: 378861 Coverity issue: 378865 >

RE: [PATCH 1/2] crypto/octeontx: pass sub event type in event

2022-06-15 Thread Akhil Goyal
> Subject: [PATCH 1/2] crypto/octeontx: pass sub event type in event > > Response info may have valid sub_event_type. Pass this to the event > generated by CPT. > > Signed-off-by: Anoob Joseph > Reviewed-by: Shijith Thotton > Reviewed-by: Jerin Jacob Kollanukkaran Series applied to dpdk-next-c

RE: [EXT] [PATCH v4] app/test-crypto-perf: support SDAP for PDCP operations

2022-06-15 Thread Akhil Goyal
> Add a command line option "--enable-sdap" to enable > Service Data Adaptation Protocol. > > example command: > ./dpdk-test-crypto-perf -c 0xc --log-level=8 -- > --devtype crypto_dpaa2_sec --optype pdcp --cipher-algo aes-ctr > --cipher-op encrypt --auth-algo zuc-eia3 --auth-op generate > --auth-

Re: [PATCH 1/5] usertools: use non-strict when json-loads in telemetry

2022-06-15 Thread Bruce Richardson
On Wed, Jun 15, 2022 at 03:54:57PM +0200, Morten Brørup wrote: > > From: Chengwen Feng [mailto:fengcheng...@huawei.com] > > Sent: Wednesday, 15 June 2022 09.39 > > > > Use 'strict=False' in json-loads, it will ignore control characters > > (e.g. '\n\t'), this patch is prepared for the support of t

Re: [PATCH] net/octeontx_ep: updated ethdev ops

2022-06-15 Thread Jerin Jacob
On Thu, Jun 9, 2022 at 8:50 PM Sathesh B Edara wrote: > > Updated ethdev ops support for link_update(), > stats_get() and stats_reset() a) Split as two patches (Suggested heading) 1) net/octeontx_ep: support basic stats 2) net/octeontx_ep: support link status b) Update doc/guides/nics/features/

[PATCH v2 0/2] add includes to help when editing in Eclipse

2022-06-15 Thread Bruce Richardson
These two small patches add in some additional header includes to 3 DPDK files, in order to improve the experience of anyone who, like me, sometimes uses eclipse-cdt as an editor for working with DPDK code. The C indexer in eclipse seems easily confused when missing some of our macro definitions, s

[PATCH v2 2/2] common/cnxk: add include for macro definition

2022-06-15 Thread Bruce Richardson
The header file "roc_io.h" uses the "__plt_always_inline" macro but don't include "roc_platform.h" to get the definition of it. This inclusion is not necessary for compilation, but the lack of it can confuse some indexers - such as those in eclipse, which reports the lines: "static __plt_always_in

[PATCH v2 1/2] examples/l3fwd: add include for macro definition

2022-06-15 Thread Bruce Richardson
The header files "l3fwd_em.h" and "l3fwd_em_sequential.h" use the "__rte_always_inline" macro but don't directly include "rte_common.h" to get the definition of it. This inclusion is not necessary for compilation, but the lack of it can confuse some indexers - such as those in eclipse, which report

[PATCH] common/iavf: replace zero-length arrays with flexible ones

2022-06-15 Thread 835703180
From: Shiqi Liu <835703...@qq.com> This patch replaces instances of zero-sized arrays i.e. those at the end of structures with "[0]" with the more standard syntax of "[]". Replacement was done using coccinelle script, with some revert and cleanup of whitespace afterwards. Signed-o

[V2] common/iavf:replace zero-length arrays with flexible ones

2022-06-15 Thread 835703180
From: Shiqi Liu <835703...@qq.com> This patch replaces instances of zero-sized arrays i.e. those at the end of structures with "[0]" with the more standard syntax of "[]". Replacement was done using coccinelle script, with some revert and cleanup of whitespace after

Re: [PATCH] common/cnxk: return on fail to init ROC Model

2022-06-15 Thread Jerin Jacob
On Fri, Jun 10, 2022 at 1:44 PM Hanumanth Pothula wrote: > > Return with error on fail to initialize RoC Model. > > Signed-off-by: Hanumanth Pothula Updated the git commit as follows and applied to dpdk-next-net-mrvl/for-next-net. Thanks common/cnxk: handle ROC model init failure Retu

RE: [PATCH 1/5] usertools: use non-strict when json-loads in telemetry

2022-06-15 Thread Morten Brørup
+CC Ciara Power, Telemetry lib maintainer > From: Bruce Richardson [mailto:bruce.richard...@intel.com] > Sent: Wednesday, 15 June 2022 18.55 > > On Wed, Jun 15, 2022 at 03:54:57PM +0200, Morten Brørup wrote: > > > From: Chengwen Feng [mailto:fengcheng...@huawei.com] > > > Sent: Wednesday, 15 June

Re: [PATCH v2 2/3] eal: fix trace init fail with long file-prefix

2022-06-15 Thread Jerin Jacob
On Wed, Jun 15, 2022 at 7:32 PM David Marchand wrote: > > On Tue, Jun 14, 2022 at 8:06 AM Chengwen Feng wrote: > > > > Bug scenario: > > 1. start testpmd: > > dpdk-testpmd -l 4-6 -a :7d:00.0 --trace=.* \ > > -file-prefix=trace_autotest -- -i > > 2. then observed: > > EAL: eal_trace_init():94

Re: [EXT] Re: [PATCH v2] devtools: ensure proper tag sequence

2022-06-15 Thread Thomas Monjalon
15/06/2022 10:46, Jakub Palider: > > -Original Message- > > From: Thomas Monjalon > > Sent: Wednesday, June 15, 2022 8:21 AM > > To: Jakub Palider > > Cc: dev@dpdk.org; david.march...@redhat.com > > Subject: [EXT] Re: [PATCH v2] devtools: ensure proper tag sequence > > > > External Email

  1   2   >