Re: [PATCH v2] bus/uacce: introduce UACCE bus

2024-02-15 Thread Thomas Monjalon
16/01/2024 04:35, Chengwen Feng: > UACCE (Unified/User-space-access-intended Accelerator Framework) was > upstream to Linux kernel version 5.7, and it targets to provide Shared > Virtual Addressing (SVA) between accelerators and processes. So > accelerator can access any data structure of the main

Re: [PATCH] eal: add helper to skip whitespaces

2024-02-15 Thread David Marchand
On Wed, Feb 14, 2024 at 2:07 PM Bruce Richardson wrote: > > On Wed, Feb 14, 2024 at 01:12:19PM +0100, David Marchand wrote: > > Reduce code duplication by providing a simple inline helper. > > > > Signed-off-by: David Marchand > > --- > > app/graph/utils.c | 13 ++--

Re: [PATCH] eal: add helper to skip whitespaces

2024-02-15 Thread Bruce Richardson
On Thu, Feb 15, 2024 at 10:08:40AM +0100, David Marchand wrote: > On Wed, Feb 14, 2024 at 2:07 PM Bruce Richardson > wrote: > > > > On Wed, Feb 14, 2024 at 01:12:19PM +0100, David Marchand wrote: > > > Reduce code duplication by providing a simple inline helper. > > > > > > Signed-off-by: David Ma

RE: [PATCH v4 00/18] stop using zero sized marker fields

2024-02-15 Thread Morten Brørup
> From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com] > Sent: Thursday, 15 February 2024 07.21 > > The zero sized RTE_MARKER typedefs are a GCC extension unsupported > by > MSVC. This series adds new fields and allows deprecation of the old. > > Introduce new anonymous union fields with mb

[PATCH] net/gve: fix dqo bug for chained descriptors

2024-02-15 Thread Rushil Gupta
net/gve: fix completion path for chained segments Dqo Tx path had a bug where driver was overwriting mbufs in sw-ring. We fixed this bug by cleaning slots for all segments. Fixes: 4022f9 ("net/gve: support basic Tx data path for DQO") Cc: sta...@dpdk.org Signed-off-by: Rushil Gupta Reviewed-by:

[PATCH] net/gve: fix dqo bug for chained descriptors

2024-02-15 Thread Rushil Gupta
Dqo Tx path had a bug where driver was overwriting mbufs in sw-ring. We fixed this bug by cleaning slots for all segments. Fixes: 4022f9 ("net/gve: support basic Tx data path for DQO") Cc: sta...@dpdk.org Signed-off-by: Rushil Gupta Reviewed-by: Joshua Washington --- drivers/net/gve/gve_tx_dqo

Re: [PATCH v4] net/netvsc: fix parsing of VLAN metadata

2024-02-15 Thread Ferruh Yigit
On 2/14/2024 10:17 PM, Long Li wrote: >> +#define HN_VLAN_CFI_SHIFT 12 >> +#define HN_VLAN_PRI_SHIFT 13 >> +#define HN_VLAN_PRI_MASK0xe000 /* Priority Code Point */ >> +#define HN_VLAN_CFI_MASK0x1000 /* Canonical Format Indicator / Drop >> Eligible Indicator */ >> +#define HN_VLAN_VID_M

Re: [PATCH V2] examples/pipeline: fix include path for rte_log.h

2024-02-15 Thread Ferruh Yigit
On 2/14/2024 5:22 PM, Dumitrescu, Cristian wrote: > Hi Ferruh, > >> -Original Message- >> From: Ferruh Yigit >> Sent: Wednesday, February 14, 2024 11:22 AM >> To: Dumitrescu, Cristian ; dev@dpdk.org >> Cc: sta...@dpdk.org; Marchand, David ; Aaron >> Conole ; Richardson, Bruce >> >> Subje

[PATCH 0/7] add Nitrox compress device support

2024-02-15 Thread Nagadheeraj Rottela
Add the Nitrox PMD to support Nitrox compress device. --- v3: * Fixed ABI compatibility issue. v2: * Reformatted patches to minimize number of changes. * Removed empty file with only copyright. * Updated all feature flags in nitrox.ini file. * Added separate gotos in nitrox_pci_probe() function.

[PATCH v3 1/7] crypto/nitrox: move nitrox common code to common folder

2024-02-15 Thread Nagadheeraj Rottela
- The common code will be shared by both crypto and compress Nitrox PMD's. Signed-off-by: Nagadheeraj Rottela --- MAINTAINERS| 1 + drivers/common/nitrox/meson.build | 18 ++ drivers/{crypto => common}/nitrox/nitrox_csr.h | 0

[PATCH v3 2/7] compress/nitrox: add nitrox compressdev driver

2024-02-15 Thread Nagadheeraj Rottela
Introduce nitrox compressdev driver which implements below operations - dev_configure - dev_close - dev_infos_get - private_xform_create - private_xform_free Signed-off-by: Nagadheeraj Rottela --- MAINTAINERS | 7 + doc/guides/compressdevs/features/nitrox.ini

[PATCH v3 3/7] common/nitrox: add compress hardware queue management

2024-02-15 Thread Nagadheeraj Rottela
Add compress device ring initialization and cleanup code. Signed-off-by: Nagadheeraj Rottela --- drivers/common/nitrox/nitrox_csr.h | 12 +++ drivers/common/nitrox/nitrox_hal.c | 116 + drivers/common/nitrox/nitrox_hal.h | 115 drivers/co

[PATCH v3 4/7] crypto/nitrox: set queue type during queue pair setup

2024-02-15 Thread Nagadheeraj Rottela
Set queue type as SE to initialize symmetric hardware queue. Signed-off-by: Nagadheeraj Rottela --- drivers/crypto/nitrox/nitrox_sym.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/crypto/nitrox/nitrox_sym.c b/drivers/crypto/nitrox/nitrox_sym.c index 1244317438..03652d3ade 100644

[PATCH v3 5/7] compress/nitrox: add software queue management

2024-02-15 Thread Nagadheeraj Rottela
Add software queue management code corresponding to queue pair setup and release functions. Signed-off-by: Nagadheeraj Rottela --- drivers/compress/nitrox/nitrox_comp.c | 115 +++--- drivers/compress/nitrox/nitrox_comp.h | 1 + 2 files changed, 105 insertions(+), 11 deletio

[PATCH v3 6/7] compress/nitrox: add stateless request support

2024-02-15 Thread Nagadheeraj Rottela
Implement enqueue and dequeue burst operations for stateless request support. Signed-off-by: Nagadheeraj Rottela --- drivers/compress/nitrox/meson.build | 1 + drivers/compress/nitrox/nitrox_comp.c| 91 ++- drivers/compress/nitrox/nitrox_comp_reqmgr.c | 792 ++

[PATCH v3 7/7] compress/nitrox: add stateful request support

2024-02-15 Thread Nagadheeraj Rottela
Implement enqueue and dequeue burst operations for stateful request support. Signed-off-by: Nagadheeraj Rottela --- drivers/compress/nitrox/nitrox_comp.c| 98 +++- drivers/compress/nitrox/nitrox_comp.h| 1 + drivers/compress/nitrox/nitrox_comp_reqmgr.c | 555 --

[ixgbevf] Problem with RSS initial config after device init on X550 nic

2024-02-15 Thread Edwin Brossette
Hello, We recently ran into an issue with our product when working with an X550 nic with stable dpdk-23.11. We observed that all the incoming traffic was directed only into a single queue. The issue became evident after displaying the RSS reta which was fully zeroed after device init, thus direct

Re: [PATCH v8] ethdev: add template table resize API

2024-02-15 Thread Ferruh Yigit
On 2/15/2024 6:13 AM, Gregory Etelson wrote: > Template table creation API sets table flows capacity. > If application needs more flows then the table was designed for, > the following procedures must be completed: > 1. Create a new template table with larger flows capacity. > 2. Re-create existing

[PATCH] net/ixgbevf: fix RSS init for x550 nics

2024-02-15 Thread edwin . brossette
From: Edwin Brossette Different Intel nics with the igxbe pmd do not handle RSS in the same way when working with virtualization. While some nics like Intel 82599ES only have a single RSS table in the device and leave all rss features to be handled by the pf, some other nics like x550 let the vf

Re: [PATCH V2] examples/pipeline: fix include path for rte_log.h

2024-02-15 Thread Ferruh Yigit
On 2/13/2024 5:38 PM, Cristian Dumitrescu wrote: > When rte_log.h was moved to a new directory, the include path was not > updated for the generated C code produced by the pipeline library, > which results in build failure for this code. > > Fixes: 09ce41310930 ("log: separate logging functions ou

Re: [PATCH] net/gve: fix dqo bug for chained descriptors

2024-02-15 Thread Ferruh Yigit
On 2/15/2024 10:02 AM, Rushil Gupta wrote: > Dqo Tx path had a bug where driver was overwriting mbufs in sw-ring. > We fixed this bug by cleaning slots for all segments. > > Fixes: 4022f9 ("net/gve: support basic Tx data path for DQO") > Cc: sta...@dpdk.org > > Signed-off-by: Rushil Gupta > Revi

[DPDK/DTS Bug 1349] Traffic filtering when capturing packets

2024-02-15 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1349 Patrick Robb (pr...@iol.unh.edu) changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|--

DPDK Release Status Meeting 2024-02-15

2024-02-15 Thread Mcnamara, John
Release status meeting minutes 2024-02-15 = Agenda: * Release Dates * Subtrees * Roadmaps * LTS * Defects * Opens Participants: * AMD * ARM [No] * Debian/Microsoft [No] * Intel * Marvell * Nvidia * Red Hat Release Dates - The following are the

Re: [PATCH] eal: add helper to skip whitespaces

2024-02-15 Thread Tyler Retzlaff
On Thu, Feb 15, 2024 at 09:10:58AM +, Bruce Richardson wrote: > On Thu, Feb 15, 2024 at 10:08:40AM +0100, David Marchand wrote: > > On Wed, Feb 14, 2024 at 2:07 PM Bruce Richardson > > wrote: > > > > > > On Wed, Feb 14, 2024 at 01:12:19PM +0100, David Marchand wrote: > > > > Reduce code duplic

[PATCH v5] net/netvsc: fix parsing of VLAN metadata

2024-02-15 Thread Alan Elder
The previous code incorrectly parsed the VLAN ID and priority. If the 16-bits of VLAN ID and priority/CFI on the wire was 0123456789ABCDEF the code parsed it as 456789ABCDEF3012. There were macros defined to handle this conversion but they were not used. Fixes: 4e9c73e96e83 ("net/netvsc: add Hype

Re: [PATCH v5] net/netvsc: fix parsing of VLAN metadata

2024-02-15 Thread Stephen Hemminger
On Thu, 15 Feb 2024 18:12:35 + Alan Elder wrote: > +/* VLAN header fields */ > +#define RTE_VLAN_DEI_SHIFT 12 > +#define RTE_VLAN_PRI_SHIFT 13 > +#define RTE_VLAN_PRI_MASK0xe000 /* Priority Code Point */ > +#define RTE_VLAN_DEI_MASK0x1000 /* Drop Eligible Indicator */ > +#define R

[PATCH v3] net/mlx5: enable PCI related counters

2024-02-15 Thread Wathsala Vithanage
Versions of Mellanox NICs starting from CX5 have device counters related to PCI. These counters are helpful in debugging IO bottlenecks. For instance, the outbound_pci_stalled_rd and outbound_pci_stalled_wr counters can help with identifying NIC stalls due to insufficient PCI credits, which otherwi

Re: Rescheduling DPDK CI Meetings

2024-02-15 Thread Patrick Robb
Hi, This is finalized. The next CI meeting will be next Thursday. Then we go back to every other week. On Wed, Feb 14, 2024 at 4:20 PM Patrick Robb wrote: > Hello all, > > As discussed in the previous CI testing meeting, it will be advantageous > for us to shift the (every other week) DPDK CI m

meson option to customize RTE_PKTMBUF_HEADROOM patch

2024-02-15 Thread Parthakumar Roy
Hello, Bruce Richardson suggested that I submit this patch - at IBM we needed to adjust the pkt_mbuf_headroom​ for our application to work. This is my first ever patch through a mailing list, I have only done it through Pull Requests before, so let me know if I need to correct something. Messag

[PATCH V3] examples/pipeline: simplify the L2 forwarding examples

2024-02-15 Thread Cristian Dumitrescu
Simplified the L2 forwarding examples by removing all tables and actions, as they are not really needed for these simple use-cases. Signed-off-by: Cristian Dumitrescu --- examples/pipeline/examples/l2fwd.spec| 34 +- examples/pipeline/examples/l2fwd_macswp.spec | 36 +

[PATCH] remove some MSVC conditional compile to empty

2024-02-15 Thread Tyler Retzlaff
Introduce a new macro __rte_attribute intended for internal use that may be used when defining other __rte_xxx macros that should expand empty on MSVC. Use the new macro to clean up conditional compile in rte_common.h Tyler Retzlaff (1): eal: provide rte attribute macro for GCC attribute lib/

[PATCH] eal: provide rte attribute macro for GCC attribute

2024-02-15 Thread Tyler Retzlaff
Provide a new macro __rte_attribute(a) that when directly used compiles to empty for MSVC and to __attribute__(a) when using GCC/LLVM. Replace direct use of __attribute__ in __rte_xxx macros where there is existing empty expansion of the macro for MSVC allowing removal of repeated #ifdef RTE_TOOLC

Re: [PATCH v2 3/3] eal: replace out of bounds VLA with static_assert

2024-02-15 Thread Tyler Retzlaff
ping i'd like to see this change go in asap since it is pre-requisite to turning on -Wvla which explicitly caught use of non-constant expressions in the RTE_BUILD_BUG_ON() hiding bugs. thanks! On Mon, Nov 13, 2023 at 09:06:05AM -0800, Stephen Hemminger wrote: > Both Gcc, clang and MSVC have bett

Re: [PATCH] doc: update minimum Linux kernel version

2024-02-15 Thread Stephen Hemminger
On Thu, 11 Jan 2024 23:38:07 +0100 Morten Brørup wrote: > > From: Stephen Hemminger [mailto:step...@networkplumber.org] > > Sent: Thursday, 11 January 2024 20.55 > > > > On Thu, 11 Jan 2024 20:26:56 +0100 > > Morten Brørup wrote: > > > > > > > > > > > When the documentation specifies a minim

[PATCH v2 0/3] replace use of EAL logtype in applications

2024-02-15 Thread Stephen Hemminger
There are some places EAL logtype is being used in testpmd and examples where it should not be. Lets reserve EAL logtype to only be used by DPDK internals. v2 - use TESTPMD_LOG() in testpmd log changes Stephen Hemminger (3): examples/l2fwd-keepalive: don't use EAL logtype examples/vm_power_ma

[PATCH v2 1/3] examples/l2fwd-keepalive: don't use EAL logtype

2024-02-15 Thread Stephen Hemminger
EAL logtype should be reserved for EAL library. This example is already using printf() so just print errors to stderr. Signed-off-by: Stephen Hemminger Acked-by: Huisong Li --- examples/l2fwd-keepalive/shm.c | 21 +++-- 1 file changed, 7 insertions(+), 14 deletions(-) diff --gi

[PATCH v2 3/3] testpmd: replace EAL logtype TESTPMD_LOG

2024-02-15 Thread Stephen Hemminger
Testpmd is misusing EAL logtype for some errors. Since the code directly has a macro for logging, use that. Signed-off-by: Stephen Hemminger Acked-by: Huisong Li fix testpmd --- app/test-pmd/testpmd.c | 42 +++--- 1 file changed, 15 insertions(+), 27 deletio

[PATCH v2 2/3] examples/vm_power_manager: do not use EAL logtype

2024-02-15 Thread Stephen Hemminger
Be consistent for all the error printouts and use fprintf(). The EAL logtype is reserved for internal use by EAL. Signed-off-by: Stephen Hemminger Acked-by: David Hunt Acked-by: Huisong Li --- examples/vm_power_manager/main.c | 11 --- 1 file changed, 4 insertions(+), 7 deletions(-) d

[PATCH v7] app/testpmd : fix packets not getting flushed in heavy-weight mode API

2024-02-15 Thread Kumara Parameshwaran
In heavy-weight mode GRO which is based on timer, the GRO packets will not be flushed in spite of timer expiry if there is no packet in the current poll. If timer mode GRO is enabled the rte_gro_timeout_flush API should be invoked. Fixes: b7091f1dcfbc ("app/testpmd: enable the heavyweight mode TCP

[PATCH v8] app/testpmd : fix packets not getting flushed in heavy-weight mode API

2024-02-15 Thread Kumara Parameshwaran
In heavy-weight mode GRO which is based on timer, the GRO packets will not be flushed in spite of timer expiry if there is no packet in the current poll. If timer mode GRO is enabled the rte_gro_timeout_flush API should be invoked. Fixes: b7091f1dcfbc ("app/testpmd: enable the heavyweight mode TCP

Re: [PATCH v7] app/testpmd : fix packets not getting flushed in heavy-weight mode API

2024-02-15 Thread Stephen Hemminger
On Fri, 16 Feb 2024 09:10:25 +0530 Kumara Parameshwaran wrote: > +#ifndef RTE_LIB_GRO > return false; > +#else > + gro_enable = gro_ports[fs->rx_port].enable; > + /* > + * Make sure that in case of Heavyweight mode GRO the packets in > +

RE: [PATCH v2 3/3] eal: replace out of bounds VLA with static_assert

2024-02-15 Thread Morten Brørup
> From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com] > Sent: Friday, 16 February 2024 01.34 > > ping > > i'd like to see this change go in asap since it is pre-requisite to > turning on -Wvla which explicitly caught use of non-constant > expressions > in the RTE_BUILD_BUG_ON() hiding bugs

Re: meson option to customize RTE_PKTMBUF_HEADROOM patch

2024-02-15 Thread David Marchand
Hello, On Thu, Feb 15, 2024 at 8:02 PM Parthakumar Roy wrote: > > Hello, > Bruce Richardson suggested that I submit this patch - at IBM we needed to > adjust the pkt_mbuf_headroom for our application to work. This is my first > ever patch through a mailing list, I have only done it through Pull