[PATCH v2 1/2] test/dma: update the sg test to verify wrap around case

2024-04-19 Thread Vidya Sagar Velumuri
Run the sg test in a loop to verify wrap around case. Total number commands submitted to be more than the number descriptors allocated to verify the scenario. Signed-off-by: Vidya Sagar Velumuri diff --git a/app/test/test_dmadev.c b/app/test/test_dmadev.c index 143e1bcd68..7462e90831 100644 --- a

[PATCH v2 2/2] test/dma: add functions to verify zero and one fill

2024-04-19 Thread Vidya Sagar Velumuri
Add test cases to verify zero fill and one fill Signed-off-by: Vidya Sagar Velumuri diff --git a/app/test/test.h b/app/test/test.h index 15e23d297f..0ca6519f6e 100644 --- a/app/test/test.h +++ b/app/test/test.h @@ -27,6 +27,10 @@ #include +#ifndef ARRAY_SIZE +#define ARRAY_SIZE(x) (sizeof(x

Re: [v14 1/3] docs: AF_XDP Device Plugin

2024-04-19 Thread Ferruh Yigit
On 4/8/2024 2:09 PM, Maryam Tahhan wrote: > diff --git a/doc/guides/howto/af_xdp_cni.rst b/doc/guides/howto/af_xdp_cni.rst > deleted file mode 100644 > index a1a6d5b99c..00 > --- a/doc/guides/howto/af_xdp_cni.rst > +++ /dev/null > @@ -1,253 +0,0 @@ > -.. SPDX-License-Identifier: BSD-3-Claus

Re: [v14 0/3] net/af_xdp: fix multi interface support for K8s

2024-04-19 Thread Ferruh Yigit
On 4/8/2024 2:19 PM, Loftus, Ciara wrote: >> The original `use_cni` implementation was limited to >> supporting only a single netdev in a DPDK pod. This patchset >> aims to fix this limitation transparently to the end user. >> It will also enable compatibility with the latest AF_XDP >> Device Plugi

Re: [PATCH v2] app/testpmd: fix lcore ID restriction

2024-04-19 Thread Ferruh Yigit
On 4/16/2024 10:55 AM, Sivaprasad Tummala wrote: > diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c > index ba1007ace6..6b28c22c96 100644 > --- a/app/test-pmd/config.c > +++ b/app/test-pmd/config.c > @@ -4785,9 +4785,9 @@ fwd_stream_on_other_lcores(uint16_t domain_id, > lcoreid_t src_lc,

RE: [PATCH v3 1/7] net/ice: fix check for outer UDP checksum offload

2024-04-19 Thread Morten Brørup
For the series, Acked-by: Morten Brørup

RE: [RFC 2/6] eal/common: remove VLA warnings

2024-04-19 Thread Morten Brørup
> From: Konstantin Ananyev [mailto:konstantin.v.anan...@yandex.ru] > Sent: Thursday, 18 April 2024 12.33 > > From: Konstantin Ananyev > > 1) ../lib/eal/common/eal_common_proc.c:695:15: warning: variable length array > used [-Wvla] > char control[CMSG_SPACE(fd_size)]; >

RE: [RFC 3/6] ethdev: remove VLA warnings

2024-04-19 Thread Morten Brørup
> From: Konstantin Ananyev [mailto:konstantin.v.anan...@yandex.ru] > Sent: Thursday, 18 April 2024 12.33 > > From: Konstantin Ananyev > > 1) ./lib/ethdev/rte_ethdev.c:3244:16: warning: ISO C90 forbids variable length > array ‘xstats_names’ [-Wvla] > 2) ./lib/ethdev/rte_ethdev.c:3345:17: warning:

RE: [RFC 4/6] hash: remove VLA warnings

2024-04-19 Thread Morten Brørup
> From: Konstantin Ananyev > > 1) ./lib/hash/rte_cuckoo_hash.c:2362:9: warning: ISO C90 forbids variable > length array ‘positions’ [-Wvla] > 2) ../lib/hash/rte_cuckoo_hash.c:2478:9: warning: ISO C90 forbids variable > length array ‘positions’ [-Wvla] > > Both rte_hash_lookup_bulk_data() and > r

RE: [RFC 5/6] hash/thash: remove VLA warnings

2024-04-19 Thread Morten Brørup
> @@ -771,7 +771,7 @@ rte_thash_adjust_tuple(struct rte_thash_ctx *ctx, > uint32_t desired_value, unsigned int attempts, > rte_thash_check_tuple_t fn, void *userdata) > { > - uint32_t tmp_tuple[tuple_len / sizeof(uint32_t)]; > + uint32_t tmp_tuple[RTE_THASH_MAX_L4_LEN]; Keep t

RE: [RFC 6/6] rcu: remove VLA warnings

2024-04-19 Thread Morten Brørup
> --- a/lib/rcu/rte_rcu_qsbr.h > +++ b/lib/rcu/rte_rcu_qsbr.h > @@ -86,6 +86,11 @@ struct __rte_cache_aligned rte_rcu_qsbr_cnt { > #define __RTE_QSBR_CNT_MAX ((uint64_t)~0) > #define __RTE_QSBR_TOKEN_SIZE sizeof(uint64_t) > > +/** > + * Max allowable size (in bytes) of each element in the defer

RE: [RFC 1/6] eal/linux: remove VLA warnings

2024-04-19 Thread Morten Brørup
> From: Konstantin Ananyev > > 1) ./lib/eal/linux/eal_interrupts.c:1073:16: warning: ISO C90 forbids variable > length array ‘events’ [-Wvla] > > eal_intr_handle_interrupts() is called by eal_intr_thread_main() > so it seems ok to simply alloc space for events from heap and reuse the > same buff

RE: [RFC 5/6] hash/thash: remove VLA warnings

2024-04-19 Thread Konstantin Ananyev
> > @@ -771,7 +771,7 @@ rte_thash_adjust_tuple(struct rte_thash_ctx *ctx, > > uint32_t desired_value, unsigned int attempts, > > rte_thash_check_tuple_t fn, void *userdata) > > { > > - uint32_t tmp_tuple[tuple_len / sizeof(uint32_t)]; > > + uint32_t tmp_tuple[RTE_THASH_MAX_L4_LEN]; >

RE: [RFC 5/6] hash/thash: remove VLA warnings

2024-04-19 Thread Morten Brørup
> > > @@ -771,7 +771,7 @@ rte_thash_adjust_tuple(struct rte_thash_ctx *ctx, > > > uint32_t desired_value, unsigned int attempts, > > > rte_thash_check_tuple_t fn, void *userdata) > > > { > > > - uint32_t tmp_tuple[tuple_len / sizeof(uint32_t)]; > > > + uint32_t tmp_tuple[RTE_THASH_MAX_L4_LEN];

[PATCH v1] dts: remove the OS UDP test suite

2024-04-19 Thread Juraj Linkeš
The test suite served as a demonstration of the Scapy traffic generator implementation. Now that we have a test suite that uses DPDK code (via testpmd), there is no reason to keep the test suite, as there's no expectation it'll be actually used in any setup. Signed-off-by: Juraj Linkeš --- dts/c

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

2024-04-19 Thread Ferruh Yigit
On 4/19/2024 10:04 AM, Jiawen Wu wrote: > Add SSE/NEON vector instructions for TXGBE and NGBE driver to process > packets. > > v3: > - Update release note. > - Use spaces instead of tab in meson.build. > > v2: > - Add performance test results. > - Cleanup codes and rebase. > - Remove GCC "-Wcast-

Re: [PATCH v2 00/83] move alignment attribute on types

2024-04-19 Thread David Marchand
Hello Tyler, On Mon, Apr 15, 2024 at 10:05 PM Tyler Retzlaff wrote: > > The current location used for __rte_aligned(a) for alignment of types > and variables is not compatible with MSVC. There is only a single > location accepted by both toolchains. > > After having established this as the conven

Re: [PATCH v7] ethdev: fix strict aliasing lead to link cannot be up

2024-04-19 Thread Ferruh Yigit
On 4/18/2024 8:28 AM, Chengwen Feng wrote: > @@ -1701,12 +1696,10 @@ static inline void > rte_eth_linkstatus_get(const struct rte_eth_dev *dev, > struct rte_eth_link *link) > { > - RTE_ATOMIC(uint64_t) *src = (uint64_t __rte_atomic > *)&(dev->data->dev_link); > - uin

Re: [PATCH v7] ethdev: fix strict aliasing lead to link cannot be up

2024-04-19 Thread Ferruh Yigit
On 4/18/2024 8:28 AM, Chengwen Feng wrote: > Fix a problem introduced by a compiler upgrade (from gcc10 to gcc12.3), > which will lead the hns3 NIC can't link up. The root cause is strict > aliasing violation in rte_eth_linkstatus_set() with hns3 driver, see > [1] for more details. > > This commit

[PATCH v4 0/6] latencystats: cleanup

2024-04-19 Thread Stephen Hemminger
Latencystats uses variable length array and floating point when they are not necessary to acheive the same result. While testing also noticed that the code was computing wrong values on my test system, and that include files were missing. v4 - review feedback and fix pedantic warnings Stephen Hem

[PATCH v4 1/6] latencystats: replace use of VLA

2024-04-19 Thread Stephen Hemminger
The temporary array latencystats is not needed if the algorithm is converted into one pass. Signed-off-by: Stephen Hemminger Acked-by: Morten Brørup Acked-by: Tyler Retzlaff --- lib/latencystats/rte_latencystats.c | 31 +++-- 1 file changed, 16 insertions(+), 15 deletio

[PATCH v4 2/6] latencystats: handle fractional cycles per ns

2024-04-19 Thread Stephen Hemminger
The timer_hz is not always an integral number of nanoseconds. For examples, cycles per nanoseconds on my test system is 2.8. Fix by using floating point where needed and calculate value once. Signed-off-by: Stephen Hemminger --- lib/latencystats/rte_latencystats.c | 17 ++--- 1 file

[PATCH v4 3/6] latencystats: do not use floating point

2024-04-19 Thread Stephen Hemminger
The cycle counts do not need to be stored as floating point. Instead keep track of latency in cycles, and convert to nanoseconds when read. Change Exponential Weighted Moving Average weight from .2 to .25 to avoid use of floating point for that. The average latency took too long to "warm up". Do

[PATCH v4 4/6] latencystats: fix log messages

2024-04-19 Thread Stephen Hemminger
All messages that because of an error should be at log level NOTICE or above. Do not break log messages across lines. Signed-off-by: Stephen Hemminger Acked-by: Tyler Retzlaff --- lib/latencystats/rte_latencystats.c | 30 ++--- 1 file changed, 15 insertions(+), 15 deleti

[PATCH v4 5/6] latencystats: update include files

2024-04-19 Thread Stephen Hemminger
Include what is used here. Signed-off-by: Stephen Hemminger --- lib/latencystats/rte_latencystats.c | 18 +- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/lib/latencystats/rte_latencystats.c b/lib/latencystats/rte_latencystats.c index 8aff96a449..5db896ac7b 1006

[PATCH v4 6/6] latencystats: fix for pedantic warnings

2024-04-19 Thread Stephen Hemminger
ISO C does not allow casting function pointer to void *. Resolve by enforcing the reserved argument. The user_cb argument for rte_latencystats_init() was not implemented, and had to be NULL anyway. The log type is local to this function and RTE_LOG_REGISTER_DEFAULT alread has a semicolon. So addin

RE: [PATCH v4 3/6] latencystats: do not use floating point

2024-04-19 Thread Morten Brørup
> + if (unlikely(first_sample)) { > + first_sample = false; > + > glob_stats->min_latency = latency; > - else if (latency > glob_stats->max_latency) > glob_stats->max_latency = latency; > - /* > -

[PATCH 0/6] crypto/ionic: introduce AMD Pensando ionic crypto driver

2024-04-19 Thread Andrew Boyer
This patchset introduces a new crypto PMD for AMD Pensando hardware accelerators. It allows applications running directly on the AMD Pensando DSC to offload cryptographic operations to hardware cryptographic blocks. Andrew Boyer (6): crypto/ionic: introduce AMD Pensando ionic crypto driver cry

[PATCH 1/6] crypto/ionic: introduce AMD Pensando ionic crypto driver

2024-04-19 Thread Andrew Boyer
Introduce a new crypto PMD for AMD Pensando hardware accelerators. It allows applications running directly on the AMD Pensando DSC to offload cryptographic operations to hardware cryptographic blocks. This commit adds the firmware interface definition file. Signed-off-by: Andrew Boyer --- drive

[PATCH 2/6] crypto/ionic: add device and admin command handlers

2024-04-19 Thread Andrew Boyer
This defines the handlers used for device (register-based) and admin (adminq-based) commands. Signed-off-by: Andrew Boyer --- drivers/crypto/ionic/ionic_crypto.h | 210 drivers/crypto/ionic/ionic_crypto_cmds.c | 651 +++ drivers/crypto/ionic/ionic_crypto_main.c

[PATCH 3/6] common/ionic: add crypto vdev support

2024-04-19 Thread Andrew Boyer
This adds support for cryptodevs to the common ionic library. Signed-off-by: Andrew Boyer --- drivers/common/ionic/ionic_common.h | 2 ++ drivers/common/ionic/ionic_common_uio.c | 48 - drivers/common/ionic/version.map| 1 + 3 files changed, 50 insertions(+)

[PATCH 4/6] crypto/ionic: add device object and vdev support

2024-04-19 Thread Andrew Boyer
This defines the main device object routines and the vdev support code. The vdev code uses the common library. Signed-off-by: Andrew Boyer --- drivers/crypto/ionic/ionic_crypto.h | 89 drivers/crypto/ionic/ionic_crypto_main.c | 538 +++ drivers/crypto/ionic/ionic_c

[PATCH 6/6] crypto/ionic: add documentation and connect to build

2024-04-19 Thread Andrew Boyer
Add a features list and guide for the ionic crypto PMD. Hook the new PMD up to the build. Signed-off-by: Andrew Boyer --- MAINTAINERS | 7 + doc/guides/cryptodevs/features/ionic.ini | 40 doc/guides/cryptodevs/index.rst | 1 +

[PATCH 5/6] crypto/ionic: add datapath and capabilities support

2024-04-19 Thread Andrew Boyer
This defines the main datapath and reports the device capabilities to the stack. Signed-off-by: Andrew Boyer --- drivers/crypto/ionic/ionic_crypto.h | 62 +++ drivers/crypto/ionic/ionic_crypto_caps.c | 55 ++ drivers/crypto/ionic/ionic_crypto_main.c | 417 +++- drivers/crypto/

[PATCH] net/ionic: clean up logging issues

2024-04-19 Thread Andrew Boyer
Switch to the new RTE_LOG_LINE_PREFIX logging macro. While here, fix up some trailing-newline issues reported by the new macro. Signed-off-by: Andrew Boyer --- drivers/net/ionic/ionic_dev_pci.c | 7 +++ drivers/net/ionic/ionic_lif.c | 8 drivers/net/ionic/ionic_logs.h| 14

Re: [PATCH] net/ionic: clean up logging issues

2024-04-19 Thread Stephen Hemminger
On Fri, 19 Apr 2024 13:25:56 -0700 Andrew Boyer wrote: > Switch to the new RTE_LOG_LINE_PREFIX logging macro. While here, fix up > some trailing-newline issues reported by the new macro. > > Signed-off-by: Andrew Boyer Acked-by: Stephen Hemminger

Re: [PATCH v4 3/6] latencystats: do not use floating point

2024-04-19 Thread Stephen Hemminger
On Fri, 19 Apr 2024 20:49:56 +0200 Morten Brørup wrote: > > - /* > > -* The average latency is measured using exponential moving > > -* average, i.e. using EWMA > > -* https://en.wikipedia.org/wiki/Moving_average > > -*/ > > - gl

[PATCH v4 00/45] use stdatomic API

2024-04-19 Thread Tyler Retzlaff
s series converts all non-generic built atomics to use the rte_atomic macros that allow optional enablement of standard C11 atomics. Use of generic atomics for non-scalar types are not converted in this change and will be evaluated as a part of a separate series. Note if this series ends up requi

[PATCH v4 02/45] net/ixgbe: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/ixgbe/ixgbe_ethdev.c | 14 -- drivers/net/ixgbe/ixgbe_ethdev.h | 2 +- drivers/net/ixgbe/ix

[PATCH v4 01/45] net/mlx5: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/mlx5/linux/mlx5_ethdev_os.c | 6 +- drivers/net/mlx5/linux/mlx5_verbs.c | 9 ++- drivers/net/mlx

[PATCH v4 04/45] net/ice: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/ice/base/ice_osdep.h | 4 ++-- drivers/net/ice/ice_dcf.c| 6 +++--- drivers/net/ice/ice_dcf.h

[PATCH v4 03/45] net/iavf: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/iavf/iavf.h | 16 drivers/net/iavf/iavf_rxtx.c | 4 ++-- driver

[PATCH v4 05/45] net/i40e: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/i40e/i40e_ethdev.c| 4 ++-- drivers/net/i40e/i40e_rxtx.c | 6 +++--- drivers/net/i40e/i

[PATCH v4 06/45] net/hns3: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/hns3/hns3_cmd.c | 18 ++-- drivers/net/hns3/hns3_dcb.c | 2 +- drivers/net/hns3/hns

[PATCH v4 07/45] net/bnxt: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/bnxt/bnxt_cpr.h | 4 ++-- drivers/net/bnxt/bnxt_rxq.h | 2 +- drivers/net/bnxt/bnx

[PATCH v4 08/45] net/cpfl: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/cpfl/cpfl_ethdev.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/drivers/n

[PATCH v4 10/45] net/octeon_ep: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/octeon_ep/cnxk_ep_rx.h| 5 +++-- drivers/net/octeon_ep/cnxk_ep_tx.c| 5 +++-- drivers/net/octeon

[PATCH v4 09/45] net/af_xdp: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/af_xdp/rte_eth_af_xdp.c | 20 +++- 1 file changed, 11 insertions(+), 9 deletions(-) dif

[PATCH v4 11/45] net/octeontx: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/octeontx/octeontx_ethdev.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/d

[PATCH v4 12/45] net/cxgbe: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/cxgbe/clip_tbl.c | 12 ++-- drivers/net/cxgbe/clip_tbl.h | 2 +- drivers/net/cxgbe/cxgbe_ma

[PATCH v4 13/45] net/gve: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/gve/base/gve_osdep.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net

[PATCH v4 14/45] net/memif: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/memif/memif.h | 4 ++-- drivers/net/memif/rte_eth_memif.c | 50 +++-

[PATCH v4 15/45] net/thunderx: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/thunderx/nicvf_rxtx.c | 9 + drivers/net/thunderx/nicvf_struct.h | 4 ++-- 2 files changed, 7

[PATCH v4 16/45] net/virtio: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/virtio/virtio_ring.h | 4 +-- drivers/net/virtio/virtio_user/virtio_user_dev.c | 12 +++

[PATCH v4 17/45] net/hinic: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/hinic/hinic_pmd_rx.c | 2 +- drivers/net/hinic/hinic_pmd_rx.h | 2 +- 2 files changed, 2 insertions(+),

[PATCH v4 18/45] net/idpf: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/idpf/idpf_ethdev.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/ne

[PATCH v4 19/45] net/qede: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/qede/base/bcm_osal.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/n

[PATCH v4 20/45] net/ring: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/ring/rte_eth_ring.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/

[PATCH v4 21/45] vdpa/mlx5: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/vdpa/mlx5/mlx5_vdpa.c | 24 +- drivers/vdpa/mlx5/mlx5_vdpa.h | 14 +-

[PATCH v4 22/45] raw/ifpga: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/raw/ifpga/ifpga_rawdev.c | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/driver

[PATCH v4 23/45] event/opdl: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/event/opdl/opdl_ring.c | 80 +- 1 file changed, 40 insertions(+), 40

[PATCH v4 25/45] event/dsw: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger Reviewed-by: Mattias Rönnblom --- drivers/event/dsw/dsw_evdev.h | 6 +++--- drivers/event/dsw/dsw_event.c | 47 +

[PATCH v4 24/45] event/octeontx: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/event/octeontx/timvf_evdev.h | 8 drivers/event/octeontx/timvf_worker.h | 36 +---

[PATCH v4 26/45] dma/skeleton: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/dma/skeleton/skeleton_dmadev.c | 5 +++-- drivers/dma/skeleton/skeleton_dmadev.h | 2 +- 2 files changed, 4

[PATCH v4 27/45] crypto/octeontx: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/crypto/octeontx/otx_cryptodev_ops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/

[PATCH v4 28/45] common/mlx5: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/common/mlx5/linux/mlx5_nl.c | 5 +-- drivers/common/mlx5/mlx5_common.h | 2 +- drivers/common/ml

[PATCH v4 29/45] common/idpf: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/common/idpf/idpf_common_device.h | 6 +++--- drivers/common/idpf/idpf_common_rxtx.c| 14 ++

[PATCH v4 30/45] common/iavf: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/common/iavf/iavf_impl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/comm

[PATCH v4 31/45] baseband/acc: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/baseband/acc/rte_acc100_pmd.c | 36 +-- drivers/baseband/acc/rte_vrb_pmd.c| 46 +

[PATCH v4 32/45] net/txgbe: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/txgbe/txgbe_ethdev.c| 12 +++- drivers/net/txgbe/txgbe_ethdev.h| 2 +- drivers/net/txgb

[PATCH v4 33/45] net/null: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/net/null/rte_eth_null.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dri

[PATCH v4 34/45] event/dlb2: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/event/dlb2/dlb2.c| 34 +- drivers/event/dlb2/dlb2_priv.h | 13

[PATCH v4 35/45] dma/idxd: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/dma/idxd/idxd_internal.h | 2 +- drivers/dma/idxd/idxd_pci.c | 9 + 2 files changed, 6 insertio

[PATCH v4 38/45] bus/vmbus: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/bus/vmbus/rte_vmbus_reg.h | 2 +- drivers/bus/vmbus/vmbus_channel.c | 8 2 files changed, 5 inserti

[PATCH v4 36/45] crypto/ccp: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/crypto/ccp/ccp_dev.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/cry

[PATCH v4 37/45] common/cpt: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- drivers/common/cpt/cpt_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/common/c

[PATCH v4 39/45] examples: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- examples/bbdev_app/main.c | 13 + examples/l2fwd-event/l2fwd_common.h

[PATCH v4 40/45] app/dumpcap: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- app/dumpcap/main.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/dumpcap/main

[PATCH v4 42/45] app/test-eventdev: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- app/test-eventdev/test_order_atq.c| 4 ++-- app/test-eventdev/test_order_common.c | 5 +++-- app/test-eventdev/t

[PATCH v4 41/45] app/test: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- app/test/test_bpf.c| 46 - app/test/test_distributor.c| 114 +++

[PATCH v4 43/45] app/test-crypto-perf: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- app/test-crypto-perf/cperf_test_latency.c| 6 +++--- app/test-crypto-perf/cperf_test_pmd_cyclecount.c | 10

[PATCH v4 45/45] app/test-bbdev: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- app/test-bbdev/test_bbdev_perf.c | 183 +++ 1 file changed, 110 insertions(+), 7

[PATCH v4 44/45] app/test-compress-perf: use rte stdatomic API

2024-04-19 Thread Tyler Retzlaff
Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional rte stdatomic API. Signed-off-by: Tyler Retzlaff Acked-by: Stephen Hemminger --- app/test-compress-perf/comp_perf_test_common.h | 2 +- app/test-compress-perf/comp_perf_test_cyclecount.c | 4

[RFC] fix semicolon at the end of RTE_LOG_REGISTER_DEFAULT

2024-04-19 Thread Stephen Hemminger
The macro RTE_LOG_REGISTER_DEFAULT emits code for an initialization function. If a driver (and most do) adds a semicolon after the macro. RTE_LOG_REGISTER_DEFAULT(logtype_foo, INFO); Is equivalent to: int logtype_foo; static void __logtype_foo(void) { logtype_foo = rt

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

2024-04-19 Thread Jiawen Wu
On Friday, April 19, 2024 8:12 AM, ferruh.yi...@amd.com wrote: > On 4/9/2024 7:31 AM, Jiawen Wu wrote: > > Add SSE/NEON vector instructions for TXGBE and NGBE driver to process > > packets. > > > > v2: > > - Add performance test results. > > - Cleanup codes and rebase. > > - Remove GCC "-Wcast-qual

Re: [PATCH v2] app/testpmd: fix lcore ID restriction

2024-04-19 Thread Ferruh Yigit
On 4/16/2024 10:55 AM, Sivaprasad Tummala wrote: > With modern CPUs, it is possible to have higher > CPU count thus we can have higher RTE_MAX_LCORES. > In testpmd application, the current config forwarding > cores option "--nb-cores" is hard limited to 255. > > The patch fixes this constraint and

Re: [PATCH v2] net/vmxnet3: fix a missing vmxnet3 register command

2024-04-19 Thread Ferruh Yigit
On 4/18/2024 7:36 AM, Ronak Doshi wrote: > Vmxnet3 uses capability registers to advertise the supported > capabilities of UPT device. It uses DCR0_REG command register > for this purpose. However, the register command enum misses > one command which technically is not used by dpdk vmxnet3 > driver

[PATCH v1] dts: rename execution to test run

2024-04-19 Thread Juraj Linkeš
The configuration containing the combination of: 1. what testbed to use, 2. which tests to run, 3. and what build targets to test is called an execution. This is confusing since we're using the exact same term to describe other things and execution does not really capture that well the three items

[PATCH v3 0/2] Wangxun support vector Rx/Tx

2024-04-19 Thread Jiawen Wu
Add SSE/NEON vector instructions for TXGBE and NGBE driver to process packets. v3: - Update release note. - Use spaces instead of tab in meson.build. v2: - Add performance test results. - Cleanup codes and rebase. - Remove GCC "-Wcast-qual". Jiawen Wu (2): net/txgbe: add vectorized functions f

[PATCH v3 1/2] net/txgbe: add vectorized functions for Rx/Tx

2024-04-19 Thread Jiawen Wu
To optimize Rx/Tx burst process, add SSE/NEON vector instructions on x86/arm architecture. The performance test results on Phytium D2000(ARM64) show that, throughput for 64-byte packets increased from 64.844% to 73.984%. Signed-off-by: Jiawen Wu --- doc/guides/rel_notes/release_24_07.rst|

[PATCH v3 2/2] net/ngbe: add vectorized functions for Rx/Tx

2024-04-19 Thread Jiawen Wu
To optimize Rx/Tx burst process, add SSE/NEON vector instructions on x86/arm architecture. The performance test results on Phytium D2000(ARM64) show that, throughput for 128-byte packets increased from 76.797% to 94.375%. Signed-off-by: Jiawen Wu --- doc/guides/rel_notes/release_24_07.rst |