[PATCH] ethdev: fix 32-bit build with GCC-13

2023-11-01 Thread Ruifeng Wang
aarch32 build with gcc-13.0.1 generated following warning: In function 'memcpy', inlined from 'rte_memcpy' at ../lib/eal/arm/include/rte_memcpy_32.h:296:9, inlined from 'rte_flow_conv_action_conf' at ../lib/ethdev/rte_flow.c:726:20, inlined from 'rte_flow_conv_actions' at ../lib/ethdev

[PATCH] eal: stop iteration after lcore info is processed

2023-11-01 Thread Ruifeng Wang
Telemetry iterates on lcore ID to collect info of a specific lcore. Since only one lcore is processed at a time, the iteration can stop when a matching lcore is found. Fixes: f2b852d909f9 ("eal: add lcore info in telemetry") Cc: rja...@redhat.com Cc: sta...@dpdk.org Signed-off-by: Ruifeng Wang -

[Bug 1108] net/i40e completely ignores flow rule transfer attribute prio to 22.11-rc1

2023-11-01 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1108 dengkaiwen (kaiwenx.d...@intel.com) changed: What|Removed |Added Status|CONFIRMED |RESOLVED CC

[Bug 1109] net/ice completely ignores flow rule transfer attribute prio to 22.11-rc1

2023-11-01 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1109 dengkaiwen (kaiwenx.d...@intel.com) changed: What|Removed |Added CC||kaiwenx.d...@intel.com

[PATCH] net/enic: avoid extra unlock when setting MTU in enic

2023-11-01 Thread Weiguo Li
The 'set_mtu_done' goto statement is being executed in a context where the 'mtu_lock' has not been previously locked. To avoid the extra unlocking operation, replace the goto statement with a return statement. Fixes: c3e09182bcd6 ("net/enic: support scatter Rx in MTU update") Cc: sta...@dpdk.org

RE: [PATCH v3 0/3] add pointer compression API

2023-11-01 Thread Morten Brørup
> From: Paul Szczepanek [mailto:paul.szczepa...@arm.com] > Sent: Tuesday, 31 October 2023 19.11 [...] > Test is added that shows potential performance gain from compression. > In > this test an array of pointers is passed through a ring between two > cores. > It shows the gain which is dependent

[PATCH v8 03/10] ethdev: support setting and querying RSS algorithm

2023-11-01 Thread Jie Hai
Currently, rte_eth_rss_conf supports configuring and querying RSS hash functions, rss key and it's length, but not RSS hash algorithm. The structure ``rte_eth_dev_info`` is extended by adding a new field "rss_algo_capa". Drivers are responsible for reporting this capa and configurations of RSS has

[PATCH v8 00/10] support setting and querying RSS algorithms

2023-11-01 Thread Jie Hai
This patchset is to support setting and querying RSS algorithms. For this purpose, field "rss_algo_capa" is added to ``rte_eth_dev_info`` and field "algorithm" is added to ``rte_eth_rss_conf``. The drivers should reports their "rss_algo_capa" if they support updating RSS algorithms. Otherwise, the

[PATCH v8 04/10] net/hns3: report RSS hash algorithms capability

2023-11-01 Thread Jie Hai
The hns3 driver should reports RSS hash algorithm capability to support updating RSS hash algorithm by rte_eth_dev_rss_hash_update() or rte_eth_dev_configure(). Signed-off-by: Jie Hai Acked-by: Huisong Li --- drivers/net/hns3/hns3_common.c | 4 1 file changed, 4 insertions(+) diff --git a

[PATCH v8 02/10] lib/ethdev: check RSS key length

2023-11-01 Thread Jie Hai
In rte_eth_dev_rss_hash_conf_get(), the "rss_key_len" should be greater than or equal to the "hash_key_size" which get from rte_eth_dev_info_get() API. And the "rss_key" should contain at least "hash_key_size" bytes. If these requirements are not met, the query unreliable. In rte_eth_dev_rss_hash_

[PATCH v8 05/10] net/hns3: support setting and querying RSS hash function

2023-11-01 Thread Jie Hai
From: Huisong Li Support setting and querying RSS hash function by ethdev ops. Signed-off-by: Huisong Li Signed-off-by: Dongdong Liu Signed-off-by: Jie Hai Acked-by: Chengwen Feng --- drivers/net/hns3/hns3_rss.c | 47 + 1 file changed, 27 insertions(+), 2

[PATCH v8 07/10] app/proc-info: adjust the display format of RSS info

2023-11-01 Thread Jie Hai
This patch splits the length and value of RSS key into two parts, removes spaces between RSS keys, and adds line breaks between RSS key and RSS hf. Before the adjustment, RSS info is shown as: - RSS -- RSS len 40 key (hex): 6d 5a 56 da 25 5b e c2 41 67 \ 25 3d 43 a3 8f b0

[PATCH v8 06/10] app/proc-info: fix never show RSS info

2023-11-01 Thread Jie Hai
Command show-port should show RSS info (rss_key, len and rss_hf), However, the information is shown only when rss_conf.rss_key is not NULL. Since no memory is allocated for rss_conf.rss_key, rss_key will always be NULL and the rss_info will never show. This patch fixes it. Fixes: 8a37f37fc243 ("ap

[PATCH v8 08/10] ethdev: add API to get RSS algorithm names

2023-11-01 Thread Jie Hai
This patch adds new API rte_eth_dev_rss_algo_name() to get name of a RSS algorithm and document it. Signed-off-by: Jie Hai Acked-by: Huisong Li --- doc/guides/rel_notes/release_23_11.rst | 4 lib/ethdev/rte_ethdev.c| 25 + lib/ethdev/rte_ethdev.h

[PATCH v8 09/10] app/proc-info: support querying RSS hash algorithm

2023-11-01 Thread Jie Hai
Display RSS hash algorithm with command show-port as below. - RSS info -- hash algorithm : toeplitz Signed-off-by: Jie Hai Signed-off-by: Dongdong Liu Acked-by: Reshma Pattan --- app/proc-info/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/proc-info/main.c b/app/p

[PATCH v8 01/10] ethdev: overwrite some comment related to RSS

2023-11-01 Thread Jie Hai
1. overwrite the comments of fields of 'rte_eth_rss_conf'. 2. Add comments for RTE_ETH_HASH_FUNCTION_DEFAULT. Signed-off-by: Jie Hai --- lib/ethdev/rte_ethdev.h | 34 +++--- lib/ethdev/rte_flow.h | 1 + 2 files changed, 20 insertions(+), 15 deletions(-) diff --git

[PATCH v8 10/10] app/testpmd: add RSS hash algorithms display

2023-11-01 Thread Jie Hai
Add the command "show port X rss-hash algorithm" to display the RSS hash algorithms of port X. An example is shown: testpmd> show port 0 rss-hash algorithm RSS algorithm: toeplitz Signed-off-by: Jie Hai Acked-by: Huisong Li --- app/test-pmd/cmdline.c | 29 - app/t

RE: [PATCH v2] net/iavf: fix coredump when exiting testpmd

2023-11-01 Thread Lu, Wenzhuo
Hi Kaiwen, > -Original Message- > From: Kaiwen Deng > Sent: Wednesday, November 1, 2023 9:35 AM > To: dev@dpdk.org > Cc: sta...@dpdk.org; Yang, Qiming ; Zhou, YidingX > ; Deng, KaiwenX ; Wu, > Jingjing ; Xing, Beilei ; Zeng, > ZhichaoX > Subject: [PATCH v2] net/iavf: fix coredump when ex

RE: [PATCH] ethdev: fix 32-bit build with GCC-13

2023-11-01 Thread Ori Kam
Hi > -Original Message- > From: Ruifeng Wang > Sent: Wednesday, November 1, 2023 9:16 AM > > aarch32 build with gcc-13.0.1 generated following warning: > > In function 'memcpy', > inlined from 'rte_memcpy' at > ../lib/eal/arm/include/rte_memcpy_32.h:296:9, > inlined from 'rte_fl

RE: [PATCH v2] common/mlx5: Optimize mlx5 mempool get extmem

2023-11-01 Thread Slava Ovsiienko
Hi, Thank you for this optimizing patch. My concern is this line: > + heap = malloc(mp->size * sizeof(struct mlx5_range)); The pool size can be huge and it might cause the large memory allocation (on host CPU side). What is the reason causing "hours" of registering? Reallocs per each pool e

RE: [PATCH v2] crypto/qat: add sm2 ecdsa

2023-11-01 Thread Power, Ciara
Hi Arek, > -Original Message- > From: Kusztal, ArkadiuszX > Sent: Tuesday, October 31, 2023 9:27 PM > To: dev@dpdk.org > Cc: gak...@marvell.com; Ji, Kai ; Power, Ciara > ; Kusztal, ArkadiuszX > > Subject: [PATCH v2] crypto/qat: add sm2 ecdsa > > Added SM2 ECDSA feature to the Intel Quic

RE: [PATCH v2] net/iavf: fix coredump when exiting testpmd

2023-11-01 Thread Deng, KaiwenX
> -Original Message- > From: Lu, Wenzhuo > Sent: Wednesday, November 1, 2023 3:53 PM > To: Deng, KaiwenX ; dev@dpdk.org > Cc: sta...@dpdk.org; Yang, Qiming ; Zhou, YidingX > ; Deng, KaiwenX ; Wu, > Jingjing ; Xing, Beilei ; Zeng, > ZhichaoX > Subject: RE: [PATCH v2] net/iavf: fix cored

Re: [PATCH v8 00/10] support setting and querying RSS algorithms

2023-11-01 Thread fengchengwen
LGTM Series-acked-by: Chengwen Feng On 2023/11/1 15:40, Jie Hai wrote: > This patchset is to support setting and querying RSS algorithms. > For this purpose, field "rss_algo_capa" is added to ``rte_eth_dev_info`` > and field "algorithm" is added to ``rte_eth_rss_conf``. > The drivers should repo

Re: [PATCH v8 02/10] lib/ethdev: check RSS key length

2023-11-01 Thread lihuisong (C)
在 2023/11/1 15:40, Jie Hai 写道: In rte_eth_dev_rss_hash_conf_get(), the "rss_key_len" should be greater than or equal to the "hash_key_size" which get from rte_eth_dev_info_get() API. And the "rss_key" should contain at least "hash_key_size" bytes. If these requirements are not met, the query un

Re: [PATCH v8 09/10] app/proc-info: support querying RSS hash algorithm

2023-11-01 Thread lihuisong (C)
lgtm, Acked-by: Huisong Li 在 2023/11/1 15:40, Jie Hai 写道: Display RSS hash algorithm with command show-port as below. - RSS info -- hash algorithm : toeplitz Signed-off-by: Jie Hai Signed-off-by: Dongdong Liu Acked-by: Reshma Pattan --- app/proc-info/main.c | 2 ++ 1 file ch

Re: [PATCH v8 01/10] ethdev: overwrite some comment related to RSS

2023-11-01 Thread lihuisong (C)
lgtm, Acked-by: Huisong Li 在 2023/11/1 15:40, Jie Hai 写道: 1. overwrite the comments of fields of 'rte_eth_rss_conf'. 2. Add comments for RTE_ETH_HASH_FUNCTION_DEFAULT. Signed-off-by: Jie Hai --- lib/ethdev/rte_ethdev.h | 34 +++--- lib/ethdev/rte_flow.h | 1 +

[PATCH] test/dma: fix for buffer auto free

2023-11-01 Thread Amit Prakash Shukla
Buffer auto free test failed for more than 1 dma device as the device initialization for the test was been done only for the first dma device. This changeset fixes the same. Fixes: 877cb3e37426 ("dmadev: add buffer auto free offload") Signed-off-by: Amit Prakash Shukla --- app/test/test_dmadev.

[PATCH v3] net/ice: fix crash on closing representor ports

2023-11-01 Thread Mingjin Ye
The data resource in struct rte_eth_dev is cleared and points to NULL when the DCF port is closed. If the DCF representor port is closed after the DCF port is closed, a segmentation fault occurs because the representor port accesses the data resource released by the DCF port. This patch checks if

RE: [PATCH v3] net/ice: fix crash on closing representor ports

2023-11-01 Thread Zhang, Qi Z
> -Original Message- > From: Ye, MingjinX > Sent: Wednesday, November 1, 2023 6:14 PM > To: dev@dpdk.org > Cc: Yang, Qiming ; Zhou, YidingX > ; Ye, MingjinX ; > sta...@dpdk.org; Zhang, Qi Z > Subject: [PATCH v3] net/ice: fix crash on closing representor ports > > The data resource in

RE: [PATCH v2] net/iavf: fix coredump when exiting testpmd

2023-11-01 Thread Zhang, Qi Z
> -Original Message- > From: Kaiwen Deng > Sent: Wednesday, November 1, 2023 9:35 AM > To: dev@dpdk.org > Cc: sta...@dpdk.org; Yang, Qiming ; Zhou, YidingX > ; Deng, KaiwenX ; Wu, > Jingjing ; Xing, Beilei ; Zeng, > ZhichaoX > Subject: [PATCH v2] net/iavf: fix coredump when exiting tes

Re: [PATCH v2] doc: update matching list for i40e and ice driver

2023-11-01 Thread Kevin Traynor
On 11/11/2022 05:27, Qiming Yang wrote: Add recommended matching list for ice PMD in DPDK 22.07 and i40e PMD in DPDK 22.07 and 22.11. Signed-off-by: Qiming Yang --- doc/guides/nics/i40e.rst | 8 doc/guides/nics/ice.rst | 2 ++ 2 files changed, 10 insertions(+) diff --git a/doc/gu

Re: [PATCH] net/nfp: reduce space reserved for layer 2 overhead

2023-11-01 Thread Ferruh Yigit
On 10/28/2023 7:26 AM, Chaoyong He wrote: > From: James Hershaw > > Reduce the space reserved for layer 2 overhead by defining > NFP_ETH_OVERHEAD. > > Previously, the overhead was not explicitly defined, only the > NFP_FRAME_SIZE_MAX value and the maximum layer 3 MTU was read from > hardware, wh

[PATCH v4 0/4] add pointer compression API

2023-11-01 Thread Paul Szczepanek
This patchset is proposing adding a new EAL header with utility functions that allow compression of arrays of pointers. When passing caches full of pointers between threads, memory containing the pointers is copied multiple times which is especially costly between cores. A compression method will

[PATCH v4 2/4] test: add pointer compress tests to ring perf test

2023-11-01 Thread Paul Szczepanek
Add a test that runs a zero copy burst enqueue and dequeue on a ring of raw pointers and compressed pointers at different burst sizes to showcase performance benefits of newly added pointer compression APIs. Refactored threading code to pass more parameters to threads to reuse existing code. Added

[PATCH v4 4/4] test: add unit test for ptr compression

2023-11-01 Thread Paul Szczepanek
Test compresses and decompresses pointers with various combinations of memory regions and alignments and verifies the pointers are recovered correctly. Signed-off-by: Paul Szczepanek --- app/test/meson.build | 1 + app/test/test_eal_ptr_compress.c | 108

[PATCH v4 1/4] eal: add pointer compression functions

2023-11-01 Thread Paul Szczepanek
Add a new utility header for compressing pointers. The provided functions can store pointers in 32-bit offsets. The compression takes advantage of the fact that pointers are usually located in a limited memory region (like a mempool). We can compress them by converting them to offsets from a base

[PATCH v4 3/4] docs: add pointer compression to the EAL guide

2023-11-01 Thread Paul Szczepanek
Documentation added in the EAL guide for the new utility functions for pointer compression showing example code and potential usecases Signed-off-by: Paul Szczepanek Reviewed-by: Honnappa Nagarahalli --- .../prog_guide/env_abstraction_layer.rst | 142 ++ 1 file changed, 142

Re: [PATCH v3 0/3] add pointer compression API

2023-11-01 Thread Paul Szczepanek
On 01/11/2023 07:42, Morten Brørup wrote: From: Paul Szczepanek [mailto:paul.szczepa...@arm.com] Sent: Tuesday, 31 October 2023 19.11 [...] In a more realistic mock application running the l3 forwarding dpdk example that works in pipeline mode this translated into a ~5% throughput increase on

Re: [PATCH v7 1/9] ethdev: overwrite some comment related to RSS

2023-11-01 Thread Ferruh Yigit
On 10/28/2023 3:41 AM, lihuisong (C) wrote: > > 在 2023/10/28 9:46, Jie Hai 写道: >> 1. overwrite the comments of fields of 'rte_eth_rss_conf'. >> 2. Add comments for RTE_ETH_HASH_FUNCTION_DEFAULT. >> >> Signed-off-by: Jie Hai >> --- >>   lib/ethdev/rte_ethdev.h | 33 ++--

Re: [PATCH v7 2/9] ethdev: support setting and querying RSS algorithm

2023-11-01 Thread Ferruh Yigit
On 10/28/2023 4:01 AM, lihuisong (C) wrote: > With belows to changes, > Acked-by: Huisong Li > > > 在 2023/10/28 9:46, Jie Hai 写道: >> Currently, rte_eth_rss_conf supports configuring and querying >> RSS hash functions, rss key and it's length, but not RSS hash >> algorithm. >> >> The structure ``

Re: [PATCH v3] config/arm: update aarch32 build with gcc13

2023-11-01 Thread Paul Szczepanek
On 25/10/2023 13:57, Juraj Linkeš wrote: The aarch32 with gcc13 fails with: Compiler for C supports arguments -march=armv8-a: NO ../config/arm/meson.build:714:12: ERROR: Problem encountered: No suitable armv8 march version found. This is because we test -march=armv8-a alone (without the -mpf

Re: [PATCH v8 01/10] ethdev: overwrite some comment related to RSS

2023-11-01 Thread Ferruh Yigit
On 11/1/2023 7:40 AM, Jie Hai wrote: > 1. overwrite the comments of fields of 'rte_eth_rss_conf'. > 2. Add comments for RTE_ETH_HASH_FUNCTION_DEFAULT. > > Signed-off-by: Jie Hai > --- > lib/ethdev/rte_ethdev.h | 34 +++--- > lib/ethdev/rte_flow.h | 1 + > 2 files c

Re: [PATCH v8 02/10] lib/ethdev: check RSS key length

2023-11-01 Thread Ferruh Yigit
On 11/1/2023 7:40 AM, Jie Hai wrote: > In rte_eth_dev_rss_hash_conf_get(), the "rss_key_len" should be > greater than or equal to the "hash_key_size" which get from > rte_eth_dev_info_get() API. And the "rss_key" should contain at > least "hash_key_size" bytes. If these requirements are not met, >

Re: [PATCH v8 03/10] ethdev: support setting and querying RSS algorithm

2023-11-01 Thread Ferruh Yigit
On 11/1/2023 7:40 AM, Jie Hai wrote: > Currently, rte_eth_rss_conf supports configuring and querying > RSS hash functions, rss key and it's length, but not RSS hash > algorithm. > > The structure ``rte_eth_dev_info`` is extended by adding a new > field "rss_algo_capa". Drivers are responsible for

Re: [PATCH v8 10/10] app/testpmd: add RSS hash algorithms display

2023-11-01 Thread Ferruh Yigit
On 11/1/2023 7:40 AM, Jie Hai wrote: > Add the command "show port X rss-hash algorithm" to display > the RSS hash algorithms of port X. An example is shown: > > testpmd> show port 0 rss-hash algorithm > RSS algorithm: > toeplitz > > Signed-off-by: Jie Hai > Acked-by: Huisong Li > --- > app/t

RE: [PATCH] test/dma: fix for buffer auto free

2023-11-01 Thread Hemant Agrawal
> diff --git a/app/test/test_dmadev.c b/app/test/test_dmadev.c index > 216f84b6bb..3d4cb37ee6 100644 > --- a/app/test/test_dmadev.c > +++ b/app/test/test_dmadev.c > @@ -49,6 +49,8 @@ struct dma_add_test dma_add_test[] = { > [TEST_M2D_AUTO_FREE] = {.name = "m2d_auto_free", .enabled = > false},

[PATCH] net/mlx5: replenish MPRQ buffers for miniCQEs

2023-11-01 Thread Alexander Kozyrev
Keep unzipping if the next CQE is the miniCQE array in rxq_cq_decompress_v() routine only for non-MPRQ scenario, MPRQ requires buffer replenishment between the miniCQEs. Restore the check for the initial compressed CQE for SPRQ and check that the current CQE is not compressed before copying it as

[PATCH v2] net/mlx5: replenish MPRQ buffers for miniCQEs

2023-11-01 Thread Alexander Kozyrev
Keep unzipping if the next CQE is the miniCQE array in rxq_cq_decompress_v() routine only for non-MPRQ scenario, MPRQ requires buffer replenishment between the miniCQEs. Restore the check for the initial compressed CQE for SPRQ and check that the current CQE is not compressed before copying it as

Re: [PATCH v2] net/bonding: fix illegal memory accesses

2023-11-01 Thread Ferruh Yigit
On 11/1/2023 2:19 AM, Chaoyong He wrote: > From: Long Wu > > CI found that overrunning array of 32 2-byte elements at > element index 65535 (byte offset 131071) by dereferencing > pointer "members + agg_new_idx". > > Coverity issue: 403099 > Fixes: 6d72657 ("net/bonding: add other aggregator mod

Re: [PATCH v3 0/3] introduce maximum Rx buffer size

2023-11-01 Thread Stephen Hemminger
On Wed, 1 Nov 2023 10:36:07 +0800 "lihuisong (C)" wrote: > > Do we need to report this size? It's a common feature for all PMDs. > > It would make sense then to have max_rx_bufsize set to 16K by default > > in ethdev, and PMD could then raise/lower based on hardware. > It is not appropriate t

[PATCH] maintainers: update for mempool library

2023-11-01 Thread Morten Brørup
Add co-maintainer for Memory pool. Suggested-by: Thomas Monjalon Signed-off-by: Morten Brørup --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index 4083658697..8a4e9f0a9e 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -379,6 +379,7 @@ T: git://dpdk.o

Re: [PATCH] maintainers: update for mempool library

2023-11-01 Thread Andrew Rybchenko
On November 1, 2023 19:20:29 Morten Brørup wrote: Add co-maintainer for Memory pool. Suggested-by: Thomas Monjalon Signed-off-by: Morten Brørup Acked-by: Andrew Rybchenko --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index 4083658697..8a4

Re: [PATCH v2 1/2] net/txgbe: add proper memory barriers in Rx

2023-11-01 Thread Ferruh Yigit
On 11/1/2023 3:32 AM, Jiawen Wu wrote: > Refer to commit 85e46c532bc7 ("net/ixgbe: add proper memory barriers in > Rx"). Fix the same issue as ixgbe. > > Segmentation fault has been observed while running the > txgbe_recv_pkts_lro() function to receive packets on the Loongson 3A5000 > processor. I

Re: [PATCH] ethdev: fix 32-bit build with GCC-13

2023-11-01 Thread Ferruh Yigit
On 11/1/2023 8:12 AM, Ori Kam wrote: > Hi > >> -Original Message- >> From: Ruifeng Wang >> Sent: Wednesday, November 1, 2023 9:16 AM >> >> aarch32 build with gcc-13.0.1 generated following warning: >> >> In function 'memcpy', >> inlined from 'rte_memcpy' at >> ../lib/eal/arm/include/r

Re: [PATCH] net/nfp: fix offload flags of the security capabilities

2023-11-01 Thread Ferruh Yigit
On 10/28/2023 7:31 AM, Chaoyong He wrote: > From: Shihong Wang > > This patch resolves configuration error of ol_flags in the > rte_security_capability. Currently ol_flags in the ingress direction > of the SA, 'RTE_SECURITY_TX_OLOAD_NEED_MDATA' is configured. In fact, > ol_flags only in the egres

Re: [PATCH v2 04/11] net/nfp: remove the unneeded data abstraction

2023-11-01 Thread Ferruh Yigit
On 10/28/2023 7:53 AM, Chaoyong He wrote: > The data structure 'struct nfp_net_adapter' has only one data field and > we won't extend it in the future, which makes this abstraction unneeded, > so remove this data structure and the related macro > 'NFP_NET_DEV_PRIVATE_TO_HW'. > Mentioned abstract

[PATCH v6 0/3] net/tap: build and fix for BPF program

2023-11-01 Thread Stephen Hemminger
Update the documentation and tools to build the BPF program used by tap device. And apply fix to the RSS algorithm to correctly handle non-IP protocols. v6 - cosmetic improvements to extract process add better boilerplate and fix python lint warnings Madhuker Mythri (1): net/tap: Fixed RSS

[PATCH v6 1/3] net/tap: support infrastructure to build the BPF filter

2023-11-01 Thread Stephen Hemminger
Move the BPF program related code into a subdirectory. And add a Makefile for building it. The code depends on include files from iproute2. But these are not public headers which iproute2 exports as a package API. Therefore make a local copy here. The standalone build was also broken because by c

[PATCH v6 2/3] net/tap: Fixed RSS algorithm to support fragmented packets

2023-11-01 Thread Stephen Hemminger
From: Madhuker Mythri As per analysis on Tap PMD, the existing RSS algorithm considering 4-tuple(Src-IP, Dst-IP, Src-port and Dst-port) and identification of fragment packets is not done, thus we are seeing all the fragmented chunks of single packet differs in RSS hash value and distributed acros

[PATCH v6 3/3] net/tap; rebuild and update the BPF flow program

2023-11-01 Thread Stephen Hemminger
Rebuild with commit c0335cc197 (tap; rebuild and update the BPF flow program, 2023-10-31) Signed-off-by: Stephen Hemminger --- drivers/net/tap/tap_bpf_insns.h | 2959 --- 1 file changed, 1503 insertions(+), 1456 deletions(-) diff --git a/drivers/net/tap/tap_bpf_insns

[PATCH v5 0/4] add pointer compression API

2023-11-01 Thread Paul Szczepanek
This patchset is proposing adding a new EAL header with utility functions that allow compression of arrays of pointers. When passing caches full of pointers between threads, memory containing the pointers is copied multiple times which is especially costly between cores. A compression method will

[PATCH v5 1/4] eal: add pointer compression functions

2023-11-01 Thread Paul Szczepanek
Add a new utility header for compressing pointers. The provided functions can store pointers in 32-bit offsets. The compression takes advantage of the fact that pointers are usually located in a limited memory region (like a mempool). We can compress them by converting them to offsets from a base

[PATCH v5 3/4] docs: add pointer compression to the EAL guide

2023-11-01 Thread Paul Szczepanek
Documentation added in the EAL guide for the new utility functions for pointer compression showing example code and potential usecases. Signed-off-by: Paul Szczepanek Reviewed-by: Honnappa Nagarahalli --- .../prog_guide/env_abstraction_layer.rst | 142 ++ 1 file changed, 14

[PATCH v5 2/4] test: add pointer compress tests to ring perf test

2023-11-01 Thread Paul Szczepanek
Add a test that runs a zero copy burst enqueue and dequeue on a ring of raw pointers and compressed pointers at different burst sizes to showcase performance benefits of newly added pointer compression APIs. Refactored threading code to pass more parameters to threads to reuse existing code. Added

[PATCH v5 4/4] test: add unit test for ptr compression

2023-11-01 Thread Paul Szczepanek
Test compresses and decompresses pointers with various combinations of memory regions and alignments and verifies the pointers are recovered correctly. Signed-off-by: Paul Szczepanek --- app/test/meson.build | 1 + app/test/test_eal_ptr_compress.c | 108

Re: [PATCH] eal: stop iteration after lcore info is processed

2023-11-01 Thread Stephen Hemminger
On Wed, 1 Nov 2023 15:20:53 +0800 Ruifeng Wang wrote: > From: Ruifeng Wang > To: Kevin Laatz , Robin Jarry , > Morten Brørup > Cc: dev@dpdk.org, honnappa.nagaraha...@arm.com, n...@arm.com, Ruifeng Wang > , sta...@dpdk.org > Subject: [PATCH] eal: stop iteration after lcore info is processed

Re: [PATCH v2 00/11] Clean up NFP PMD

2023-11-01 Thread Ferruh Yigit
On 10/28/2023 7:53 AM, Chaoyong He wrote: > This patch series clean up the NFP PMD, by: > - Using the DPDK macro and API to replace the user defined ones. > - Remove the unneeded macro and logic. > - Remove the duplicated logic. > > --- > v2: > * Fix the compile error. > * Fix one check script war

RE: [PATCH v3] event/dlb2: fix disable PASID for kernel 6.2

2023-11-01 Thread Sevincer, Abdullah
>++ PCIe maintainers. >+I will leave this up to @David Marchand / @Thomas as this patch has common >code changes and needs to come via main tree. >+Also in this case, The comment was given very early(Back in June 7) for the >same. >+https://patches.dpdk.org/project/dpdk/patch/20230607210050.1

Re: [PATCH] net/enic: avoid extra unlock when setting MTU in enic

2023-11-01 Thread Ferruh Yigit
On 11/1/2023 7:28 AM, Weiguo Li wrote: > The 'set_mtu_done' goto statement is being executed in a context > where the 'mtu_lock' has not been previously locked. > > To avoid the extra unlocking operation, replace the goto statement > with a return statement. > > Fixes: c3e09182bcd6 ("net/enic: su

Re: [PATCH 0/6] net/hns3: add some bugfix for hns3

2023-11-01 Thread Ferruh Yigit
On 10/31/2023 12:23 PM, Jie Hai wrote: > This patchset contains some bugfix for hns3 pmd. > > Huisong Li (2): > net/hns3: fix setting DCB capability > net/hns3: fix LRO offload to report > > Jie Hai (4): > net/hns3: fix return value > net/hns3: fix some error log > net/hns3: do not expo

[PATCH] eal: add missing extension to statement expression

2023-11-01 Thread Tyler Retzlaff
add missing __extension__ keyword to RTE_ALIGN_MUL_NEAR statement expression to be consistent with other macros using statement expressions Signed-off-by: Tyler Retzlaff --- lib/eal/include/rte_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/eal/include/rte_commo

[PATCH] eal: provide trace point register macro for MSVC

2023-11-01 Thread Tyler Retzlaff
Provide an alternate RTE_TRACE_POINT_REGISTER macro when building with MSVC that allocates segments for the trace point using MSVC specific features Signed-off-by: Tyler Retzlaff --- lib/eal/include/rte_trace_point_register.h | 14 ++ 1 file changed, 14 insertions(+) diff --git a/li

Re: [PATCH v3 0/2] ethdev: add the check for PTP capability

2023-11-01 Thread Ferruh Yigit
On 10/20/2023 4:58 AM, lihuisong (C) wrote: > > 在 2023/9/21 19:17, Hemant Agrawal 写道: >> HI Ferruh, >> >>> On 9/21/2023 11:02 AM, lihuisong (C) wrote: Hi Ferruh, Sorry for my delay reply because of taking a look at all PMDs implementation. 在 2023/9/16 1:46, Ferru

Re: [PATCH v3 0/2] ethdev: add the check for PTP capability

2023-11-01 Thread Ferruh Yigit
On 9/21/2023 12:17 PM, Hemant Agrawal wrote: > HI Ferruh, > >> On 9/21/2023 11:02 AM, lihuisong (C) wrote: >>> Hi Ferruh, >>> >>> Sorry for my delay reply because of taking a look at all PMDs >>> implementation. >>> >>> >>> 在 2023/9/16 1:46, Ferruh Yigit 写道: On 8/17/2023 9:42 AM, Huisong Li w

Re: [PATCH v3 0/2] ethdev: add the check for PTP capability

2023-11-01 Thread Ferruh Yigit
timesync_read_rx_timestamp On 9/21/2023 12:59 PM, lihuisong (C) wrote: > add ice & igc maintainers > > 在 2023/9/21 19:06, Ferruh Yigit 写道: >> On 9/21/2023 11:02 AM, lihuisong (C) wrote: >>> Hi Ferruh, >>> >>> Sorry for my delay reply because of taking a look at all PMDs >>> implementation. >>> >>>

[PATCH 1/5] table: use abstracted bit count functions

2023-11-01 Thread Tyler Retzlaff
Use rte_clz64 instead of __builtin_clzl Use rte_ctz64 instead of __builtin_ctzl Fixes: 18898c4d06f9 ("eal: use abstracted bit count functions") Signed-off-by: Tyler Retzlaff --- lib/table/rte_lru_arm64.h | 2 +- lib/table/rte_swx_table_em.c | 4 ++-- lib/table/rte_table_hash_ext.c | 4 ++

[PATCH 2/5] distributor: use abstracted bit count functions

2023-11-01 Thread Tyler Retzlaff
Use rte_ctz64 instead of __builtin_ctzl Fixes: 18898c4d06f9 ("eal: use abstracted bit count functions") Signed-off-by: Tyler Retzlaff --- lib/distributor/rte_distributor_single.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/distributor/rte_distributor_single.c b/lib/

[PATCH 0/5] use abstracted bit count functions

2023-11-01 Thread Tyler Retzlaff
The first set of conversions missed the long 'l' versions of the builtins that were being used. This series completes the conversion of remaining libraries from __builtin_ctzl and __builtin_clzl. Tyler Retzlaff (5): table: use abstracted bit count functions distributor: use abstracted bit coun

[PATCH 3/5] hash: use abstracted bit count functions

2023-11-01 Thread Tyler Retzlaff
Use rte_ctz64 instead of __builtin_ctzl Fixes: 18898c4d06f9 ("eal: use abstracted bit count functions") Signed-off-by: Tyler Retzlaff --- lib/hash/rte_cuckoo_hash.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/hash/rte_cuckoo_hash.c b/lib/hash/rte_cuc

[PATCH 5/5] rcu: use abstracted bit count functions

2023-11-01 Thread Tyler Retzlaff
Use rte_ctz64 instead of __builtin_ctzl Fixes: 18898c4d06f9 ("eal: use abstracted bit count functions") Signed-off-by: Tyler Retzlaff --- lib/rcu/rte_rcu_qsbr.c | 4 ++-- lib/rcu/rte_rcu_qsbr.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/rcu/rte_rcu_qsbr.c b/lib/r

[PATCH 4/5] member: use abstracted bit count functions

2023-11-01 Thread Tyler Retzlaff
Use rte_ctz64 instead of __builtin_ctzl Fixes: 18898c4d06f9 ("eal: use abstracted bit count functions") Signed-off-by: Tyler Retzlaff --- lib/member/rte_member_vbf.c | 12 ++-- lib/member/rte_member_x86.h | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/me

Re: [PATCH v3 1/3] net/tap: fix L4 checksum offloading

2023-11-01 Thread Ferruh Yigit
On 8/24/2023 8:18 AM, David Marchand wrote: > The L4 checksum offloading API does not require l4_len to be set. > Make the driver discover the L4 headers size by itself. > > Fixes: 6546e76056e3 ("net/tap: calculate checksums of multi segs packets") > Cc: sta...@dpdk.org > > Signed-off-by: David M

RE: [PATCH v2 04/11] net/nfp: remove the unneeded data abstraction

2023-11-01 Thread Chaoyong He
> On 10/28/2023 7:53 AM, Chaoyong He wrote: > > The data structure 'struct nfp_net_adapter' has only one data field > > and we won't extend it in the future, which makes this abstraction > > unneeded, so remove this data structure and the related macro > > 'NFP_NET_DEV_PRIVATE_TO_HW'. > > > > Ment

Re: [PATCH] net/enic: avoid extra unlock when setting MTU in enic

2023-11-01 Thread John Daley (johndale)
Reviewed-by: John Daley Thanks, John From: Weiguo Li Date: Wednesday, November 1, 2023 at 12:28 AM To: John Daley (johndale) Cc: dev@dpdk.org , sta...@dpdk.org , Weiguo Li Subject: [PATCH] net/enic: avoid extra unlock when setting MTU in enic The 'set_mtu_done' goto statement is being execut

[PATCH v2] net/ice: fix DCF port statistics not cleared

2023-11-01 Thread Zhichao Zeng
Call 'ice_dcf_stats_reset' during the initialization of the DCF port in order to clear any statistics that may exist from the last use of the DCF and to avoid statistics errors. Fixes: 7564d5509611 ("net/ice: add DCF hardware initialization") Cc: sta...@dpdk.org Signed-off-by: Zhichao Zeng ---

[PATCH] net/ice: fix Tx Prepareation

2023-11-01 Thread Qi Zhang
1. Check nb_segs > 8 for NO TSO case 2. Check nb_segs > Tx ring size for TSO case 3. report nb_mtu_seg_max and nb_seg_max in dev_info. Fixes: 17c7d0f9d6a4 ("net/ice: support basic Rx/Tx") Cc: sta...@dpdk.org Signed-off-by: Qi Zhang --- drivers/net/ice/ice_ethdev.c | 2 ++ drivers/net/ice/ice_r

Re: [PATCH v3 0/3] introduce maximum Rx buffer size

2023-11-01 Thread lihuisong (C)
在 2023/11/2 0:08, Stephen Hemminger 写道: On Wed, 1 Nov 2023 10:36:07 +0800 "lihuisong (C)" wrote: Do we need to report this size? It's a common feature for all PMDs. It would make sense then to have max_rx_bufsize set to 16K by default in ethdev, and PMD could then raise/lower based on hardwa

Re: [PATCH] test/dma: fix for buffer auto free

2023-11-01 Thread fengchengwen
Hi Amit, I prefer not use static variable to control it because it introduce many coupling. Suggest add one function which prepare the test_m2d_auto_free, like prepare_m2d_auto_free if ((info.dev_capa & RTE_DMA_CAPA_M2D_AUTO_FREE) && dma_add_test[TEST_M2D_AUTO_FREE].ena

Re: [PATCH 3/3] GSG Section 2: Install and Build DPDK - Updated based on feedback

2023-11-01 Thread Tyler Retzlaff
On Tue, Oct 31, 2023 at 08:49:28PM -0400, David Young wrote: > Merged windows_install_build.rst into building_from_sources.rst [...] > -Download the DPDK source code from the official repository > -``https://fast.dpdk.org/rel/``. > +Windows System Requirements > +^^^ >

[PATCH 00/11] Add the support of multiple PF

2023-11-01 Thread Chaoyong He
Up to now, the NFP card using only one PF (or BDF) for multiple physical ports, this force the PMD import the difference logic for 'PF' and 'physical port'. Which is not easy to understand and also not compatible with some DPDK applications. This patch series add the support of multiple PF, which w

[PATCH 01/11] net/nfp: refactor the probe logic of the secondary process

2023-11-01 Thread Chaoyong He
The probe logic of the secondary process of PF PMD now is not very similarly with the logic of the primary process, which cause we need two different logics when we add new feature in some case. Refactor the probe logic of the secondary process to solve this problem. Signed-off-by: Chaoyong He S

[PATCH 02/11] net/nfp: fix the failure to initialize the LSC mask

2023-11-01 Thread Chaoyong He
From: Peng Zhang In rare cases, when DPDK application exit, the interrupt handler was not processed the interrupt in time, resulting in the LSC interrupt mask bit not being cleared. So when the DPDK application start again, the newly coming LSC interrupts cannot be received and processed properly

[PATCH 03/11] net/nfp: fix the DMA error caused by app exit abnormally

2023-11-01 Thread Chaoyong He
From: Shihong Wang When DPDK application exit abnormally, there might have DMA error, and which will cause the load of firmware failed. Fix this by force the physical port down to clear the possible DMA error. Fixes: 896c265ef954 ("net/nfp: use new CPP interface") Cc: sta...@dpdk.org Signed-of

[PATCH 04/11] net/nfp: add flag to indicate multiple PFs support

2023-11-01 Thread Chaoyong He
From: Peng Zhang Support for multiple PFs have been added to the NFP3800 firmware. This can be detected by reading the NSP major version, which was bumped to 1 when support was added. Add a flag and detecting method to record if the current device is cabable to support multiple PFs. This will be

[PATCH 05/11] net/nfp: add major version to nsp commands

2023-11-01 Thread Chaoyong He
From: Peng Zhang The commands sent to the NSP take the NSP major version into account. Up until now only NSP major version 0 have been supported and the value have been hard-coded to 0. In preparation to add support for both NSP version 0.x and 1.x, extend the command to take the running NSP ver

[PATCH 06/11] net/nfp: adjust physical port check for multiple PFs

2023-11-01 Thread Chaoyong He
From: Peng Zhang If the firmware supports multiple PFs each PF is represented by a single physical port. While if the firmware only supports a single PF there might be one or more physical ports represented by a single PF. Adjust the check to handle both single and multiple PFs firmware. Signed

[PATCH 07/11] net/nfp: add the check about the firmware load

2023-11-01 Thread Chaoyong He
From: Peng Zhang When firmware load failed, it doesn't have any notice. So add the check about the firmware load and add an exit point when the firmware load process fail. Signed-off-by: Peng Zhang Reviewed-by: Chaoyong He Reviewed-by: Long Wu --- drivers/net/nfp/nfp_ethdev.c | 7 ++- 1

[PATCH 08/11] net/nfp: add PF ID used to format symbols

2023-11-01 Thread Chaoyong He
From: Peng Zhang In single PF scenario, the format symbols just is related with PF ID 0. In multiple PF scenario, the format symbols should be related with PF ID. So this commit adds the PF ID used to format symbols. Signed-off-by: Peng Zhang Reviewed-by: Chaoyong He Reviewed-by: Long Wu ---

[PATCH 09/11] net/nfp: add nsp command to check if firmware is loaded

2023-11-01 Thread Chaoyong He
From: Peng Zhang Add a NSP command to check if any firmware have been loaded. Signed-off-by: Peng Zhang Reviewed-by: Chaoyong He Reviewed-by: Long Wu --- drivers/net/nfp/nfpcore/nfp_nsp.c | 6 ++ drivers/net/nfp/nfpcore/nfp_nsp.h | 1 + 2 files changed, 7 insertions(+) diff --git a/driv

[PATCH 10/11] net/nfp: introduce keepalive mechanism for multiple PF

2023-11-01 Thread Chaoyong He
From: Peng Zhang In multiple PF scenario, management firmware is in charge of application firmware unloading instead of driver by keepalive mechanism. A new NSP resource area is allocated for keepalive use with name "nfp.beat". Driver sets periodically updates the PFs' corresponding word in "nfp

  1   2   >