[PATCH] net/hns3: support power monitor

2024-02-05 Thread Jie Hai
From: Chengwen Feng This commit supports power monitor on the Rx queue descriptor of the next poll. Note: Although rte_power_monitor() on the ARM platform does not support callback, this commit still implements the callback so that it does not need to be adjusted after the ARM platform supports

Re: [PATCH v1 1/1] baseband/acc: remove acc101

2024-02-05 Thread Maxime Coquelin
On 1/12/24 21:36, Hernan Vargas wrote: The ACC101 HW variant is not productized, the relevant code is removed as obsolete. Signed-off-by: Hernan Vargas --- doc/guides/bbdevs/acc100.rst | 18 +- doc/guides/rel_notes/release_24_03.rst | 1 + drivers/baseband/acc/acc100_pmd.h

Re: [PATCH v2] vhost: fix deadlock during software live migration of VDPA in a nested virtualization environment

2024-02-05 Thread Maxime Coquelin
Hi Hao, On 1/22/24 04:27, Hao Chen wrote: In a nested virtualization environment, running dpdk-vdpa in QEMU-L1 for software live migration will result in a deadlock between dpdke-vdpa and QEMU-L2 processes. 'rte_vdpa_relay_vring_used'-> '__vhost_iova_to_vva'-> 'vhost_user_iotlb_rd_unlock(vq)'->

Re: [PATCH v2 1/2] net/virtio-user: improve kick performance with notification area mapping

2024-02-05 Thread Maxime Coquelin
On 1/23/24 11:55, Srujana Challa wrote: This patch introduces new virtio-user callbacks to map the vq notification area and implements it for the vhost-vDPA backend. This is simply done by using mmap()/munmap() for the vhost-vDPA fd. And also adds code to write to queue notify address in noti

Re: [PATCH v2 2/2] net/virtio-user: add VIRTIO_NET_F_RSS to supported features

2024-02-05 Thread Maxime Coquelin
On 1/23/24 11:55, Srujana Challa wrote: This patch introduces new function to get rss device config and adds code to forward the RSS control command to backend through hw control queue if RSS feature is negotiated. This patch will help to negotiate VIRTIO_NET_F_RSS feature if vhost-vdpa backen

RE: [PATCH v8 0/3] test/dma: add vchan reconfig and SG tests

2024-02-05 Thread Gowrishankar Muthukrishnan
Hi, Could this series be merged as the patches are acked. Thanks, Gowrishankar

RE: [PATCH v8 0/4] PCI Dev and SG copy support

2024-02-05 Thread Gowrishankar Muthukrishnan
Hi, Could this series be merged as the patches are acked. Thanks, Gowrishankar

[PATCH v2 0/7] support dump reigser names and filter them

2024-02-05 Thread Jie Hai
The registers can be dumped through the API rte_eth_dev_get_reg_info. However, only register values are exported, which is inconvenient for users to interpret. Therefore, an extension of the structure "rte_dev_reg_info" and a new API rte_eth_dev_get_reg_info_ext is added to support the capability o

[PATCH v2 2/7] ethdev: add telemetry cmd for registers

2024-02-05 Thread Jie Hai
This patch adds a telemetry command for registers dump, and supports get registers with specified names. The length of the string exported by telemetry is limited by MAX_OUTPUT_LEN. Therefore, the filter should be more precise. An example usage is shown below: --> /ethdev/regs,0,INTR { "/ethdev/

[PATCH v2 1/7] ethdev: support report register names and filter

2024-02-05 Thread Jie Hai
This patch adds "filter" and "names" fields to "rte_dev_reg_info" structure. Names of registers in data fields can be reported and the registers can be filtered by their names. For compatibility, the original API rte_eth_dev_get_reg_info() does not use the name and filter fields. The new API rte_e

[PATCH v2 3/7] net/hns3: fix dump counter of registers

2024-02-05 Thread Jie Hai
Since the driver dumps the queue interrupt registers according to the intr_tqps_num, the counter should be the same. Fixes: acb3260fac5c ("net/hns3: fix dump register out of range") Fixes: 936eda25e8da ("net/hns3: support dump register") Signed-off-by: Jie Hai Cc: sta...@dpdk.org --- drivers/ne

[PATCH v2 4/7] net/hns3: remove dump format of registers

2024-02-05 Thread Jie Hai
Since the driver is going to support reporting names of all registers, remove the counter and insert of separators between diffent register modules. Signed-off-by: Jie Hai --- drivers/net/hns3/hns3_regs.c | 67 ++-- 1 file changed, 18 insertions(+), 49 deletions(-

[PATCH v2 5/7] net/hns3: add names for registers

2024-02-05 Thread Jie Hai
This patch adds names for all registers to be dumped. For those who can be directly accessed by their addresses, a new structure containing both name and address is added and the related arrays is refactored and renamed. For the remaining modules, there may be different meanings on different platf

[PATCH v2 6/7] net/hns3: support filter directly accessed registers

2024-02-05 Thread Jie Hai
This patch supports reporting names of registers which can be directly accessed by addresses and filtering them by names. Signed-off-by: Jie Hai --- drivers/net/hns3/hns3_regs.c | 185 +-- 1 file changed, 156 insertions(+), 29 deletions(-) diff --git a/drivers/ne

[PATCH v2 7/7] net/hns3: support filter dump of registers

2024-02-05 Thread Jie Hai
This patch supports reporting names of the dfx registers which filtering them by names. Signed-off-by: Jie Hai --- drivers/net/hns3/hns3_regs.c | 271 +-- 1 file changed, 224 insertions(+), 47 deletions(-) diff --git a/drivers/net/hns3/hns3_regs.c b/drivers/net/h

Re: [PATCH v2] ethdev: fast path async flow API

2024-02-05 Thread Thomas Monjalon
31/01/2024 10:35, Dariusz Sosnowski: > This patch reworks the async flow API functions called in data path, > to reduce the overhead during flow operations at the library level. > Main source of the overhead was indirection and checks done while > ethdev library was fetching rte_flow_ops from a giv

Re: [PATCH v6 1/3] ethdev: rename action modify field data structure

2024-02-05 Thread Thomas Monjalon
02/02/2024 01:42, Suanming Mou: > --- a/doc/guides/rel_notes/release_24_03.rst > +++ b/doc/guides/rel_notes/release_24_03.rst > @@ -124,6 +124,8 @@ ABI Changes > > * No ABI change that would break compatibility with 23.11. > > +* ethdev: Rename the experimental ``struct rte_flow_action_modify_

RE: [PATCH v6 1/3] ethdev: rename action modify field data structure

2024-02-05 Thread Suanming Mou
Hi Thomas, > -Original Message- > From: Thomas Monjalon > Sent: Monday, February 5, 2024 7:23 PM > To: Suanming Mou > Cc: ferruh.yi...@amd.com; Ori Kam ; Aman Singh > ; Yuying Zhang ; Dariusz > Sosnowski ; Slava Ovsiienko > ; Matan Azrad ; Andrew > Rybchenko ; dev@dpdk.org > Subject: Re:

Re: [PATCH v6 1/3] ethdev: rename action modify field data structure

2024-02-05 Thread Thomas Monjalon
> > > --- a/lib/ethdev/rte_flow.h > > > +++ b/lib/ethdev/rte_flow.h > > > @@ -3894,6 +3894,7 @@ struct rte_flow_action_ethdev { > > > > > > /** > > > * Field IDs for MODIFY_FIELD action. > > > + * e.g. the packet field IDs used in RTE_FLOW_ACTION_TYPE_MODIFY_FIELD. > > > > Better to give the fu

Re: [PATCH 01/13] net/ionic: add stat for completion queue entries processed

2024-02-05 Thread Boyer, Andrew
> On Feb 2, 2024, at 11:24 PM, Stephen Hemminger > wrote: > > Caution: This message originated from an External Source. Use proper caution > when opening attachments, clicking links, or responding. > > > On Fri, 2 Feb 2024 11:32:26 -0800 > Andrew Boyer wrote: > >> When completion coalesc

RE: [PATCH v6 1/3] ethdev: rename action modify field data structure

2024-02-05 Thread Suanming Mou
Hi, > -Original Message- > From: Thomas Monjalon > Sent: Monday, February 5, 2024 8:39 PM > To: Suanming Mou > Cc: dev@dpdk.org; ferruh.yi...@amd.com; Ori Kam ; Aman > Singh ; Yuying Zhang ; > Dariusz Sosnowski ; Slava Ovsiienko > ; Matan Azrad ; Andrew > Rybchenko ; dev@dpdk.org > Subje

Re: [PATCH v6 2/3] ethdev: add compare item

2024-02-05 Thread Thomas Monjalon
02/02/2024 01:42, Suanming Mou: > --- a/doc/guides/rel_notes/release_24_03.rst > +++ b/doc/guides/rel_notes/release_24_03.rst > +* **Added compare flow matching criteria.** Suggestion: "Added flow matching with various comparisons." Not sure how to illustrate the idea. > + Added ``RTE_FLOW_ITEM_

RE: [PATCH v2] ethdev: fast path async flow API

2024-02-05 Thread Dariusz Sosnowski
> -Original Message- > From: Thomas Monjalon > Sent: Monday, February 5, 2024 12:08 > To: Dariusz Sosnowski > Cc: Slava Ovsiienko ; Ori Kam ; > Suanming Mou ; Matan Azrad > ; Ferruh Yigit ; Andrew > Rybchenko ; dev@dpdk.org > Subject: Re: [PATCH v2] ethdev: fast path async flow API > > 3

Re: [PATCH 13/13] net/ionic: optimize device start operation

2024-02-05 Thread Boyer, Andrew
> On Feb 2, 2024, at 11:28 PM, Stephen Hemminger > wrote: > > Caution: This message originated from an External Source. Use proper caution > when opening attachments, clicking links, or responding. > > > On Fri, 2 Feb 2024 11:32:38 -0800 > Andrew Boyer wrote: > >> + memset(ctx, 0, si

RE: [PATCH v6 2/3] ethdev: add compare item

2024-02-05 Thread Suanming Mou
Hi Thomas, > -Original Message- > From: Thomas Monjalon > Sent: Monday, February 5, 2024 9:01 PM > To: Suanming Mou > Cc: ferruh.yi...@amd.com; Ori Kam ; Aman Singh > ; Yuying Zhang ; > Andrew Rybchenko ; dev@dpdk.org > Subject: Re: [PATCH v6 2/3] ethdev: add compare item > > 02/02/2024

Re: [PATCH 04/13] net/ionic: fix missing volatile type for cqe pointers

2024-02-05 Thread Boyer, Andrew
> On Feb 2, 2024, at 11:26 PM, Stephen Hemminger > wrote: > > Caution: This message originated from an External Source. Use proper caution > when opening attachments, clicking links, or responding. > > > On Fri, 2 Feb 2024 11:32:29 -0800 > Andrew Boyer wrote: > >> From: Neel Patel >> >

Re: [PATCH] telemetry: correct json empty dictionaries

2024-02-05 Thread Jonathan Erb
David, It was just a minor oversight in following commit: commit c933bb5177cac5fbf4533e357d466cff1f3e6c97 Author: Ciara Power Date:   Wed Sep 23 12:12:26 2020 +0100     telemetry: support array values in data object     Arrays of type uint64_t/int/string can now be included within an array   

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

2024-02-05 Thread Amiya Ranjan Mohakud
Hi Kaiwenx, There are no specific parameters except "-m 1024 -l 1,2". Just that the guest has 2 SR IOV X710 interfaces. Just for an additional update - ESX version: 8.0 U1 i40e PF driver version: 1.11.3.5 Firmware version:7.10 0x800075da 19.5.12 I tried updating the firmware version to 9.00 0x

Re: [PATCH v2] ethdev: fast path async flow API

2024-02-05 Thread Thomas Monjalon
05/02/2024 14:14, Dariusz Sosnowski: > From: Thomas Monjalon > > 31/01/2024 10:35, Dariusz Sosnowski: > > > As a result, no checks for availability of the implementation are > > > needed at library level in data path. > > > Any library-level validation checks in async flow API are compiled if > >

Re: [PATCH v6 2/3] ethdev: add compare item

2024-02-05 Thread Thomas Monjalon
05/02/2024 14:28, Suanming Mou: > From: Thomas Monjalon > > 02/02/2024 01:42, Suanming Mou: > > > --- a/doc/guides/rel_notes/release_24_03.rst > > > +++ b/doc/guides/rel_notes/release_24_03.rst > > > +* **Added compare flow matching criteria.** > > > > Suggestion: > > "Added flow matching with va

Adding helper function for ARM "dsb st"

2024-02-05 Thread Boyer, Andrew
I see that cnxk has added inline assembly for the ARM "dsb st" barrier. We, too, would like to add a use of this instruction. Can a helper function be added to the atomics headers? > drivers/ml/cnxk/cn10k_ml_dev.h:#define dsb_st ({ asm volatile("dsb st" : : : > "memory"); }) What would the hel

DPDK Release Status Meeting 2024-02-01

2024-02-05 Thread Mcnamara, John
Release status meeting minutes 2024-02-01 = 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 1/1] eal: add C++ include guard in generic/rte_vect.h

2024-02-05 Thread Tyler Retzlaff
On Fri, Feb 02, 2024 at 09:40:59AM +, Bruce Richardson wrote: > On Fri, Feb 02, 2024 at 10:18:23AM +0100, Thomas Monjalon wrote: > > 02/02/2024 06:13, Ashish Sadanandan: > > > The header was missing the extern "C" directive which causes name > > > mangling of functions by C++ compilers, leading

[PATCH v9 00/23] Use inclusive naming in DPDK

2024-02-05 Thread Stephen Hemminger
This is a collection of patches around fixing many of the uses of non-inclusive naming in DPDK. The current tree is in pretty good shape. The overall reduction of problematic words is significant. Before After app17 0 drivers379 331 (except base) ex

[PATCH v9 01/23] devtools: add script to check for non inclusive naming

2024-02-05 Thread Stephen Hemminger
Add a new script to find words that should not be used. It is a wrapper around git grep command. By default it prints matches but can also display counts. Uses the word lists from Inclusive Naming Initiative see https://inclusivenaming.org/word-lists/ Note: the JSON list has extra comma at end of

[PATCH v9 02/23] test: replace use of term segregate

2024-02-05 Thread Stephen Hemminger
Change comment based on inclusive naming recommendations. https://inclusivenaming.org/word-lists/tier-3/ Signed-off-by: Stephen Hemminger Acked-by: Tyler Retzlaff --- app/test/test_hash_readwrite_lf_perf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/test_hash_r

[PATCH v9 03/23] examples/ptp: replace terms master and slave

2024-02-05 Thread Stephen Hemminger
The IEEE 1588 standard has been updated to remove the use of master-slave terminolgy. Use the terms recommended by IEEE 1588g-2022 amendment: In place of the term “master”, use the term “timeTransmitter”. In place of the term “slave”, use the term “timeReceiver”. Signed-off-by: Stephen Hemmin

[PATCH v9 04/23] test: remove use of word master in test_red

2024-02-05 Thread Stephen Hemminger
No need to use term master here. Signed-off-by: Stephen Hemminger Acked-by: Tyler Retzlaff --- app/test/test_red.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/test_red.c b/app/test/test_red.c index aa7538d51a35..6bf58ad4dd9a 100644 --- a/app/test/test_red.c +++

[PATCH v9 05/23] mbuf: replace term sanity check

2024-02-05 Thread Stephen Hemminger
Replace rte_mbuf_sanity_check() with rte_mbuf_verify() to match the similar macro RTE_VERIFY() in rte_debug.h Good wording from discussion english.stackexchange.com: The phrase "sanity check" is ableist language as it implies that there is something wrong with people who have mental illnesses

[PATCH v9 06/23] eal: replace use of sanity check in comments and messages

2024-02-05 Thread Stephen Hemminger
Sanity check is on the Tier 2 non-inclusive list. Replace or remove it. Signed-off-by: Stephen Hemminger Acked-by: Anatoly Burakov --- lib/eal/common/eal_common_memory.c | 2 +- lib/eal/common/eal_common_proc.c | 3 ++- lib/eal/common/eal_common_trace.c | 2 +- lib/eal/common/eal_memcfg.h

[PATCH v9 07/23] test: replace use word sanity

2024-02-05 Thread Stephen Hemminger
The word "sanity" is on the not-allowed inclusive naming list. Replace the unnecessary usage in tests. Signed-off-by: Stephen Hemminger --- app/test/test_bitmap.c | 4 +-- app/test/test_bpf.c| 6 ++-- app/test/test_common.c | 2 +- app/test/test_distrib

[PATCH v9 08/23] examples: remove term sanity

2024-02-05 Thread Stephen Hemminger
Do not use non-inclusive terms. Signed-off-by: Stephen Hemminger --- examples/ipsec-secgw/event_helper.c | 2 +- examples/qos_sched/args.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/ipsec-secgw/event_helper.c b/examples/ipsec-secgw/event_helper.c i

[PATCH v9 09/23] lib: replace use of sanity check in comments and messages

2024-02-05 Thread Stephen Hemminger
Sanity check is on the Tier 2 non-inclusive list. Replace or remove it. Signed-off-by: Stephen Hemminger --- lib/graph/graph.c | 2 +- lib/graph/graph_stats.c | 2 +- lib/graph/node.c| 2 +- lib/jobstats/rte_jobstats.c | 6 +++--- lib/metrics/rte_metrics.c | 2 +- lib

[PATCH v9 10/23] doc/eventdev_pipeline: remove sanity

2024-02-05 Thread Stephen Hemminger
The word sanity check is unnecessary here. Signed-off-by: Stephen Hemminger --- doc/guides/gpus/cuda.rst | 2 +- doc/guides/sample_app_ug/eventdev_pipeline.rst | 2 +- doc/guides/tools/testbbdev.rst | 8 3 files changed, 6 insertions(+), 6 deletions

[PATCH v9 11/23] net/ring: replace use of sanity

2024-02-05 Thread Stephen Hemminger
Don't use term sanity check Signed-off-by: Stephen Hemminger --- drivers/net/ring/rte_eth_ring.c | 7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/drivers/net/ring/rte_eth_ring.c b/drivers/net/ring/rte_eth_ring.c index 48953dd7a059..710fd9ebe526 100644 --- a/drivers/net/

[PATCH v9 12/23] net/fm10k, net/ixgbe: remove word sanity

2024-02-05 Thread Stephen Hemminger
Remove non-inclusive term sanity from these Intel drivers. Signed-off-by: Stephen Hemminger --- drivers/net/fm10k/fm10k_ethdev.c | 2 +- drivers/net/fm10k/fm10k_rxtx.c | 2 +- drivers/net/ixgbe/ixgbe_fdir.c | 2 +- drivers/net/ixgbe/ixgbe_ipsec.c | 2 +- drivers/net/ixgbe/ixgbe_rxtx.c | 2

[PATCH v9 13/23] net/mlx[45]: remove word sanity

2024-02-05 Thread Stephen Hemminger
The term "sanity" is on non-inclusive naming list. Remove it from the Nvidia drivers. Signed-off-by: Stephen Hemminger --- drivers/common/mlx5/linux/mlx5_common_os.c | 2 +- drivers/net/mlx4/mlx4.c| 2 +- drivers/net/mlx4/mlx4_flow.c | 6 +++--- drivers/net/mlx5

[PATCH v9 14/23] net/sfc: remove term "sanity check"

2024-02-05 Thread Stephen Hemminger
Remove term sanity check in comment. Signed-off-by: Stephen Hemminger Acked-by: Andrew Rybchenko --- drivers/net/sfc/sfc_dp_rx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/sfc/sfc_dp_rx.h b/drivers/net/sfc/sfc_dp_rx.h index 9f9bf2898881..dfb4fb98844b 100644

[PATCH v9 15/23] net/ark: replace use of term sanity

2024-02-05 Thread Stephen Hemminger
Do not use non inclusive terms. Signed-off-by: Stephen Hemminger --- drivers/net/ark/ark_ethdev.c| 8 drivers/net/ark/ark_ethdev_rx.c | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/net/ark/ark_ethdev.c b/drivers/net/ark/ark_ethdev.c index 0ffd4b9e9e4a

[PATCH v9 16/23] net/bnxt: replace use of term sanity

2024-02-05 Thread Stephen Hemminger
Do not use non-inclusive terms. Signed-off-by: Stephen Hemminger --- drivers/net/bnxt/bnxt_hwrm.c | 2 +- drivers/net/bnxt/hsi_struct_def_dpdk.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/bnxt/bnxt_hwrm.c b/drivers/net/bnxt/bnxt_hwrm.c index 06f1

[PATCH v9 17/23] net/bnx2x: remove reference to sanity

2024-02-05 Thread Stephen Hemminger
Replace "sanity check" Signed-off-by: Stephen Hemminger --- drivers/net/bnx2x/bnx2x.c | 2 +- drivers/net/bnx2x/bnx2x_stats.c | 8 drivers/net/bnx2x/ecore_sp.c| 2 +- drivers/net/bnx2x/elink.c | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/drive

[PATCH v9 18/23] cnxk: replace term sanity

2024-02-05 Thread Stephen Hemminger
Do not use non-inclusive naming. Signed-off-by: Stephen Hemminger --- drivers/common/cnxk/roc_nix_tm_ops.c | 2 +- drivers/common/cnxk/roc_npa.c| 4 ++-- drivers/net/cnxk/cnxk_ethdev.c | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/common/cnxk/roc_

[PATCH v9 19/23] event/opdl: remove term sanity

2024-02-05 Thread Stephen Hemminger
Don't use non-inclusive term. Signed-off-by: Stephen Hemminger --- drivers/event/opdl/opdl_evdev.c | 2 +- drivers/event/opdl/opdl_evdev_init.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/event/opdl/opdl_evdev.c b/drivers/event/opdl/opdl_evdev.c index 0ccc

[PATCH v9 20/23] net/txgbe: replace term sanity

2024-02-05 Thread Stephen Hemminger
Don't use term sanity. Signed-off-by: Stephen Hemminger --- drivers/net/txgbe/txgbe_ipsec.c | 2 +- drivers/net/txgbe/txgbe_rxtx.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/txgbe/txgbe_ipsec.c b/drivers/net/txgbe/txgbe_ipsec.c index f9f8108fb894..cadb094

[PATCH v9 21/23] net/cxgbe: remove use of term sanity

2024-02-05 Thread Stephen Hemminger
Remove non-inclusive terminolgy. Signed-off-by: Stephen Hemminger --- drivers/net/cxgbe/cxgbe_ethdev.c | 10 ++ drivers/net/cxgbe/cxgbevf_main.c | 4 ++-- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/drivers/net/cxgbe/cxgbe_ethdev.c b/drivers/net/cxgbe/cxgbe_ethdev.c

[PATCH v9 22/23] crypto/bcmfs: replace term sanity check

2024-02-05 Thread Stephen Hemminger
Do not use non-inclusive naming here. Signed-off-by: Stephen Hemminger --- drivers/crypto/bcmfs/hw/bcmfs4_rm.c | 6 +++--- drivers/crypto/bcmfs/hw/bcmfs5_rm.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/crypto/bcmfs/hw/bcmfs4_rm.c b/drivers/crypto/bcmfs/hw

[PATCH v9 23/23] drivers: remove use of term sanity check

2024-02-05 Thread Stephen Hemminger
Replace non-inclusive language with better comments. Covers multiple drivers Signed-off-by: Stephen Hemminger Acked-by: Hemant Agrawal --- drivers/bus/fslmc/qbman/qbman_sys_decl.h | 2 +- drivers/common/cnxk/roc_npa.c | 2 +- drivers/common/dpaax/caamflib/desc.h | 2 +- driver

Re: [PATCH] drivers: Convert uses of RTE_LOG_DP to use RTE_LOG_DP_LINE

2024-02-05 Thread Patrick Robb
Recheck-request: iol-intel-Functional I saw this failed in CI testing for the DTS mtu_update test but suspect it was an infra failure as it happened across 3 distinct patches in a short span of time. So, triggering a retest.

Re: [PATCH 00/13] net/ionic: miscellaneous fixes and improvements

2024-02-05 Thread Patrick Robb
Recheck-request: iol-intel-Functional I saw this failed in CI testing for the DTS MTU_Update test but suspect it was an infra failure as it happened across 3 distinct patches in a short span of time. So, triggering a retest.

Re: [PATCH v7 00/19] Replace uses of RTE_LOGTYPE_PMD

2024-02-05 Thread Patrick Robb
Recheck-request: iol-intel-Functional I saw this failed in CI testing for the DTS MTU_Update test but suspect it was an infra failure as it happened across 3 distinct patches in a short span of time. So, triggering a retest.

RE: [PATCH v7 16/19] event/dlb2: use dedicated logtype

2024-02-05 Thread Sevincer, Abdullah
>+ DLB2_LOG_INFO("Ignoring unsupported parameters when >creating device '%s'", name); Hi Stephen can you modify above like this: DLB2_LOG_INFO(": Ignoring unsupported parameters when creating device '%s'\n", name); It looks better this

RE: [PATCH v2] app/testpmd: support updating flow rule actions

2024-02-05 Thread Dariusz Sosnowski
> -Original Message- > From: Thomas Monjalon > Sent: Friday, February 2, 2024 10:55 > To: mko-...@napatech.com; c...@napatech.com; Oleksandr Kolomeiets > > Cc: aman.deep.si...@intel.com; yuying.zh...@intel.com; dev@dpdk.org; > Ori Kam ; Dariusz Sosnowski > Subject: Re: [PATCH v2] app/tes

RE: [PATCH v9 13/23] net/mlx[45]: remove word sanity

2024-02-05 Thread Dariusz Sosnowski
> -Original Message- > From: Stephen Hemminger > Sent: Monday, February 5, 2024 18:44 > To: dev@dpdk.org > Cc: Stephen Hemminger ; Dariusz Sosnowski > ; Slava Ovsiienko ; Ori > Kam ; Suanming Mou ; Matan > Azrad > Subject: [PATCH v9 13/23] net/mlx[45]: remove word sanity > > The term "sa

Re: [PATCH 00/13] net/ionic: miscellaneous fixes and improvements

2024-02-05 Thread Boyer, Andrew
On Feb 5, 2024, at 1:44 PM, Patrick Robb wrote: Caution: This message originated from an External Source. Use proper caution when opening attachments, clicking links, or responding. Recheck-request: iol-intel-Functional I saw this failed in CI testing for the DTS MTU_Update test but suspect

RE: [PATCH 1/1] eal: add C++ include guard in generic/rte_vect.h

2024-02-05 Thread Morten Brørup
> From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com] > Sent: Monday, 5 February 2024 18.37 > > On Fri, Feb 02, 2024 at 09:40:59AM +, Bruce Richardson wrote: > > On Fri, Feb 02, 2024 at 10:18:23AM +0100, Thomas Monjalon wrote: > > > 02/02/2024 06:13, Ashish Sadanandan: > > > > The heade

Re: [PATCH v9 15/23] net/ark: replace use of term sanity

2024-02-05 Thread Ed Czeck
On Mon, Feb 5, 2024 at 1:03 PM Stephen Hemminger wrote: > > Do not use non inclusive terms. > > Signed-off-by: Stephen Hemminger > --- > drivers/net/ark/ark_ethdev.c| 8 > drivers/net/ark/ark_ethdev_rx.c | 2 +- > 2 files changed, 5 insertions(+), 5 deletions(-) > > diff --git a/dri

Re: [PATCH v7 16/19] event/dlb2: use dedicated logtype

2024-02-05 Thread Stephen Hemminger
On Mon, 5 Feb 2024 19:16:15 + "Sevincer, Abdullah" wrote: > >+DLB2_LOG_INFO("Ignoring unsupported parameters when > >creating device '%s'", > name); > > Hi Stephen can you modify above like this: > > DLB2_LOG_INFO(": Ignoring unsupp

RE: [PATCH v7 16/19] event/dlb2: use dedicated logtype

2024-02-05 Thread Sevincer, Abdullah
>+I don't understand why you would say that. >+The message already will get a single newline and your change would add a >second one. >+Log messages are not supposed to be double spaced, it confuses syslog. >+If you want to change the overall format of log messages and how it displays >the fun

[PATCH] net/hns3: fix Rx packet truncation when KEEP CRC enabled

2024-02-05 Thread Jie Hai
From: Dengdui Huang When KEEP_CRC offload is enabled, some packets will be truncated and the CRC is still be stripped in following cases: 1. For HIP08 hardware, the packet type is TCP and the length is less than or equal to 60B. 2. For other hardwares, the packet type is IP and the length i

RE: [PATCH v6 2/3] ethdev: add compare item

2024-02-05 Thread Suanming Mou
> -Original Message- > From: Thomas Monjalon > Sent: Monday, February 5, 2024 10:09 PM > To: Suanming Mou > Cc: ferruh.yi...@amd.com; Ori Kam ; Aman Singh > ; Yuying Zhang ; > Andrew Rybchenko ; dev@dpdk.org > Subject: Re: [PATCH v6 2/3] ethdev: add compare item > > 05/02/2024 14:28,

RE: [PATCH 0/2] Wangxun support vector Rx/Tx

2024-02-05 Thread Jiawen Wu
Hi, > -Original Message- > From: Jiawen Wu > Sent: Thursday, February 1, 2024 11:00 AM > To: dev@dpdk.org > Cc: Jiawen Wu > Subject: [PATCH 0/2] Wangxun support vector Rx/Tx > > Add SSE/NEON vector instructions for TXGBE and NGBE driver to process > packets. > > Jiawen Wu (2): > net/

[PATCH v7 0/4] ethdev: add RTE_FLOW_ITEM_TYPE_COMPARE

2024-02-05 Thread Suanming Mou
The new item type is added for the case user wants to match traffic based on packet field compare result with other fields or immediate value. e.g. take advantage the compare item user will be able to accumulate a IPv4/TCP packet's TCP data_offset and IPv4 IHL field to a tag register, then compare

[PATCH v7 1/4] ethdev: rename action modify field data structure

2024-02-05 Thread Suanming Mou
Current rte_flow_action_modify_data struct describes the pkt field perfectly and is used only in action. It is planned to be used for item as well. This commit renames it to "rte_flow_field_data" making it compatible to be used by item. Signed-off-by: Suanming Mou Acked-by: Ori Kam Acked-by: An

[PATCH v7 2/4] ethdev: move flow field data structures

2024-02-05 Thread Suanming Mou
As flow field relevant data structures will be used by both actions and items, this commit moves the relevant data structures up to item parts. Signed-off-by: Suanming Mou --- lib/ethdev/rte_flow.h | 290 +- 1 file changed, 145 insertions(+), 145 deletions

[PATCH v7 3/4] ethdev: add compare item

2024-02-05 Thread Suanming Mou
The new item type is added for the case user wants to match traffic based on packet field compare result with other fields or immediate value. e.g. take advantage the compare item user will be able to accumulate a IPv4/TCP packet's TCP data_offset and IPv4 IHL field to a tag register, then compare

[PATCH v7 4/4] net/mlx5: add compare item support

2024-02-05 Thread Suanming Mou
The compare item allows adding flow match with comparison result. This commit adds compare item support to the PMD code. Due to HW limitation: - Only HWS supported. - Only 32-bit comparison is supported. - Only single compare flow is supported in the flow table. - Only match with compare resul

RE: DPDK testpmd with E823 link status is down

2024-02-05 Thread Zeng, ZhichaoX
Hi JackyCT.Chen: We are tracking this issue, it is a firmware issue that has been reported to the hardware team and the fix will take some time. There is a workaround in ICE PMD, change the "no wait" to "wait_to_complete" mode when ice_interrupt_handler() updates the link status in drivers/net

RE: [PATCH v3 1/3] config/arm: avoid mcpu and march conflicts

2024-02-05 Thread Wathsala Wathawana Vithanage
Hi Pavan, > The compiler options march and mtune are a subset of mcpu and will lead to > conflicts if improper march is chosen for a given mcpu. > To avoid conflicts, force part number march when mcpu is available and is > supported by the compiler. Why would one force the march specified in the

Re: [PATCH v3 1/3] config/arm: avoid mcpu and march conflicts

2024-02-05 Thread Honnappa Nagarahalli
> On Feb 5, 2024, at 10:10 PM, Wathsala Wathawana Vithanage > wrote: > > Hi Pavan, > >> The compiler options march and mtune are a subset of mcpu and will lead to >> conflicts if improper march is chosen for a given mcpu. >> To avoid conflicts, force part number march when mcpu is available a

RE: [PATCH v2] lib/dmadev: get DMA device using device ID

2024-02-05 Thread Amit Prakash Shukla
Hi Thomas, Gentle ping. Could you please consider merging this patch. The driver series https://patches.dpdk.org/project/dpdk/patch/20231208082835.2817601-3-amitpraka...@marvell.com/ is dependent on this patch. Thanks, Amit Shukla > -Original Message- > From: Anoob Joseph > Sent: Mon