[PATCH] eal: introduce missing rte_thread wrappers

2023-11-27 Thread David Vodak
Function rte_ctrl_thread_create has been replaced by rte_thread_create_control, encouraging Linux users to switch from the pthread_t API to the rte_thread API. However the rte_thread API does not provide wrappers for all pthread functions. This commit introduces equivalent functions for pthread_tim

Re: DPDK Release Status Meeting 2023-11-23

2023-11-27 Thread Thomas Monjalon
27/11/2023 03:51, Ruifeng Wang: > On 2023/11/26 8:44 PM, Luca Boccassi wrote: > > On Sun, 26 Nov 2023 at 01:55, Ruifeng Wang wrote: > >> On 2023/11/24 4:53 PM, Mcnamara, John wrote: > >>> Release status meeting minutes 2023-11-23 > >>> * LCOREs autotest timing out on ARM: > >>> > >>> > >>> h

Re: net/virtio: duplicated xstats

2023-11-27 Thread Ferruh Yigit
On 11/24/2023 9:18 AM, Edwin Brossette wrote: > Hello, > > I noticed a small inconsistency in the virtio pmd's xstats. > The stat "rx_q0_errors" appears twice. > I also think the stats "rx_q0_packets", "rx_q0_bytes", "tx_q0_packets" > and "tx_q0_bytes" are duplicates of "rx_q0_good_packets", > "rx

Re: [PATCH] net/virtio: fix duplicated rxq xstats

2023-11-27 Thread Ferruh Yigit
On 11/24/2023 1:52 PM, edwin.brosse...@6wind.com wrote: > From: Edwin Brossette > > The flag RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS was temporarily set while > moving queue stats from 'struct rte_eth_stats' to the individual pmds, > as explained in commit f30e69b41f94 ("ethdev: add device flag to bypa

Re: net/virtio: duplicated xstats

2023-11-27 Thread Ferruh Yigit
On 11/27/2023 10:19 AM, Ferruh Yigit wrote: > On 11/24/2023 9:18 AM, Edwin Brossette wrote: >> Hello, >> >> I noticed a small inconsistency in the virtio pmd's xstats. >> The stat "rx_q0_errors" appears twice. >> I also think the stats "rx_q0_packets", "rx_q0_bytes", "tx_q0_packets" >> and "tx_q0_b

Re: [PATCH] lib/ethdev: modified the definition of 'NVGRE_ENCAP'

2023-11-27 Thread Ferruh Yigit
On 11/24/2023 1:36 PM, David Marchand wrote: > On Fri, Nov 24, 2023 at 4:31 AM Sunyang Wu wrote: >> >> Fix the issue of incorrect definition of 'NVGRE_ENCAP', and >> modified the error comments of 'rte_flow_action_nvgre_encap'. >> >> Fixes: c2beb1d ("ethdev: add missing items/actions to flow objec

Re: [PATCH] doc: clarify mirroring limitations in mlx5 guide

2023-11-27 Thread Thomas Monjalon
07/11/2023 16:10, Jiawei Wang: > Update the description of flow mirroring to make clear > what are the limitations of the mlx5 driver. > > Signed-off-by: Jiawei Wang > Acked-by: Thomas Monjalon Applied, thanks.

Re: [PATCH] doc/mlx4: set limitation for RSS

2023-11-27 Thread Thomas Monjalon
19/11/2023 14:24, Raslan Darawsheh: > This adds a limitation explanation on RSS queue usage > for MLX4 pmd. > > MLX4 pmd requires a power of two queues to do RSS > but, the user can still open more queues which can be utilized > through flow API. > > Signed-off-by: Raslan Darawsheh Applied with

Re: [PATCH v3 1/6] doc: add RSS hash algorithm feature

2023-11-27 Thread Ferruh Yigit
On 11/25/2023 1:47 AM, Huisong Li wrote: > Add hash algorithm feature introduced by 23.11 and fix some RSS features > description. > > Fixes: 34ff088cc241 ("ethdev: set and query RSS hash algorithm") > > Signed-off-by: Huisong Li > Acked-by: Chengwen Feng > --- > doc/guides/nics/features.rst |

Re: [PATCH v3 2/6] doc: add link up/down feature

2023-11-27 Thread Ferruh Yigit
On 11/25/2023 1:47 AM, Huisong Li wrote: > Add link up/down feature for features.rst. > > Fixes: 915e67837586 ("ethdev: API for link up and down") > Cc: sta...@dpdk.org > Documentation is added after feature, so above fixes line is not correct. I am not sure if this is fix, I think more like it

Re: [PATCH v3 0/6] doc/features: fix some features and add new features

2023-11-27 Thread Ferruh Yigit
On 11/25/2023 1:47 AM, Huisong Li wrote: > The support for setting RSS hash algorithm has been introduced to 23.11, > but doesn't add feature for it. So this series add this feature and perfect > RSS other features by the way. > > In addition, serval features, like "set link up/down", "TM", "dump

[PATCH v2] net/mlx5: fix jump action validation

2023-11-27 Thread Michael Baum
Currently PMD doesn't allow to jump to the same group in order to avoid dead loop. But this also prevent experienced user to create flow with less Hops in order to have better performance. For example, rules in [1] should have better performance then [2]. Furthermore, this protection will not rea

Re: [PATCH v3 1/6] doc: add RSS hash algorithm feature

2023-11-27 Thread lihuisong (C)
在 2023/11/27 20:19, Ferruh Yigit 写道: On 11/25/2023 1:47 AM, Huisong Li wrote: Add hash algorithm feature introduced by 23.11 and fix some RSS features description. Fixes: 34ff088cc241 ("ethdev: set and query RSS hash algorithm") Signed-off-by: Huisong Li Acked-by: Chengwen Feng --- doc/g

Re: [PATCH v3 2/6] doc: add link up/down feature

2023-11-27 Thread lihuisong (C)
在 2023/11/27 20:24, Ferruh Yigit 写道: On 11/25/2023 1:47 AM, Huisong Li wrote: Add link up/down feature for features.rst. Fixes: 915e67837586 ("ethdev: API for link up and down") Cc: sta...@dpdk.org Documentation is added after feature, so above fixes line is not correct. I am not sure if t

Re: [PATCH v3 0/6] doc/features: fix some features and add new features

2023-11-27 Thread lihuisong (C)
在 2023/11/27 20:35, Ferruh Yigit 写道: On 11/25/2023 1:47 AM, Huisong Li wrote: The support for setting RSS hash algorithm has been introduced to 23.11, but doesn't add feature for it. So this series add this feature and perfect RSS other features by the way. In addition, serval features, like

[PATCH 2/3] net/hns3: fix VF wrong clear reset status

2023-11-27 Thread Dengdui Huang
The function hns3_clear_reset_event is used to clear PF reset status, The VF shouldn't use it. This patch fix it. Fixes: 1eee1ea75c0e ("net/hns3: fix IMP or global reset") Cc: sta...@dpdk.org Signed-off-by: Dengdui Huang --- drivers/net/hns3/hns3_intr.c | 6 -- 1 file changed, 4 insertions

[PATCH 0/3] fix some bug for hns3

2023-11-27 Thread Dengdui Huang
Dengdui Huang (3): net/hns3: fix reset detect be ignored net/hns3: fix VF wrong clear reset status net/hns3: fix the VF reset interrupted possibly drivers/net/hns3/hns3_ethdev.c| 5 - drivers/net/hns3/hns3_ethdev.h| 12 drivers/net/hns3/hns3_ethdev_vf.c | 19 ++

[PATCH 3/3] net/hns3: fix the VF reset interrupted possibly

2023-11-27 Thread Dengdui Huang
Currently, the VF reset interrupt is enabled before the reset process is completed. If the VF reset is triggered by an IMP reset, the initialization of IMP is may not completed, and the VF reset interrupt may continue to be reported. In this scenario, the VF reset being performed by the driver does

[PATCH 1/3] net/hns3: fix reset detect be ignored

2023-11-27 Thread Dengdui Huang
The code logic that only new reset whose level is higher than old reset level will be addressed is added in hns3_detect_reset_event, see commit 5be38fc6c0fc ("net/hns3: fix multiple reset detected log"). When the new reset is detected and the old reset level is HNS3_NONE_RESET this reset will be ig

Re: [PATCH 0/3] fix some bug for hns3

2023-11-27 Thread Jie Hai
On 2023/11/27 21:39, Dengdui Huang wrote: Dengdui Huang (3): net/hns3: fix reset detect be ignored net/hns3: fix VF wrong clear reset status net/hns3: fix the VF reset interrupted possibly Hi, Dengdui, Good fix. For the patchset, Acked-by: Jie Hai Thank, Jie Hai drivers/net/hns3/

[PATCH v4 3/5] doc: add features for link speeds

2023-11-27 Thread Huisong Li
Add features for link speeds. Fixes: 82113036e4e5 ("ethdev: redesign link speed config") Cc: sta...@dpdk.org Signed-off-by: Huisong Li Acked-by: Chengwen Feng --- doc/guides/nics/features.rst | 11 +++ doc/guides/nics/features/default.ini | 1 + 2 files changed, 12 insertions(

[PATCH v4 0/5] doc/features: fix some features and add new features

2023-11-27 Thread Huisong Li
The support for setting RSS hash algorithm has been introduced to 23.11, but doesn't add feature for it. So this series add this feature to RSS hash and perfect RSS other features by the way. In addition, serval features or interface, like "set link up/down", "TM", "link speeds" and "dump device p

[PATCH v4 1/5] doc: fix the description of RSS related feature

2023-11-27 Thread Huisong Li
This patch fixes the description of RSS feature. And the settinf ot hash algorithm is introduced by 23.11, so add it. Fixes: 34ff088cc241 ("ethdev: set and query RSS hash algorithm") Signed-off-by: Huisong Li Acked-by: Chengwen Feng --- doc/guides/nics/features.rst | 18 ++ 1 f

[PATCH v4 2/5] doc: add link up/down feature

2023-11-27 Thread Huisong Li
Add link up/down feature for features.rst. Cc: sta...@dpdk.org Signed-off-by: Huisong Li Acked-by: Chengwen Feng Acked-by: Ferruh Yigit --- doc/guides/nics/features.rst | 4 1 file changed, 4 insertions(+) diff --git a/doc/guides/nics/features.rst b/doc/guides/nics/features.rst index 30

[PATCH v4 5/5] doc: add dump device private information ops

2023-11-27 Thread Huisong Li
Add dump device private information to dev ops. Cc: sta...@dpdk.org Signed-off-by: Huisong Li Acked-by: Chengwen Feng --- doc/guides/nics/features.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/guides/nics/features.rst b/doc/guides/nics/features.rst index 3d5fd36617..868cf8f6d9 10

[PATCH v4 4/5] doc: add Traffic Manager feature

2023-11-27 Thread Huisong Li
Add Traffic Manager feature. Fixes: 5d109deffa87 ("ethdev: add traffic management API") Cc: sta...@dpdk.org Signed-off-by: Huisong Li Acked-by: Chengwen Feng --- doc/guides/nics/features.rst | 13 + doc/guides/nics/features/default.ini | 1 + 2 files changed, 14 insertions

Re: [PATCH] doc: add cnxk dmadev performance tuning details

2023-11-27 Thread Thomas Monjalon
> > Updated cnxk DMA driver document to explain about performance tuning > > parameters for kernel module. > > > > Signed-off-by: Amit Prakash Shukla > Acked-by: Vamsi Krishna Attunuru Applied with some minor wording and style fixes.

Re: [PATCH v2 1/2] mempool: fix internal function documentation

2023-11-27 Thread Thomas Monjalon
06/11/2023 13:24, Andrew Rybchenko: > On 10/23/23 12:38, Ferruh Yigit wrote: > > - * - >=0: Success; number of objects supplied. > > + * - 0: Success; number of objects supplied. > > I think "number of objects supplied" does not make sense here any more. Yes, will remove on apply.

[PATCH] net/mlx5: fix index choosing in TAG modification

2023-11-27 Thread Michael Baum
When MPLS modification support was added [1], the "tag_index" field was added into "rte_flow_action_modify_data" structure. As part of this change, the "RTE_FLOW_FIELD_TAG" type moved to use it for tag array instead of using "level" field. Using "level" is still supported for backwards compatibilit

Re: [PATCH v2 2/2] mempool: clarify enqueue and dequeue ops return type

2023-11-27 Thread Thomas Monjalon
23/10/2023 11:43, Morten Brørup: > > From: Ferruh Yigit [mailto:ferruh.yi...@amd.com] > > Sent: Monday, 23 October 2023 11.39 > and dequeue ops return type > > > > API documentations doesn't clarify expected return types for enqueue and > > dequeue mempool_ops, clarifying it. > > > > Fixes: 449c4

Re: [PATCH] ethdev: fix ESP packet type description

2023-11-27 Thread Thomas Monjalon
>> The correct protocol number for ESP (IP Encapsulating Security Payload) >> packet type is 50. 51 is IPSec AH (Authentication Header). >> >> Fixes: 1e84afd3906b ("mbuf: add security crypto flags and fields") >> Signed-off-by: Alexander Kozyrev > Reviewed-by: Morten Brørup Applied, thanks

Re: [PATCH v3 1/6] doc: add RSS hash algorithm feature

2023-11-27 Thread Ferruh Yigit
On 11/27/2023 1:12 PM, lihuisong (C) wrote: > > 在 2023/11/27 20:19, Ferruh Yigit 写道: >> On 11/25/2023 1:47 AM, Huisong Li wrote: >>> Add hash algorithm feature introduced by 23.11 and fix some RSS features >>> description. >>> >>> Fixes: 34ff088cc241 ("ethdev: set and query RSS hash algorithm") >>

Re: [PATCH] doc/contributing: update test guidelines for meson changes

2023-11-27 Thread Thomas Monjalon
02/10/2023 14:44, Bruce Richardson: > With the meson test suites being reworked to be automatically generated, > rather than having to be hard-coded in the meson.build file, we need to > update our contributing guidelines to take account of this change. > > Signed-off-by: Bruce Richardson Applie

[PATCH v2] net/mlx5: fix index choosing in TAG modification

2023-11-27 Thread Michael Baum
When MPLS modification support was added [1], the "tag_index" field was added into "rte_flow_action_modify_data" structure. As part of this change, the "RTE_FLOW_FIELD_TAG" type moved to use it for tag array instead of using "level" field. Using "level" is still supported for backwards compatibilit

Re: [PATCH] doc: document basic MSVC build requirements

2023-11-27 Thread Thomas Monjalon
17/11/2023 22:19, Tyler Retzlaff: > Document the basic requirements for download and add an option > describing how to build with MSVC. > > Signed-off-by: Tyler Retzlaff Applied with few indent fixes, thanks.

Re: [PATCH v3 0/6] doc/features: fix some features and add new features

2023-11-27 Thread Ferruh Yigit
On 11/27/2023 1:37 PM, lihuisong (C) wrote: > > 在 2023/11/27 20:35, Ferruh Yigit 写道: >> On 11/25/2023 1:47 AM, Huisong Li wrote: >>> The support for setting RSS hash algorithm has been introduced to 23.11, >>> but doesn't add feature for it. So this series add this feature and >>> perfect >>> RSS

Re: [dpdk-dev] [PATCH v2] doc: define qualification criteria for external library

2023-11-27 Thread Thomas Monjalon
20/11/2023 18:46, Jerin Jacob: > On Sun, Nov 19, 2023 at 2:23 PM Morten Brørup > wrote: > > > From: Jerin Jacob [mailto:jerinjac...@gmail.com] > > > On Fri, Nov 17, 2023 at 1:57 PM Morten Brørup > > > > > From: Jerin Jacob [mailto:jerinjac...@gmail.com] > > > > > On Thu, Sep 28, 2023 at 11:10 AM

Re: [PATCH v3 1/6] doc: add RSS hash algorithm feature

2023-11-27 Thread Ferruh Yigit
On 11/27/2023 3:43 PM, Ferruh Yigit wrote: > On 11/27/2023 1:12 PM, lihuisong (C) wrote: >> >> 在 2023/11/27 20:19, Ferruh Yigit 写道: >>> On 11/25/2023 1:47 AM, Huisong Li wrote: Add hash algorithm feature introduced by 23.11 and fix some RSS features description. Fixes: 34ff088cc

Re: [PATCH v4 1/5] doc: fix the description of RSS related feature

2023-11-27 Thread Ferruh Yigit
On 11/27/2023 2:16 PM, Huisong Li wrote: > This patch fixes the description of RSS feature. > And the settinf ot hash algorithm is introduced by 23.11, so add it. > > Fixes: 34ff088cc241 ("ethdev: set and query RSS hash algorithm") > > Signed-off-by: Huisong Li > Acked-by: Chengwen Feng > Ack

Re: [PATCH v4 5/5] doc: add dump device private information ops

2023-11-27 Thread Ferruh Yigit
On 11/27/2023 2:16 PM, Huisong Li wrote: > Add dump device private information to dev ops. > > Cc: sta...@dpdk.org > > Signed-off-by: Huisong Li > Acked-by: Chengwen Feng > Acked-by: Ferruh Yigit

Re: [PATCH 2/2] known_issues: drop note about UIO with really old kernels

2023-11-27 Thread Thomas Monjalon
17/07/2023 16:14, Bruce Richardson: > On Mon, Jul 03, 2023 at 04:59:47PM -0700, Stephen Hemminger wrote: > > On Thu, 17 Feb 2022 08:45:17 -0800 > > Stephen Hemminger wrote: > > > > > The DPDK has not supported 3.9 kernel for a long time so the > > > release note about UIO kernel bug in older vers

Re: [PATCH v4 0/5] doc/features: fix some features and add new features

2023-11-27 Thread Ferruh Yigit
On 11/27/2023 2:16 PM, Huisong Li wrote: > The support for setting RSS hash algorithm has been introduced to 23.11, > but doesn't add feature for it. So this series add this feature to RSS hash > and perfect RSS other features by the way. > > In addition, serval features or interface, like "set li

Re: [PATCH] doc: ensure sphinx output is reproducible

2023-11-27 Thread Thomas Monjalon
06/07/2023 14:49, Christian Ehrhardt: > On Mon, Jul 3, 2023 at 5:29 PM Thomas Monjalon wrote: > > > > 29/06/2023 14:58, christian.ehrha...@canonical.com: > > > From: Christian Ehrhardt > > > > > > By adding -j we build in parallel, to make building on multiprocessor > > > machines more effective.

Re: [PATCH] examples/l3fwd-power: fix to configure the uncore env

2023-11-27 Thread Bruce Richardson
On Thu, Nov 23, 2023 at 02:58:58AM +0100, Thomas Monjalon wrote: > 26/10/2023 17:19, Sivaprasad Tummala: > > Updated the l3fwd-power app to configure the uncore env before invoking > > any uncore APIs. With auto-detection in 'rte_power_uncore_init()' it is > > too late because other APIs already ca

Re: [PATCH v4 0/5] doc/features: fix some features and add new features

2023-11-27 Thread Ferruh Yigit
On 11/27/2023 2:16 PM, Huisong Li wrote: > The support for setting RSS hash algorithm has been introduced to 23.11, > but doesn't add feature for it. So this series add this feature to RSS hash > and perfect RSS other features by the way. > > In addition, serval features or interface, like "set li

Re: [PATCH] doc: ensure sphinx output is reproducible

2023-11-27 Thread Bruce Richardson
On Mon, Nov 27, 2023 at 05:45:52PM +0100, Thomas Monjalon wrote: > 06/07/2023 14:49, Christian Ehrhardt: > > On Mon, Jul 3, 2023 at 5:29 PM Thomas Monjalon wrote: > > > > > > 29/06/2023 14:58, christian.ehrha...@canonical.com: > > > > From: Christian Ehrhardt > > > > > > > > By adding -j we build

Re: [dpdk-dev] [PATCH v2] doc: define qualification criteria for external library

2023-11-27 Thread Stephen Hemminger
On Mon, 27 Nov 2023 17:25:55 +0100 Thomas Monjalon wrote: > > > > Distribution and unconditional use is not the case for existing > > library dependencies such as > > https://gitlab.com/nvidia/headers/cuda-individual/cudart/-/blob/main/LICENSE?ref_type=heads > > > > So I am not sure, Which is t

Re: [PATCH] eal: introduce missing rte_thread wrappers

2023-11-27 Thread Stephen Hemminger
On Mon, 27 Nov 2023 10:25:02 +0100 David Vodak wrote: > Function rte_ctrl_thread_create has been replaced by > rte_thread_create_control, > encouraging Linux users to switch from the pthread_t API to the rte_thread > API. > However the rte_thread API does not provide wrappers for all pthread >

Re: DPDK Release Status Meeting 2023-11-23

2023-11-27 Thread Stephen Hemminger
On Mon, 27 Nov 2023 11:13:16 +0100 Thomas Monjalon wrote: > ish. > > >> > > >> Due to a relative bigger RTE_MAX_LCORE value on ARM, the unit test case > > >> would take a longer time to finish iterations. > > >> In one of my run, the case took about 100s. > > > > > > Right, but this test is pa

Re: [PATCH] eal: introduce missing rte_thread wrappers

2023-11-27 Thread Tyler Retzlaff
On Mon, Nov 27, 2023 at 10:25:02AM +0100, David Vodak wrote: > Function rte_ctrl_thread_create has been replaced by > rte_thread_create_control, > encouraging Linux users to switch from the pthread_t API to the rte_thread > API. > However the rte_thread API does not provide wrappers for all pthre

[PATCH v2] raw/cnxk_bphy: switch to dynamic logging

2023-11-27 Thread Tomasz Duszynski
Dynamically allocated log type is a standard approach among all drivers. Switch to it. Signed-off-by: Tomasz Duszynski --- v2: - cleanup remaining plt_ log calls drivers/raw/cnxk_bphy/cnxk_bphy.c | 31 +++-- drivers/raw/cnxk_bphy/cnxk_bphy.h | 15 ++ dr

Re: [PATCH 0/3] fix some bug for hns3

2023-11-27 Thread Ferruh Yigit
On 11/27/2023 1:55 PM, Jie Hai wrote: > On 2023/11/27 21:39, Dengdui Huang wrote: >> Dengdui Huang (3): >>    net/hns3: fix reset detect be ignored >>    net/hns3: fix VF wrong clear reset status >>    net/hns3: fix the VF reset interrupted possibly > Hi, Dengdui, > > Good fix. > For the patchset,

Re: [PATCH] examples/l3fwd-power: fix to configure the uncore env

2023-11-27 Thread Thomas Monjalon
27/11/2023 17:54, Bruce Richardson: > On Thu, Nov 23, 2023 at 02:58:58AM +0100, Thomas Monjalon wrote: > > 26/10/2023 17:19, Sivaprasad Tummala: > > > Updated the l3fwd-power app to configure the uncore env before invoking > > > any uncore APIs. With auto-detection in 'rte_power_uncore_init()' it i

Re: [PATCH] examples/l3fwd-power: fix to configure the uncore env

2023-11-27 Thread Thomas Monjalon
27/10/2023 14:37, Hunt, David: > On 27/10/2023 13:36, Kelly, Karen wrote: > > On 26/10/2023 16:19, Sivaprasad Tummala wrote: > >> Updated the l3fwd-power app to configure the uncore env before invoking > >> any uncore APIs. With auto-detection in 'rte_power_uncore_init()' it is > >> too late becaus

Re: [PATCH v3 1/6] doc: add RSS hash algorithm feature

2023-11-27 Thread lihuisong (C)
在 2023/11/27 23:43, Ferruh Yigit 写道: On 11/27/2023 1:12 PM, lihuisong (C) wrote: 在 2023/11/27 20:19, Ferruh Yigit 写道: On 11/25/2023 1:47 AM, Huisong Li wrote: Add hash algorithm feature introduced by 23.11 and fix some RSS features description. Fixes: 34ff088cc241 ("ethdev: set and query RS

Re: [PATCH v3 1/6] doc: add RSS hash algorithm feature

2023-11-27 Thread lihuisong (C)
在 2023/11/28 0:35, Ferruh Yigit 写道: On 11/27/2023 3:43 PM, Ferruh Yigit wrote: On 11/27/2023 1:12 PM, lihuisong (C) wrote: 在 2023/11/27 20:19, Ferruh Yigit 写道: On 11/25/2023 1:47 AM, Huisong Li wrote: Add hash algorithm feature introduced by 23.11 and fix some RSS features description. Fix

Re: [PATCH v4 0/5] doc/features: fix some features and add new features

2023-11-27 Thread lihuisong (C)
在 2023/11/28 0:44, Ferruh Yigit 写道: On 11/27/2023 2:16 PM, Huisong Li wrote: The support for setting RSS hash algorithm has been introduced to 23.11, but doesn't add feature for it. So this series add this feature to RSS hash and perfect RSS other features by the way. In addition, serval feat

[PATCH] dmadev: support telemetry m2d auto free capa

2023-11-27 Thread Chengwen Feng
The m2d auto free capability was introduced in [1], but it lack the support in telemetry. [1] 877cb3e3742 dmadev: add buffer auto free offload Signed-off-by: Chengwen Feng --- lib/dmadev/rte_dmadev.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/dmadev/rte_dmadev.c b/lib/dmadev/rte_

Re: [PATCH v4 0/5] doc/features: fix some features and add new features

2023-11-27 Thread lihuisong (C)
在 2023/11/28 0:56, Ferruh Yigit 写道: On 11/27/2023 2:16 PM, Huisong Li wrote: The support for setting RSS hash algorithm has been introduced to 23.11, but doesn't add feature for it. So this series add this feature to RSS hash and perfect RSS other features by the way. In addition, serval feat

Re: [PATCH 0/3] fix some bug for hns3

2023-11-27 Thread Jie Hai
On 2023/11/28 2:33, Ferruh Yigit wrote: On 11/27/2023 1:55 PM, Jie Hai wrote: On 2023/11/27 21:39, Dengdui Huang wrote: Dengdui Huang (3):    net/hns3: fix reset detect be ignored    net/hns3: fix VF wrong clear reset status    net/hns3: fix the VF reset interrupted possibly Hi, Dengdui, G

Re: [PATCH v4 0/5] doc/features: fix some features and add new features

2023-11-27 Thread lihuisong (C)
在 2023/11/28 10:09, lihuisong (C) 写道: 在 2023/11/28 0:44, Ferruh Yigit 写道: On 11/27/2023 2:16 PM, Huisong Li wrote: The support for setting RSS hash algorithm has been introduced to 23.11, but doesn't add feature for it. So this series add this feature to RSS hash and perfect RSS other feat

Re: DPDK Release Status Meeting 2023-11-23

2023-11-27 Thread Ruifeng Wang
On 2023/11/28 1:16 AM, Stephen Hemminger wrote: On Mon, 27 Nov 2023 11:13:16 +0100 Thomas Monjalon wrote: ish. Due to a relative bigger RTE_MAX_LCORE value on ARM, the unit test case would take a longer time to finish iterations. In one of my run, the case took about 100s. Right, but this

[PATCH v5 0/3] doc/features: fix some features and add new features

2023-11-27 Thread Huisong Li
The support for setting RSS hash algorithm has been introduced to 23.11, but doesn't add feature for it. So this series add this feature to RSS hash and perfect RSS other features by the way. In addition, "set link up/down" and "dump device private information" had beed supported, but they are abs

[PATCH v5 2/3] doc: add link up/down feature

2023-11-27 Thread Huisong Li
Add link up/down feature for features.rst. Cc: sta...@dpdk.org Signed-off-by: Huisong Li Acked-by: Chengwen Feng Acked-by: Ferruh Yigit --- doc/guides/nics/features.rst | 4 1 file changed, 4 insertions(+) diff --git a/doc/guides/nics/features.rst b/doc/guides/nics/features.rst index 18

[PATCH v5 3/3] doc: add dump device private information ops

2023-11-27 Thread Huisong Li
Add dump device private information to dev ops. Cc: sta...@dpdk.org Signed-off-by: Huisong Li Acked-by: Chengwen Feng Acked-by: Ferruh Yigit --- doc/guides/nics/features.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/guides/nics/features.rst b/doc/guides/nics/features.rst index c

[PATCH v5 1/3] doc: fix the description of RSS related feature

2023-11-27 Thread Huisong Li
This patch fixes the description of RSS feature. And the settinf ot hash algorithm is introduced by 23.11, so add it. Fixes: 34ff088cc241 ("ethdev: set and query RSS hash algorithm") Signed-off-by: Huisong Li Acked-by: Chengwen Feng Acked-by: Ferruh Yigit --- doc/guides/nics/features.rst | 19

[PATCH 01/11] doc: add Traffic Manager feature

2023-11-27 Thread Huisong Li
Add Traffic Manager feature. Fixes: 5d109deffa87 ("ethdev: add traffic management API") Cc: sta...@dpdk.org Signed-off-by: Huisong Li Acked-by: Chengwen Feng --- doc/guides/nics/features.rst | 13 + doc/guides/nics/features/default.ini | 1 + 2 files changed, 14 insertions

[PATCH 02/11] doc: add Traffic Manager feature for iavf

2023-11-27 Thread Huisong Li
Add Traffic Manager feature for iavf. Cc: sta...@dpdk.org Signed-off-by: Huisong Li --- doc/guides/nics/features/iavf.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/guides/nics/features/iavf.ini b/doc/guides/nics/features/iavf.ini index db4f92ce71..385799c650 100644 --- a/doc/guid

[PATCH 03/11] doc: add Traffic Manager feature for i40e

2023-11-27 Thread Huisong Li
Add Traffic Manager feature for i40e. Cc: sta...@dpdk.org Signed-off-by: Huisong Li --- doc/guides/nics/features/i40e.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/guides/nics/features/i40e.ini b/doc/guides/nics/features/i40e.ini index e241dad047..2d168199f0 100644 --- a/doc/guid

[PATCH 04/11] doc: add Traffic Manager feature for ixgbe

2023-11-27 Thread Huisong Li
Add Traffic Manager feature for ixgbe. Cc: sta...@dpdk.org Signed-off-by: Huisong Li --- doc/guides/nics/features/ixgbe.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/guides/nics/features/ixgbe.ini b/doc/guides/nics/features/ixgbe.ini index 8590ac857f..f05fcec455 100644 --- a/doc/

[PATCH 00/11] add Traffic Manager feature

2023-11-27 Thread Huisong Li
The traffic management API has been introduced for a long time, please see commit 5d109deffa87 ("ethdev: add traffic management API"). And many PMD also support this feature. So this series add this feature to features.rst, default.ini and driver.ini. Huisong Li (11): doc: add Traffic Manager fe

[PATCH 05/11] doc: add Traffic Manager feature for cnxk

2023-11-27 Thread Huisong Li
Add Traffic Manager feature for cnxk. Cc: sta...@dpdk.org Signed-off-by: Huisong Li --- doc/guides/nics/features/cnxk.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/guides/nics/features/cnxk.ini b/doc/guides/nics/features/cnxk.ini index ac7de9a0f0..f85813ab52 100644 --- a/doc/guid

[PATCH 06/11] doc: add Traffic Manager feature for hns3

2023-11-27 Thread Huisong Li
Add Traffic Manager feature for hns3. Cc: sta...@dpdk.org Signed-off-by: Huisong Li --- doc/guides/nics/features/hns3.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/guides/nics/features/hns3.ini b/doc/guides/nics/features/hns3.ini index 338b4e6864..a20ece20e8 100644 --- a/doc/guid

[PATCH 07/11] doc: add Traffic Manager feature for txgbe

2023-11-27 Thread Huisong Li
Add Traffic Manager feature for txgbe. Cc: sta...@dpdk.org Signed-off-by: Huisong Li --- doc/guides/nics/features/txgbe.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/guides/nics/features/txgbe.ini b/doc/guides/nics/features/txgbe.ini index e21083052c..3a11fb2037 100644 --- a/doc/

[PATCH 08/11] doc: add Traffic Manager feature for mvpp2

2023-11-27 Thread Huisong Li
Add Traffic Manager feature for mvpp2. Cc: sta...@dpdk.org Signed-off-by: Huisong Li --- doc/guides/nics/features/mvpp2.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/guides/nics/features/mvpp2.ini b/doc/guides/nics/features/mvpp2.ini index 653c9d08cb..69767d6317 100644 --- a/doc/

[PATCH 09/11] doc: add Traffic Manager feature for dpaa2

2023-11-27 Thread Huisong Li
Add Traffic Manager feature for dpaa2. Cc: sta...@dpdk.org Signed-off-by: Huisong Li --- doc/guides/nics/features/dpaa2.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/guides/nics/features/dpaa2.ini b/doc/guides/nics/features/dpaa2.ini index 26dc8c2178..f02da463d9 100644 --- a/doc/

[PATCH 10/11] doc: add Traffic Manager feature for ipn3ke

2023-11-27 Thread Huisong Li
Add Traffic Manager feature for ipn3ke. Cc: sta...@dpdk.org Signed-off-by: Huisong Li --- doc/guides/nics/features/ipn3ke.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/guides/nics/features/ipn3ke.ini b/doc/guides/nics/features/ipn3ke.ini index 1f6b780273..e412978820 100644 --- a/

[PATCH 11/11] doc: add Traffic Manager feature for ice

2023-11-27 Thread Huisong Li
Add Traffic Manager feature for ice. Cc: sta...@dpdk.org Signed-off-by: Huisong Li --- doc/guides/nics/features/ice.ini | 1 + doc/guides/nics/features/ice_dcf.ini | 1 + 2 files changed, 2 insertions(+) diff --git a/doc/guides/nics/features/ice.ini b/doc/guides/nics/features/ice.ini index

RE: [PATCH v4 10/10] common/dpaxx: remove zero length array

2023-11-27 Thread Hemant Agrawal
Acked-by: Hemant Agrawal > -Original Message- > From: Stephen Hemminger > Sent: Friday, November 24, 2023 12:49 AM > To: Hemant Agrawal > Cc: Tyler Retzlaff ; dev@dpdk.org; Sachin > Saxena ; Gagandeep Singh > Subject: Re: [PATCH v4 10/10] common/dpaxx: remove zero length array > Import

RE: [PATCH 10/11] doc: add Traffic Manager feature for ipn3ke

2023-11-27 Thread Xu, Rosen
Hi, > -Original Message- > From: Huisong Li > Sent: Tuesday, November 28, 2023 2:10 PM > To: dev@dpdk.org; ferruh.yi...@amd.com; tho...@monjalon.net; Xu, > Rosen > Cc: liuyongl...@huawei.com; lihuis...@huawei.com > Subject: [PATCH 10/11] doc: add Traffic Manager feature for ipn3ke > > A