Re: [PATCH] lib: remove duplicate prefix in logs

2024-01-25 Thread David Marchand
On Wed, Jan 24, 2024 at 1:17 PM Morten Brørup wrote: > > diff --git a/lib/dmadev/rte_dmadev.c b/lib/dmadev/rte_dmadev.c > > index 5953a77bd6..dbaa14f262 100644 > > --- a/lib/dmadev/rte_dmadev.c > > +++ b/lib/dmadev/rte_dmadev.c > > @@ -35,8 +35,7 @@ RTE_LOG_REGISTER_DEFAULT(rte_dma_logtype, INFO)

RE: [PATCH] lib: remove duplicate prefix in logs

2024-01-25 Thread Morten Brørup
> From: David Marchand [mailto:david.march...@redhat.com] > Sent: Thursday, 25 January 2024 09.14 > > On Wed, Jan 24, 2024 at 1:17 PM Morten Brørup > wrote: > > > diff --git a/lib/dmadev/rte_dmadev.c b/lib/dmadev/rte_dmadev.c > > > index 5953a77bd6..dbaa14f262 100644 > > > --- a/lib/dmadev/rte_dm

RE: [PATCH v1 00/23] net/mlx5: support Geneve and options for HWS

2024-01-25 Thread Suanming Mou
Hi, > -Original Message- > From: Michael Baum > Sent: Sunday, December 3, 2023 7:25 PM > To: dev@dpdk.org > Cc: Matan Azrad ; Raslan Darawsheh > ; Slava Ovsiienko ; Ori Kam > ; Suanming Mou > Subject: [PATCH v1 00/23] net/mlx5: support Geneve and options for HWS > > Add HWS support for

[DPDK Bug 1369] net/mlx5: RX packet metadata altered/incorrect after reception

2024-01-25 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1369 Bug ID: 1369 Summary: net/mlx5: RX packet metadata altered/incorrect after reception Product: DPDK Version: 22.11 Hardware: x86 OS: Linux Status: UNCONF

Re: [PATCH v1] doc: update guideline for fix commit messages

2024-01-25 Thread Ferruh Yigit
On 1/25/2024 3:39 AM, Sivaramakrishnan Venkat wrote: > Maintainers remove the Cc author line when merging the patch. > So, the guidelines is updated with a suggestion for the placement > of Cc lines in a commit message for easy merging. > > Signed-off-by: Sivaramakrishnan Venkat > --- > doc/guid

[PATCH v2 0/8] add argparse library

2024-01-25 Thread Chengwen Feng
Introduce argparse library (which was inspired by the thread [1]), compared with getopt, it makes it easy to write user-friendly command-like program. Note: the 2nd commit contains usage examples. [1] https://patchwork.dpdk.org/project/dpdk/patch/20231105054539.22303-2-fengcheng...@huawei.com/

[PATCH v2 1/8] eal: introduce more macro for bit definition

2024-01-25 Thread Chengwen Feng
Introduce macros: 1. RTE_SHIFT_VAL64: get the uint64_t value which shifted by nr. 2. RTE_SHIFT_VAL32: get the uint32_t value which shifted by nr. 3. RTE_GENMASK64: generate a contiguous 64bit bitmask starting at bit position low and ending at position high. 4. RTE_GENMASK32: gener

[PATCH v2 2/8] argparse: add argparse library

2024-01-25 Thread Chengwen Feng
Introduce argparse library (which was inspired by the thread [1]). This commit provides public API and doc. [1] https://patchwork.dpdk.org/project/dpdk/patch/20231105054539.22303-2-fengcheng...@huawei.com/ Signed-off-by: Chengwen Feng --- MAINTAINERS| 4 + doc/api

[PATCH v2 3/8] argparse: support verify argument config

2024-01-25 Thread Chengwen Feng
This commit supports verify argument config. Signed-off-by: Chengwen Feng --- MAINTAINERS | 1 + app/test/meson.build| 1 + app/test/test_argparse.c| 327 lib/argparse/rte_argparse.c | 307 - 4 f

[PATCH v2 4/8] argparse: support parse parameters

2024-01-25 Thread Chengwen Feng
This commit supports parse parameters which described in [argc, argv]. Signed-off-by: Chengwen Feng --- app/test/test_argparse.c| 437 lib/argparse/rte_argparse.c | 289 +++- 2 files changed, 723 insertions(+), 3 deletions(-) diff --g

[PATCH v2 5/8] argparse: provide parsing known type API

2024-01-25 Thread Chengwen Feng
Provide API which could parsing the value from the input string based on the value type. This API could used in user callback when parsing string by argparse or kvargs library. Signed-off-by: Chengwen Feng --- app/test/test_argparse.c| 22 ++ lib/argparse/rte_argparse.c |

[PATCH v2 6/8] argparse: support parse unsigned base type

2024-01-25 Thread Chengwen Feng
This commit supports parsing unsigned base type (u8/u16/u32/u64). Signed-off-by: Chengwen Feng --- app/test/test_argparse.c| 59 -- lib/argparse/rte_argparse.c | 116 lib/argparse/rte_argparse.h | 10 +++- 3 files changed, 179 insertions

[PATCH v2 7/8] argparse: pretty help info

2024-01-25 Thread Chengwen Feng
This commit aligns help info. Take dmafwd as an example, previous: options: -h, --help: show this help message and exit. --mac-updating: Enable MAC addresses updating --no-mac-updating: Disable MAC addresses updating -p, --portmask: hexadecimal bitmask of ports to configure -q, --nb-queue: n

[PATCH v2 8/8] examples/dma: replace getopt with argparse

2024-01-25 Thread Chengwen Feng
Replace getopt with argparse. Signed-off-by: Chengwen Feng --- examples/dma/dmafwd.c| 269 +-- examples/dma/meson.build | 2 +- 2 files changed, 117 insertions(+), 154 deletions(-) diff --git a/examples/dma/dmafwd.c b/examples/dma/dmafwd.c index f27317a

[PATCH v5 0/2] net/mlx5: add random item support

2024-01-25 Thread Michael Baum
Add support for matching random value using the "rte_flow_item_random" structure. v2: - Rebase. - Move release notes to the new release file. v3: - Fix typos in commit message and release notes. - Update limitations. v4: - Fix using same value for both "MLX5_FLOW_ITEM_NSH" and "MLX5_FLOW

[PATCH v5 1/2] net/mlx5/hws: add support for random number match

2024-01-25 Thread Michael Baum
From: Erez Shitrit The HW adds a random number per each hash, this value can be used for statistic calculation over the packets, for example by setting one bit in the mask of that field we will get half of the traffic in the flow, and so on with the rest of the mask. Signed-off-by: Erez Shitrit

[PATCH v5 2/2] net/mlx5: add random item support

2024-01-25 Thread Michael Baum
Add support for random item in HWS mode. Signed-off-by: Michael Baum Acked-by: Dariusz Sosnowski --- doc/guides/nics/features/mlx5.ini | 1 + doc/guides/nics/mlx5.rst | 9 + doc/guides/rel_notes/release_24_03.rst | 1 + drivers/net/mlx5/mlx5_flow_dv.c| 5 +

Re: [PATCH v8 4/4] app/dma-perf: add SG copy support

2024-01-25 Thread fengchengwen
LGTM Acked-by: Chengwen Feng Thanks On 2023/11/22 19:06, Gowrishankar Muthukrishnan wrote: > Add SG copy support. > > Signed-off-by: Gowrishankar Muthukrishnan > Acked-by: Anoob Joseph > --- > app/test-dma-perf/benchmark.c | 274 +- > app/test-dma-perf/config.

Re: [PATCH 0/9] use C11 alignof

2024-01-25 Thread fengchengwen
Series-acked-by: Chengwen Feng On 2024/1/25 7:17, Tyler Retzlaff wrote: > Replace use of __alignof__(T) and __alignof__(e) with C11 alignof(T) > and alignof(typeof(e)) respectively to improve portability of the code > between toolchains. > > Tyler Retzlaff (9): > ring: use C11 alignof > mbuf

[PATCH v2] lib: remove duplicate prefix in logs

2024-01-25 Thread David Marchand
RTE_LOG() macros prefixe the log messages based on the logtype. This results in logs like: TMTY: TELEMETRY: Attempting socket bind to path '/run/user/...' TMTY: TELEMETRY: Socket creation and binding ok TMTY: TELEMETRY: Telemetry initialized ok Remove redundancy in some libraries following their

Re: [PATCH 0/2] more replacement of zero length array

2024-01-25 Thread fengchengwen
Series-acked-by: Chengwen Feng On 2024/1/25 6:17, Tyler Retzlaff wrote: > Replace some missed zero length arrays not captured in the > original series. > https://patchwork.dpdk.org/project/dpdk/list/?series=30410&state=* > > Zero length arrays are a GNU extension that has been > superseded by fl

Re: [PATCH] app/testpmd: add command to get Tx queue used count

2024-01-25 Thread fengchengwen
Please doc this command in doc/guides/testpmd_app_ug/testpmd_funcs.rst Also why not extend "show port rxq xxx" command to support txq ? On 2024/1/24 20:18, skotesh...@marvell.com wrote: > From: Satha Rao > > Fastpath API to get txq used count. > >testpmd> show port 0 txq 0 desc count > > S

[PATCH v2 00/23] net/mlx5: support Geneve and options for HWS

2024-01-25 Thread Michael Baum
Add HWS support for both GENEVE and GENEVE TLV option headers. This patchset supports: - Add HW support for "RTE_FLOW_ITEM_TYPE_GENEVE" flow item. - Add HW support for "RTE_FLOW_ITEM_TYPE_GENEVE_OPT" flow item. - Add HW support for "RTE_FLOW_FIELD_GENEVE_VNI" for modify field flow action. -

[PATCH v2 01/23] common/mlx5: fix duplicate read of general capabilities

2024-01-25 Thread Michael Baum
General object types support is indicated in bitmap general_obj_types, which is part of HCA capabilities list. This bitmap was read multiple times, and each time a different bit was extracted. Previous patch optimized the code, reading the bitmap once into a local variable, and then extracting the

[PATCH v2 02/23] common/mlx5: fix query sample info capability

2024-01-25 Thread Michael Baum
Query sample info operation might be used by either Geneve TLV option or parse graph. Each operations can be supported regardless to another according the configured profile. In current implementation, the query sample info capability is turn on only when parse graph operation is supported adding

[PATCH v2 03/23] net/mlx5/hws: fix tunnel protocol checks

2024-01-25 Thread Michael Baum
From: Alex Vesker Align GRE, GTPU and VXLAN tunnel protocols to fail in case the packet is already tunneled. Also use local defines for protocol UDP ports for better layering of mlx5dr API. Fixes: c55c2bf35333 ("net/mlx5/hws: add definer layer") Fixes: 5bf14a4beb1a ("net/mlx5/hws: support matchi

[PATCH v2 05/23] net/mlx5: fix GENEVE option item translation

2024-01-25 Thread Michael Baum
The "flow_dv_translate_item_geneve_opt()" function is called twice per flow rule, for either matcher focusing the mask or value focusing the spec. The spec is always provided and its field "option_len" indicates the data size for both spec and mask. For using it, function has another pointer "genev

[PATCH v2 04/23] net/mlx5: remove GENEVE options length limitation

2024-01-25 Thread Michael Baum
GENEVE header has field named "opt_len" describing the total length of all GENEVE options in 4-byte granularity. In SW sreering implementation, only single option with single DW data is supported. When matching on GENEVE option data is requested, matching on "opt_len" field is added according to g

[PATCH v2 06/23] common/mlx5: add system image GUID attribute

2024-01-25 Thread Michael Baum
Add to the "system_image_guid" filed describing uniquely the physical device into "mlx5_hca_attr" structure. Signed-off-by: Michael Baum Acked-by: Suanming Mou --- drivers/common/mlx5/mlx5_devx_cmds.c | 10 ++ drivers/common/mlx5/mlx5_devx_cmds.h | 1 + 2 files changed, 7 insertions(+)

[PATCH v2 07/23] common/mlx5: add GENEVE TLV option attribute structure

2024-01-25 Thread Michael Baum
Add a new structure "mlx5_devx_geneve_tlv_option_attr" to use in GENEVE TLV option creation. Later this structure will be used by GENEVE TLV option query operation as well. Signed-off-by: Michael Baum Acked-by: Suanming Mou --- drivers/common/mlx5/mlx5_devx_cmds.c | 28 +

[PATCH v2 08/23] common/mlx5: add PRM attribute for TLV sample

2024-01-25 Thread Michael Baum
Add GENEVE TLV sample fields in 2 places: 1. New HCA capabilities indicating GENEVE TLV sample is supported. 2. New fields in "mlx5_ifc_geneve_tlv_option_bits" structure. Signed-off-by: Michael Baum Acked-by: Suanming Mou --- drivers/common/mlx5/mlx5_devx_cmds.c | 18 -- drivers

[PATCH v2 09/23] common/mlx5: add sample info query syndrome into error log

2024-01-25 Thread Michael Baum
Move "mlx5_devx_cmd_match_sample_info_query()" function to use "DEVX_DRV_LOG" in case of "devx_general_cmd" failure. This macro contains syndrome report and used by all other function calling "devx_general_cmd". Signed-off-by: Michael Baum Acked-by: Suanming Mou --- drivers/common/mlx5/mlx5_dev

[PATCH v2 10/23] common/mlx5: query GENEVE option sample ID from HCA attr

2024-01-25 Thread Michael Baum
This patch adds the GENEVE option sample ID into HCA attribute structure. This sample ID is used as the input of "mlx5_devx_cmd_match_sample_info_query" function when flex parser profile is 0. Signed-off-by: Michael Baum Acked-by: Suanming Mou --- drivers/common/mlx5/mlx5_devx_cmds.c | 2 ++ dr

[PATCH v2 11/23] common/mlx5: add function to query GENEVE TLV option

2024-01-25 Thread Michael Baum
Add a new function to query information about GENEVE TLV option parser. Signed-off-by: Michael Baum Acked-by: Suanming Mou --- drivers/common/mlx5/mlx5_devx_cmds.c | 50 drivers/common/mlx5/mlx5_devx_cmds.h | 6 drivers/common/mlx5/mlx5_prm.h | 5 +++ d

[PATCH v2 12/23] net/mlx5: add physical device handle

2024-01-25 Thread Michael Baum
Add structure describing physical device, and manage physical device global list. Signed-off-by: Michael Baum Acked-by: Suanming Mou --- drivers/net/mlx5/mlx5.c | 77 - drivers/net/mlx5/mlx5.h | 13 +++ 2 files changed, 82 insertions(+), 8 deletions(-

[PATCH v2 14/23] net/mlx5: add API to expose GENEVE option FW information

2024-01-25 Thread Michael Baum
Add a new API to expose GENEVE option FW information to DR layer. Signed-off-by: Michael Baum Acked-by: Suanming Mou --- drivers/net/mlx5/mlx5_flow.h| 28 + drivers/net/mlx5/mlx5_flow_geneve.c | 94 + 2 files changed, 122 insertions(+) diff --git a/d

[PATCH v2 15/23] net/mlx5: add testpmd support for GENEVE TLV parser

2024-01-25 Thread Michael Baum
Add GENEVE TLV parser support for mlx5 testpmd using following commands: 1. Add single option to the global option list: testpmd> mlx5 set tlv_option class (class) type (type) len (length) \ offset (sample_offset) sample_len (sample_len) \ class_mode (ignore|fixed|match

[PATCH v2 16/23] net/mlx5/hws: increase hl size for future compatibility

2024-01-25 Thread Michael Baum
From: Alex Vesker In some cases we rely on header layout DW offset from FW caps, this is done in case of future HW which may support current flex fields natively, for this we must increase header layout to 255 DWs, which is the limit in current definer creation. Signed-off-by: Alex Vesker Acked

[PATCH v2 13/23] net/mlx5: add GENEVE TLV options parser API

2024-01-25 Thread Michael Baum
Add a new private API to create/destroy parser for GENEVE TLV options. Signed-off-by: Michael Baum Signed-off-by: Viacheslav Ovsiienko Acked-by: Suanming Mou --- doc/guides/nics/mlx5.rst| 122 ++ doc/guides/platform/mlx5.rst| 6 +- drivers/net/mlx5/meson.build

[PATCH v2 17/23] net/mlx5/hws: support GENEVE matching

2024-01-25 Thread Michael Baum
From: Alex Vesker Add matching for GENEVE tunnel header. Signed-off-by: Alex Vesker Acked-by: Suanming Mou --- drivers/net/mlx5/hws/mlx5dr_definer.c | 91 +++ drivers/net/mlx5/hws/mlx5dr_definer.h | 19 ++ 2 files changed, 110 insertions(+) diff --git a/drivers/ne

[PATCH v2 21/23] net/mlx5: add GENEVE option support for group 0

2024-01-25 Thread Michael Baum
Add support for HWS GENEVE options for flex parser profile 0 and group 0. This patch avoids parser creation during matcher/flow preparation for HW steering (MLX5_SET_MATCHER_HS) and removes some logic done in "flow_dev_geneve_tlv_option_resource_*()" functions when dv_flow_en=2. After this change

[PATCH v2 22/23] net/mlx5: add support for GENEVE VNI modify field

2024-01-25 Thread Michael Baum
Add support for GENEVE VNI field modification. The support is only using HW steering. Signed-off-by: Michael Baum Acked-by: Suanming Mou --- doc/guides/nics/mlx5.rst | 6 +- doc/guides/rel_notes/release_24_03.rst | 1 + drivers/net/mlx5/mlx5_flow_dv.c| 4 +--- drive

[PATCH v2 18/23] net/mlx5/hws: support GENEVE options header

2024-01-25 Thread Michael Baum
From: Alex Vesker Add support for matching multiple GENEVE options. Options header introduces new complexities since there can be more than one GENEVE option. This requires us to track the total DWs used for matching. Current code supports 8DWs for data including type, class, length. There is als

[PATCH v2 20/23] net/mlx5: add GENEVE option support for profile 0

2024-01-25 Thread Michael Baum
Add support for matching and modifying GENEVE option for FLEX_PARSER_PROFILE_ENABLE=0. Before this patch it is supported when FLEX_PARSER_PROFILE_ENABLE=8 in HW steering and when FLEX_PARSER_PROFILE_ENABLE=0 in SW steering. Signed-off-by: Michael Baum Acked-by: Suanming Mou --- doc/guides/nics/

[PATCH v2 19/23] net/mlx5: add support for GENEVE and option item in HWS

2024-01-25 Thread Michael Baum
Add HW steering support for both "RTE_FLOW_ITEM_TYPE_GENEVE" and "RTE_FLOW_ITEM_TYPE_GENEVE_OPT". Signed-off-by: Michael Baum Acked-by: Suanming Mou --- doc/guides/nics/mlx5.rst | 15 ++- doc/guides/rel_notes/release_24_03.rst | 5 + drivers/net/mlx5/mlx5_flow.h | 21

[PATCH v2 23/23] net/mlx5: add support for modify GENEVE option header

2024-01-25 Thread Michael Baum
Add support for GENEVE option fields modification. Only fields configured in parser creation can be modified. Signed-off-by: Michael Baum Acked-by: Suanming Mou --- doc/guides/nics/mlx5.rst | 4 + doc/guides/rel_notes/release_24_03.rst | 3 + drivers/net/mlx5/mlx5_flow.h

After apt-get install dpdk problem

2024-01-25 Thread Hare, John
[AMD Official Use Only - General] On an Ubuntu systems I ran apt-get install dpdk I still could not get to any of the dpdk tools for example dpdk-devbind. What did I do wrong. Sincerely, John Hare

Regarding https://mails.dpdk.org/archives/dev/2023-June/270558.html dpdk patch

2024-01-25 Thread Amiya Ranjan Mohakud
Hi Kaiwenx I came across the below DPDK iavf error message during the initialization of X710 NICs in ESX. It seems the functionality works fine, but with below error messages. DPDK Version: 22.11.2 2023-12-08T09:58:00.901 |9322| MSG [NET] dpdk_port_configure:1717 Configure port eth3/1. lsc_

[PATCH v6 1/2] drivers/net: fix buffer overflow for ptypes list

2024-01-25 Thread Sivaramakrishnan Venkat
Address Sanitizer detects a buffer overflow caused by an incorrect ptypes list. Missing "RTE_PTYPE_UNKNOWN" ptype causes buffer overflow. Fix the ptypes list for drivers. Fixes: 0849ac3b6122 ("net/tap: add packet type management") Fixes: a7bdc3bd4244 ("net/dpaa: support packet type parsing") Fixes

[PATCH v6 2/2] drivers/net: return number of types in get supported types

2024-01-25 Thread Sivaramakrishnan Venkat
Missing "RTE_PTYPE_UNKNOWN" ptype causes buffer overflow. Enhance code such that the dev_supported_ptypes_get() function pointer now returns the number of elements to eliminate the need for "RTE_PTYPE_UNKNOWN" as the last item. Signed-off-by: Sivaramakrishnan Venkat --- v6: - missed driv

DPDK Release Status Meeting 2024-01-25

2024-01-25 Thread Mcnamara, John
Release status meeting minutes 2024-01-25 = Agenda: * Release Dates * Subtrees * Roadmaps * LTS * Defects * Opens Participants: * AMD * Intel * Marvell * Nvidia [No] * Red Hat Release Dates - The following are the current working dates for 24.

[DPDK Bug 1370] DTS: configure hugepage size as well as quantity

2024-01-25 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1370 Bug ID: 1370 Summary: DTS: configure hugepage size as well as quantity Product: DPDK Version: unspecified Hardware: All OS: All Status: UNCONFIRMED Severity: norm

Re: [PATCH] RFC: use C11 alignas instead of GCC attribute aligned

2024-01-25 Thread Tyler Retzlaff
ping. Please review this thread if you have time, the main point of discussion I would like to receive consensus on the following questions. 1. Should we continue to expand common alignments behind an __rte_macro i.e. what do we prefer to appear in code alignas(RTE_CACHE_LINE_MIN_SIZE) -

Re: [PATCH v4 0/2] eal: initialize shared plugins on Windows

2024-01-25 Thread Tyler Retzlaff
ping for Windows maintainers thanks! On Mon, Jan 08, 2024 at 03:38:09PM -0800, Tyler Retzlaff wrote: > When EAL is built with MSVC it is possible to dynamically load plugins > on Windows. Hook eal_plugins_init into rte_eal_init if built with MSVC > and provide code to load plugins on Windows. >

rte_atomic_*_explicit

2024-01-25 Thread Mattias Rönnblom
Why do rte_stdatomic.h functions have the suffix "_explicit"? Especially since there aren't any wrappers for the implicit variants. More to type, more to read. When was this API introduced? Shouldn't it say "experimental" somewhere?

DPDK LTO and semantic interpositioning

2024-01-25 Thread Mattias Rönnblom
Hi. When DPDK is built configured with b_lto=true, it seems like -fno-semantic-interposition is not passed to GCC. Is this intentional? Not providing this flag prevents most cross-unit optimizations for shared objects. Best regards, Mattias

[RFC] service: extend service function call statistics

2024-01-25 Thread Mattias Rönnblom
Add two new per-service counters. RTE_SERVICE_ATTR_IDLE_CALL_COUNT tracks the number of service function invocations where no work was performed. RTE_SERVICE_ATTR_ERROR_CALL_COUNT tracks the number invocations resulting in an error. The semantics of RTE_SERVICE_ATTR_CALL_COUNT remains the same (

[DPDK Bug 1371] Add function to start "simple" testpmd with default params for DTS

2024-01-25 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1371 Bug ID: 1371 Summary: Add function to start "simple" testpmd with default params for DTS Product: DPDK Version: unspecified Hardware: All OS: All Status

[DPDK Bug 1372] Add function for packing packet payload with a generic payload.

2024-01-25 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1372 Bug ID: 1372 Summary: Add function for packing packet payload with a generic payload. Product: DPDK Version: unspecified Hardware: All OS: All Status: U

[DPDK Bug 1373] Make docstrings less verbose, or reduce repeats

2024-01-25 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1373 Bug ID: 1373 Summary: Make docstrings less verbose, or reduce repeats Product: DPDK Version: unspecified Hardware: All OS: All Status: UNCONFIRMED Severity: norma

[DPDK Bug 1374] Stop using xmlrpc server for handling scapy on the TG, move to sending scapy commands via a remote shell.

2024-01-25 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1374 Bug ID: 1374 Summary: Stop using xmlrpc server for handling scapy on the TG, move to sending scapy commands via a remote shell. Product: DPDK Version: unspecified Hardware: All

[DPDK Bug 1375] Make limited use of "per testsuite" conf files.

2024-01-25 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1375 Bug ID: 1375 Summary: Make limited use of "per testsuite" conf files. Product: DPDK Version: unspecified Hardware: All OS: All Status: UNCONFIRMED Severity: norma

RE: [PATCH v1] crypto/ipsec_mb: upgrade IPsec Multi-buffer to 1.4

2024-01-25 Thread De Lara Guarch, Pablo
Hi Venkat, > -Original Message- > From: Sivaramakrishnan, VenkatX > Sent: Friday, January 19, 2024 11:40 AM > To: Ji, Kai ; De Lara Guarch, Pablo > > Cc: dev@dpdk.org; Sivaramakrishnan, VenkatX > > Subject: [PATCH v1] crypto/ipsec_mb: upgrade IPsec Multi-buffer to 1.4 Could you change

Re: [PATCH v4 1/2] windows: include winapifamily header for macros

2024-01-25 Thread Dmitry Kozlyuk
2024-01-08 15:38 (UTC-0800), Tyler Retzlaff: > Include winapifamily.h for WINAPI_FAMILY macro and provide a definition > of WINAPI_FAMILY_PHONE_APP if not present (happens compiling under > mingw) Given this explanation, I think the subject should be: eal/windows: make dirent.h shim compa

RE: rte_atomic_*_explicit

2024-01-25 Thread Morten Brørup
> From: Mattias Rönnblom [mailto:hof...@lysator.liu.se] > Sent: Thursday, 25 January 2024 19.54 > > Why do rte_stdatomic.h functions have the suffix "_explicit"? > Especially > since there aren't any wrappers for the implicit variants. > > More to type, more to read. They have the "_explicit" su

Re: rte_atomic_*_explicit

2024-01-25 Thread Tyler Retzlaff
On Thu, Jan 25, 2024 at 11:10:47PM +0100, Morten Brørup wrote: > > From: Mattias Rönnblom [mailto:hof...@lysator.liu.se] > > Sent: Thursday, 25 January 2024 19.54 > > > > Why do rte_stdatomic.h functions have the suffix "_explicit"? > > Especially > > since there aren't any wrappers for the implic

RE: [PATCH] RFC: use C11 alignas instead of GCC attribute aligned

2024-01-25 Thread Morten Brørup
> From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com] > Sent: Thursday, 25 January 2024 19.37 > > ping. > > Please review this thread if you have time, the main point of > discussion > I would like to receive consensus on the following questions. > > 1. Should we continue to expand common

Re: [PATCH v4 2/2] eal: initialize shared plugins on Windows

2024-01-25 Thread Dmitry Kozlyuk
2024-01-08 15:38 (UTC-0800), Tyler Retzlaff: > When EAL is built with MSVC it is possible to dynamically load plugins > on Windows. Hook eal_plugins_init into rte_eal_init if built with MSVC > and provide code to load plugins on Windows. Windows implementation does not check directory permissions

RE: [RFC] service: extend service function call statistics

2024-01-25 Thread Morten Brørup
> From: Mattias Rönnblom [mailto:mattias.ronnb...@ericsson.com] > Sent: Thursday, 25 January 2024 20.15 > > Add two new per-service counters. > > RTE_SERVICE_ATTR_IDLE_CALL_COUNT tracks the number of service function > invocations where no work was performed. > > RTE_SERVICE_ATTR_ERROR_CALL_COUN

Re: [PATCH] RFC: use C11 alignas instead of GCC attribute aligned

2024-01-25 Thread Tyler Retzlaff
On Thu, Jan 25, 2024 at 11:53:04PM +0100, Morten Brørup wrote: > > From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com] > > Sent: Thursday, 25 January 2024 19.37 > > > > ping. > > > > Please review this thread if you have time, the main point of > > discussion > > I would like to receive co

RE: [PATCH] net/mana: use rte_pktmbuf_alloc_bulk for allocating RX WQEs

2024-01-25 Thread Long Li
> Subject: Re: [PATCH] net/mana: use rte_pktmbuf_alloc_bulk for allocating RX > WQEs > > On Wed, 24 Jan 2024 18:42:42 -0800 > lon...@linuxonhyperv.com wrote: > > > + struct rte_mbuf **mbufs; > > + > > + mbufs = rte_calloc("mana_rx_mbufs", count, sizeof(struct rte_mbuf *), > > 0); > > + if

[DPDK Bug 1327] [dpdk-23.11] tso/tso_tunneling: tunnel tso setting to not take effect

2024-01-25 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1327 Jiale Song (songx.ji...@intel.com) changed: What|Removed |Added Resolution|--- |FIXED Status|UNC

RE: rte_atomic_*_explicit

2024-01-25 Thread Honnappa Nagarahalli
> > On Thu, Jan 25, 2024 at 11:10:47PM +0100, Morten Br�rup wrote: > > > From: Mattias R�nnblom [mailto:hof...@lysator.liu.se] > > > Sent: Thursday, 25 January 2024 19.54 > > > > > > Why do rte_stdatomic.h functions have the suffix "_explicit"? > > > Especially > > > since there aren't any w

[PATCH] app/testpmd: fix crash in multi-process packet forwarding

2024-01-25 Thread Dengdui Huang
On multi-process scenario, each process creates flows based on the number of queues. When nbcore is greater than 1, multiple cores may use the same queue to forward packet, like: dpdk-testpmd -a BDF --proc-type=auto -- -i --rxq=4 --txq=4 --nb-cores=2 --num-procs=2 --proc-id=0 testpmd> start mac pac

[PATCH v3 1/8] eal: introduce more macro for bit definition

2024-01-25 Thread Chengwen Feng
Introduce macros: 1. RTE_SHIFT_VAL64: get the uint64_t value which shifted by nr. 2. RTE_SHIFT_VAL32: get the uint32_t value which shifted by nr. 3. RTE_GENMASK64: generate a contiguous 64bit bitmask starting at bit position low and ending at position high. 4. RTE_GENMASK32: gener

[PATCH v3 0/8] add argparse library

2024-01-25 Thread Chengwen Feng
Introduce argparse library (which was inspired by the thread [1]), compared with getopt, it makes it easy to write user-friendly command-like program. Note: the 2nd commit contains usage examples. [1] https://patchwork.dpdk.org/project/dpdk/patch/20231105054539.22303-2-fengcheng...@huawei.com/

[PATCH v3 5/8] argparse: provide parsing known type API

2024-01-25 Thread Chengwen Feng
Provide API which could parsing the value from the input string based on the value type. This API could used in user callback when parsing string by argparse or kvargs library. Signed-off-by: Chengwen Feng --- app/test/test_argparse.c| 22 ++ lib/argparse/rte_argparse.c |

[PATCH v3 4/8] argparse: support parse parameters

2024-01-25 Thread Chengwen Feng
This commit supports parse parameters which described in [argc, argv]. Signed-off-by: Chengwen Feng --- app/test/test_argparse.c| 437 lib/argparse/rte_argparse.c | 295 +++- 2 files changed, 729 insertions(+), 3 deletions(-) diff --g

[PATCH v3 2/8] argparse: add argparse library

2024-01-25 Thread Chengwen Feng
Introduce argparse library (which was inspired by the thread [1]). This commit provides public API and doc. [1] https://patchwork.dpdk.org/project/dpdk/patch/20231105054539.22303-2-fengcheng...@huawei.com/ Signed-off-by: Chengwen Feng --- MAINTAINERS| 4 + doc/api

[PATCH v3 7/8] argparse: pretty help info

2024-01-25 Thread Chengwen Feng
This commit aligns help info. Take dmafwd as an example, previous: options: -h, --help: show this help message and exit. --mac-updating: Enable MAC addresses updating --no-mac-updating: Disable MAC addresses updating -p, --portmask: hexadecimal bitmask of ports to configure -q, --nb-queue: n

[PATCH v3 3/8] argparse: support verify argument config

2024-01-25 Thread Chengwen Feng
This commit supports verify argument config. Signed-off-by: Chengwen Feng --- MAINTAINERS | 1 + app/test/meson.build| 1 + app/test/test_argparse.c| 345 lib/argparse/rte_argparse.c | 307 +++- 4 fi

[PATCH v3 8/8] examples/dma: replace getopt with argparse

2024-01-25 Thread Chengwen Feng
Replace getopt with argparse. Signed-off-by: Chengwen Feng --- examples/dma/dmafwd.c| 269 +-- examples/dma/meson.build | 2 +- 2 files changed, 117 insertions(+), 154 deletions(-) diff --git a/examples/dma/dmafwd.c b/examples/dma/dmafwd.c index f27317a

[PATCH v3 6/8] argparse: support parse unsigned base type

2024-01-25 Thread Chengwen Feng
This commit supports parsing unsigned base type (u8/u16/u32/u64). Signed-off-by: Chengwen Feng --- app/test/test_argparse.c| 63 ++-- lib/argparse/rte_argparse.c | 116 lib/argparse/rte_argparse.h | 10 +++- 3 files changed, 183 insertio

Re: [PATCH] app/testpmd: fix crash in multi-process packet forwarding

2024-01-25 Thread fengchengwen
Hi Dengdui, On 2024/1/26 10:41, Dengdui Huang wrote: > On multi-process scenario, each process creates flows based on the > number of queues. When nbcore is greater than 1, multiple cores may > use the same queue to forward packet, like: > dpdk-testpmd -a BDF --proc-type=auto -- -i --rxq=4 --txq=4