[PATCH v2] common/idpf: refactor single queue Tx function

2023-09-04 Thread Simei Su
This patch replaces flex Tx descriptor with base Tx descriptor to align with kernel driver practice. Signed-off-by: Simei Su --- v2: * Refine commit title and commit log. * Remove redundant definition. * Modify base mode context TSO descriptor. drivers/common/idpf/idpf_common_rxtx.c| 76

Re: [PATCH v2 1/5] ethdev: support setting and querying RSS algorithm

2023-09-04 Thread Jie Hai
Hi, Thomas Thanks for your review. On 2023/8/30 19:46, Thomas Monjalon wrote: Hello, Thanks for bringing a new capability. 26/08/2023 09: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 st

[PATCH v1] net/memif: fix segfault with large burst size

2023-09-04 Thread Joyce Kong
There will be a segfault when Rx burst size is greater than MAX_PKT_BURST of memif. Fix the issue by correcting the wrong mbuf index in eth_memif_rx, which results in accessing invalid memory address. Bugzilla ID: 1273 Fixes: aa17df860891 ("net/memif: add a Rx fast path") Cc: sta...@dpdk.org Sign

[PATCH 3/5] app/proc-info: fix never show RSS info

2023-09-04 Thread Jie Hai
Command show-port should show RSS info (rss_key, len and rss_hf), However, the information is showned 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 allocates memory for rss_conf.rss

[PATCH 5/5] app/proc-info: support querying RSS hash algorithm

2023-09-04 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 --- app/proc-info/main.c | 19 +++ 1 file changed, 19 insertions(+) diff --git a/app/proc-info/main.c b/app/proc-in

[PATCH 2/5] net/hns3: support setting and querying RSS hash function

2023-09-04 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 --- drivers/net/hns3/hns3_rss.c | 47 + 1 file changed, 27 insertions(+), 20 deletions(-) diff --git a/drivers/net/hns3/hns

[PATCH 4/5] app/proc-info: adjust the display format of RSS info

2023-09-04 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 0/5] support setting and querying RSS algorithms

2023-09-04 Thread Jie Hai
This patchset is to support setting and querying RSS algorithms. -- v3: 1. fix commit log for PATCH [1/5]. 2. make RSS ABI changes description to start the actual text at the margin. 3. move defnition of enum rte_eth_hash_function to rte_ethdev.h. 4. fix some comment codes. v2: 1. return error if

[PATCH 1/5] ethdev: support setting and querying RSS algorithm

2023-09-04 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_rss_conf`` is extended by adding a new field "func". This represents the RSS algorithms to apply. The following API will be affected:

Re: [PATCH v3 0/5] support setting and querying RSS algorithms

2023-09-04 Thread Jie Hai
Hi, ALL Sorry, please drop this patchset. Here is V3 https://inbox.dpdk.org/dev/20230904072851.7384-1-haij...@huawei.com/ Thanks, Jie Hai On 2023/9/4 14:10, Jie Hai wrote: This patchset is to support setting and querying RSS algorithms. -- v3: 1. fix commit log for PATCH [1/5]. 2. make RSS AB

Re: [PATCH v2 1/5] ethdev: support setting and querying RSS algorithm

2023-09-04 Thread Thomas Monjalon
04/09/2023 09:10, Jie Hai: > On 2023/8/30 19:46, Thomas Monjalon wrote: > > 26/08/2023 09:46, Jie Hai: >> + * The *func* field of the *rss_conf* structure indicates the hash >> algorithm > >> + * applied by the RSS hashing. Passing RTE_ETH_HASH_FUNCTION_DEFAULT > >> allows > >> + * the PMD to u

Re: DPDK community: RTE_FLOW support for P4-programmable devices

2023-09-04 Thread Ferruh Yigit
On 9/1/2023 10:52 AM, Jerin Jacob wrote: > On Fri, Sep 1, 2023 at 12:27 PM Ori Kam wrote: >> >> >> >>> -Original Message- >>> From: Jerin Jacob >>> Sent: Friday, September 1, 2023 5:07 AM >>> >>> On Thu, Aug 31, 2023 at 4:02 PM Ori Kam wrote: Hi >>> >>> >>> 3. Everybody

RE: [PATCH v11 2/4] net/i40e: implement mbufs recycle mode

2023-09-04 Thread Konstantin Ananyev
Hi Feifei, > > > > > > Define specific function implementation for i40e driver. > > > > > > Currently, mbufs recycle mode can support 128bit vector path and > > > > > > avx2 > > > > path. > > > > > > And can be enabled both in fast free and no fast free mode. > > > > > > > > > > > > Suggested-by

Re: [PATCH v2 3/4] net/iavf: fix restart of Rx queue on reconfigure

2023-09-04 Thread Bruce Richardson
On Mon, Sep 04, 2023 at 02:30:32AM +0100, Zhang, Qi Z wrote: > > > > -Original Message- > > From: Zhang, Qi Z > > Sent: Monday, September 4, 2023 9:15 AM > > To: Bruce Richardson ; dev@dpdk.org > > Cc: Richardson, Bruce ; Wu, Jingjing > > ; sta...@dpdk.org > > Subject: RE: [PATCH v2 3/4]

[PATCH v2] eal: fix memory initialization deadlock

2023-09-04 Thread Artemy Kovalyov
The issue arose due to the change in the DPDK read-write lock implementation. That change added a new flag, RTE_RWLOCK_WAIT, designed to prevent new read locks while a write lock is in the queue. However, this change has led to a scenario where a recursive read lock, where a lock is acquired twice

[PATCH] clarify purpose of empty cache lines

2023-09-04 Thread Morten Brørup
This patch introduces the generic RTE_CACHE_GUARD macro into the EAL, and replaces vaguely described empty cache lines in the rte_ring structure with this macro. Although the implementation of the rte_ring structure assumes that the hardware speculatively prefetches 1 cache line, this number can b

[PATCH] mempool: add cache guard to per-lcore debug statistics

2023-09-04 Thread Morten Brørup
The per-lcore debug statistics, if enabled, are frequently written by their individual lcores, so add a cache guard to prevent CPU cache thrashing. Depends-on: series-29415 ("clarify purpose of empty cache lines") Signed-off-by: Morten Brørup --- lib/mempool/rte_mempool.h | 1 + 1 file changed,

Re: [PATCH] clarify purpose of empty cache lines

2023-09-04 Thread Bruce Richardson
On Mon, Sep 04, 2023 at 10:43:49AM +0200, Morten Brørup wrote: > This patch introduces the generic RTE_CACHE_GUARD macro into the EAL, and > replaces vaguely described empty cache lines in the rte_ring structure > with this macro. > > Although the implementation of the rte_ring structure assumes t

RE: [PATCH v11 2/4] net/i40e: implement mbufs recycle mode

2023-09-04 Thread Feifei Wang
> -Original Message- > From: Konstantin Ananyev > Sent: Monday, September 4, 2023 3:50 PM > To: Feifei Wang ; Konstantin Ananyev > > Cc: dev@dpdk.org; nd ; Honnappa Nagarahalli > ; Ruifeng Wang > ; Yuying Zhang ; Beilei > Xing ; nd ; nd ; nd > > Subject: RE: [PATCH v11 2/4] net/i40e:

[PATCH] eal: add cache guard to per-lcore PRNG state

2023-09-04 Thread Morten Brørup
The per-lcore random state is frequently updated by their individual lcores, so add a cache guard to prevent CPU cache thrashing. Depends-on: series-29415 ("clarify purpose of empty cache lines") Signed-off-by: Morten Brørup --- lib/eal/common/rte_random.c | 1 + 1 file changed, 1 insertion(+)

ring name size

2023-09-04 Thread Thomas Monjalon
Hello, When creating a ring, we need to know the maximum length of the name. It seems this value is not documented. And there is no constant defined. There is only RTE_MEMZONE_NAMESIZE. Should we document the maximum length as 31 and add a constant? #define RTE_RING_NAME_SIZE RTE_MEMZONE_NAMESIZE

Re: 22.11.3 patches review and test

2023-09-04 Thread Kevin Traynor
On 01/09/2023 04:23, Zeng, ZhichaoX wrote: -Original Message- From: Kevin Traynor Sent: Thursday, August 31, 2023 8:18 PM To: Xu, HailinX ; Xueming Li ; sta...@dpdk.org; Wu, Jingjing ; Xing, Beilei ; Xu, Ke1 ; Zeng, ZhichaoX ; Zhang, Qi Z Cc: xuemi...@nvdia.com; dev@dpdk.org; Stokes, Ia

RE: ring name size

2023-09-04 Thread Morten Brørup
> From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Monday, 4 September 2023 11.31 > > Hello, > > When creating a ring, we need to know the maximum length of the name. > It seems this value is not documented. > And there is no constant defined. It is defined (with a description) here: h

Re: [PATCH] usertools: suggest use of hwloc for new cpu

2023-09-04 Thread Ferruh Yigit
On 8/14/2023 10:25 AM, Konstantin Ananyev wrote: > >> On Sun, Aug 13, 2023 at 08:52:01AM -0700, Stephen Hemminger wrote: >>> On Sun, 13 Aug 2023 02:12:03 + >>> "Varghese, Vipin" wrote: >>> > > On Sat, 12 Aug 2023 06:27:20 +0530 > Vipin Varghese wrote: > >> Most modern pro

RE: [RFC] lib/st_ring: add single thread ring

2023-09-04 Thread Konstantin Ananyev
> Add a single thread safe and multi-thread unsafe ring data structure. > This library provides an simple and efficient alternative to multi-thread > safe ring when multi-thread safety is not required. Just a thought: do we really need whole new library for that? >From what I understand all we

Re: [PATCH] usertools: suggest use of hwloc for new cpu

2023-09-04 Thread Bruce Richardson
On Mon, Sep 04, 2023 at 11:11:20AM +0100, Ferruh Yigit wrote: > On 8/14/2023 10:25 AM, Konstantin Ananyev wrote: > > > >> On Sun, Aug 13, 2023 at 08:52:01AM -0700, Stephen Hemminger wrote: > >>> On Sun, 13 Aug 2023 02:12:03 + > >>> "Varghese, Vipin" wrote: > >>> > > > > On Sat, 12 Aug

RE: [PATCH v11 2/4] net/i40e: implement mbufs recycle mode

2023-09-04 Thread Konstantin Ananyev
> > > > > > > > Define specific function implementation for i40e driver. > > > > > > > > Currently, mbufs recycle mode can support 128bit vector path > > > > > > > > and > > > > > > > > avx2 > > > > > > path. > > > > > > > > And can be enabled both in fast free and no fast free mode. > > > > > >

[dpdk-dev] [PATCH 1/2] common/cnxk: limit RSS key config with RTE Flow operations

2023-09-04 Thread psatheesh
From: Kiran Kumar K Limit the configuring RSS key with RTE Flow operations for cnxk device. Key can be update only with dev operations using rte_eth_dev_rss_hash_update. Signed-off-by: Kiran Kumar K Reviewed-by: Jerin Jacob --- drivers/common/cnxk/roc_npc.c | 33 ++

[dpdk-dev] [PATCH 2/2] drivers: add represented port flow item for cnxk

2023-09-04 Thread psatheesh
From: Kiran Kumar K Adding support for represented port flow item for cnxk device. Signed-off-by: Kiran Kumar K Reviewed-by: Satheesh Paul --- doc/guides/nics/features/cnxk.ini| 1 + doc/guides/nics/features/cnxk_vf.ini | 1 + drivers/common/cnxk/roc_npc.c| 59 ---

Re: [PATCH] eal: add cache guard to per-lcore PRNG state

2023-09-04 Thread Mattias Rönnblom
On 2023-09-04 11:26, Morten Brørup wrote: The per-lcore random state is frequently updated by their individual lcores, so add a cache guard to prevent CPU cache thrashing. "to prevent false sharing in case the CPU employs a next-N-lines (or similar) hardware prefetcher" In my world, cache t

Re: [RFC] cache guard

2023-09-04 Thread Mattias Rönnblom
On 2023-09-01 20:52, Morten Brørup wrote: From: Mattias Rönnblom [mailto:hof...@lysator.liu.se] Sent: Friday, 1 September 2023 18.58 On 2023-09-01 14:26, Thomas Monjalon wrote: 27/08/2023 10:34, Morten Brørup: +CC Honnappa and Konstantin, Ring lib maintainers +CC Mattias, PRNG lib maintainer

RE: [RFC] cache guard

2023-09-04 Thread Morten Brørup
> From: Mattias Rönnblom [mailto:hof...@lysator.liu.se] > Sent: Monday, 4 September 2023 14.07 > > On 2023-09-01 20:52, Morten Brørup wrote: > >> From: Mattias Rönnblom [mailto:hof...@lysator.liu.se] > >> Sent: Friday, 1 September 2023 18.58 > >> > >> On 2023-09-01 14:26, Thomas Monjalon wrote: >

Re: ring name size

2023-09-04 Thread Thomas Monjalon
04/09/2023 11:33, Morten Brørup: > > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > Sent: Monday, 4 September 2023 11.31 > > > > Hello, > > > > When creating a ring, we need to know the maximum length of the name. > > It seems this value is not documented. > > And there is no constant def

[PATCH v3 0/3] Add dispatcher library

2023-09-04 Thread Mattias Rönnblom
The purpose of the dispatcher library is to decouple different parts of an eventdev-based application (e.g., processing pipeline stages), sharing the same underlying event device. The dispatcher replaces the conditional logic (often, a switch statement) that typically follows an event device deque

[PATCH v3 1/3] lib: introduce dispatcher library

2023-09-04 Thread Mattias Rönnblom
The purpose of the dispatcher library is to help reduce coupling in an Eventdev-based DPDK application. In addition, the dispatcher also provides a convenient and flexible way for the application to use service cores for application-level processing. Signed-off-by: Mattias Rönnblom Tested-by: Pe

[PATCH v3 2/3] test: add dispatcher test suite

2023-09-04 Thread Mattias Rönnblom
Add unit tests for the dispatcher. -- PATCH v3: o Adapt the test suite to dispatcher API name changes. PATCH v2: o Test finalize callback functionality. o Test handler and finalizer count upper limits. o Add statistics reset test. o Make sure dispatcher supply the proper event dev id and por

[PATCH v3 3/3] doc: add dispatcher programming guide

2023-09-04 Thread Mattias Rönnblom
Provide programming guide for the dispatcher library. Signed-off-by: Mattias Rönnblom -- PATCH v3: o Adapt guide to the dispatcher API name changes. PATCH: o Improve grammar and spelling. RFC v4: o Extend event matching section of the programming guide. o Improve grammar and spelling. ---

Re: [PATCH] usertools: suggest use of hwloc for new cpu

2023-09-04 Thread Thomas Monjalon
04/09/2023 12:20, Bruce Richardson: > On Mon, Sep 04, 2023 at 11:11:20AM +0100, Ferruh Yigit wrote: > > On 8/14/2023 10:25 AM, Konstantin Ananyev wrote: > > > > > >> On Sun, Aug 13, 2023 at 08:52:01AM -0700, Stephen Hemminger wrote: > > >>> On Sun, 13 Aug 2023 02:12:03 + > > >>> "Varghese, Vip

Re: [PATCH 1/2] build: fail if explicitly requested lib is unbuildable

2023-09-04 Thread David Marchand
On Fri, Sep 1, 2023 at 4:44 PM Bruce Richardson wrote: > > On Fri, Sep 01, 2023 at 04:30:56PM +0200, David Marchand wrote: > > On Fri, Sep 1, 2023 at 4:29 PM David Marchand > > wrote: > > > > > > On Fri, Sep 1, 2023 at 4:23 PM Bruce Richardson > > > wrote: > > > > > > > > When the user passes a

[PATCH v1] examples/l3fwd: relax the RSS/Offload requirement

2023-09-04 Thread Trevor Tao
Now the port Rx mq_mode had been set to RTE_ETH_MQ_RX_RSS, and offload mode set to RTE_ETH_RX_OFFLOAD_CHECKSUM by default, but some hardware and/or virtual interface does not support the RSS and offload mode presupposed, e.g., some virtio interfaces in the cloud don't support RSS and may only partl

[PATCH] net/iavf: unregister intr handler before FD close

2023-09-04 Thread Saurabh Singhal
Unregister VFIO interrupt handler before the interrupt fd gets closed in case iavf_dev_init() returns an error. dpdk creates a standalone thread named eal-intr-thread for processing interrupts for the PCI devices. The interrupt handler callbacks are registered by the VF driver(iavf, in this case).

Re: 22.11.3 patches review and test

2023-09-04 Thread Kevin Traynor
On 04/09/2023 10:32, Kevin Traynor wrote: On 01/09/2023 04:23, Zeng, ZhichaoX wrote: -Original Message- From: Kevin Traynor Sent: Thursday, August 31, 2023 8:18 PM To: Xu, HailinX ; Xueming Li ; sta...@dpdk.org; Wu, Jingjing ; Xing, Beilei ; Xu, Ke1 ; Zeng, ZhichaoX ; Zhang, Qi Z Cc: x

[PATCH] malloc: fix allocation for a specific case with ASAN

2023-09-04 Thread Artur Paszkiewicz
Allocation would fail with ASAN enabled if the size and alignment was equal to half of the page size, e.g.: size_t pg_sz = 2 * (1 << 20); rte_malloc(NULL, pg_sz / 2, pg_sz / 2); In such case, try_expand_heap_primary() only allocated one page but it is not enough to fit this allocation with such a

Re: [PATCH v4] bus/pci: fix legacy device IO port map in secondary process

2023-09-04 Thread Gupta, Nipun
On 8/30/2023 10:37 AM, Wenwu Ma wrote: When doing IO port mapping for legacy device in secondary process, the region information is missing, so, we need to refill it. Fixes: 4b741542ecde ("bus/pci: avoid depending on private kernel value") Cc: sta...@dpdk.org Signed-off-by: Wenwu Ma Acked

Re: [PATCH 2/2] event/sw: fix ordering corruption with op release

2023-09-04 Thread Bruce Richardson
On Thu, Aug 31, 2023 at 05:47:36PM +0100, Harry van Haaren wrote: > This commit changes the logic in the scheduler to always > reset reorder-buffer entries in the QE_FLAG_COMPLETE path, > and not just the QE_FLAG_VALID path. > > A release event is a COMPLETE but not VALID (no new event). > As a re

RE: [RFC] lib/st_ring: add single thread ring

2023-09-04 Thread Honnappa Nagarahalli
> -Original Message- > From: Konstantin Ananyev > Sent: Monday, September 4, 2023 5:13 AM > To: Honnappa Nagarahalli ; > jack...@nvidia.com; konstantin.v.anan...@yandex.ru > Cc: dev@dpdk.org; Ruifeng Wang ; Aditya > Ambadipudi ; Wathsala Wathawana Vithanage > ; nd > Subject: RE: [RFC]

Re: quick thread in DLB2

2023-09-04 Thread Sevincer, Abdullah
Hi Thomas, That's right we need to create threads on specific CPUs. From: Thomas Monjalon Sent: Friday, September 1, 2023 7:09 AM To: Sevincer, Abdullah Cc: dev@dpdk.org ; Tyler Retzlaff Subject: quick thread in DLB2 Hello Abdullah, In the DLB2 code, I see a t

RE: [PATCH v2 3/4] net/iavf: fix restart of Rx queue on reconfigure

2023-09-04 Thread Zhang, Qi Z
> -Original Message- > From: Richardson, Bruce > Sent: Monday, September 4, 2023 3:54 PM > To: Zhang, Qi Z > Cc: dev@dpdk.org; Wu, Jingjing ; sta...@dpdk.org > Subject: Re: [PATCH v2 3/4] net/iavf: fix restart of Rx queue on reconfigure > > On Mon, Sep 04, 2023 at 02:30:32AM +0100, Zha

RE: 22.11.3 patches review and test

2023-09-04 Thread Zeng, ZhichaoX
Regards Zhichao > -Original Message- > From: Kevin Traynor > Sent: Monday, September 4, 2023 10:15 PM > To: Zeng, ZhichaoX ; Xu, HailinX > ; Xueming Li ; > sta...@dpdk.org; Wu, Jingjing ; Xing, Beilei > ; Xu, Ke1 ; Zhang, Qi Z > > Cc: xuemi...@nvdia.com; dev@dpdk.org; Stokes, Ian ; > Mc

RE: [PATCH v2 4/4] net/iavf: add support for runtime queue reconfiguration

2023-09-04 Thread Zhang, Qi Z
> -Original Message- > From: Bruce Richardson > Sent: Thursday, August 31, 2023 8:34 PM > To: dev@dpdk.org > Cc: Richardson, Bruce > Subject: [PATCH v2 4/4] net/iavf: add support for runtime queue > reconfiguration > > Unlike the i40e driver, the iavf driver does not advertise support

RE: [PATCH v4] bus/pci: fix legacy device IO port map in secondary process

2023-09-04 Thread Ling, WeiX
> -Original Message- > From: Ma, WenwuX > Sent: Wednesday, August 30, 2023 1:07 PM > To: nipun.gu...@amd.com; dev@dpdk.org > Cc: david.march...@redhat.com; maxime.coque...@redhat.com; Xia, > Chenbo ; Li, Miao ; Ling, WeiX > ; Ma, WenwuX ; > sta...@dpdk.org > Subject: [PATCH v4] bus/pci: fi

RE: [PATCH v11 2/4] net/i40e: implement mbufs recycle mode

2023-09-04 Thread Feifei Wang
> -Original Message- > From: Konstantin Ananyev > Sent: Monday, September 4, 2023 6:22 PM > To: Feifei Wang ; Konstantin Ananyev > > Cc: dev@dpdk.org; nd ; Honnappa Nagarahalli > ; Ruifeng Wang > ; Yuying Zhang ; Beilei > Xing ; nd ; nd ; nd > ; nd > Subject: RE: [PATCH v11 2/4] net/i

Recall: 22.11.3 patches review and test

2023-09-04 Thread Zeng, ZhichaoX
Zeng, ZhichaoX would like to recall the message, "22.11.3 patches review and test".

RE: 22.11.3 patches review and test

2023-09-04 Thread Zeng, ZhichaoX
> -Original Message- > From: Kevin Traynor > Sent: Monday, September 4, 2023 10:15 PM > To: Zeng, ZhichaoX ; Xu, HailinX > ; Xueming Li ; > sta...@dpdk.org; Wu, Jingjing ; Xing, Beilei > ; Xu, Ke1 ; Zhang, Qi Z > > Cc: xuemi...@nvdia.com; dev@dpdk.org; Stokes, Ian ; > Mcnamara, John ; Luc

Re: [RFC] cache guard

2023-09-04 Thread Mattias Rönnblom
On 2023-09-04 14:48, Morten Brørup wrote: From: Mattias Rönnblom [mailto:hof...@lysator.liu.se] Sent: Monday, 4 September 2023 14.07 On 2023-09-01 20:52, Morten Brørup wrote: From: Mattias Rönnblom [mailto:hof...@lysator.liu.se] Sent: Friday, 1 September 2023 18.58 On 2023-09-01 14:26, Thomas

RE: [PATCH] clarify purpose of empty cache lines

2023-09-04 Thread Morten Brørup
> From: Morten Brørup [mailto:m...@smartsharesystems.com] > Sent: Monday, 4 September 2023 10.44 > > This patch introduces the generic RTE_CACHE_GUARD macro into the EAL, and > replaces vaguely described empty cache lines in the rte_ring structure > with this macro. > > Although the implementatio