Re: [dpdk-dev] [PATCH v10 4/6] net/bnx2x: use common rte bit operation APIs instead

2024-02-17 Thread Mattias Rönnblom
On 2020-04-27 09:58, Joyce Kong wrote: Remove its own bit operation APIs and use the common one, this can reduce the code duplication largely. In an attempt to backtrack what the semantics of should/need actually be (because the API documentation doesn't say anything regarding atomicity), I

Re: [dpdk-dev] [PATCH v10 4/6] net/bnx2x: use common rte bit operation APIs instead

2024-02-17 Thread Thomas Monjalon
+Cc Julien Aube 17/02/2024 13:01, Mattias Rönnblom: > On 2020-04-27 09:58, Joyce Kong wrote: > > Remove its own bit operation APIs and use the common one, > > this can reduce the code duplication largely. > > > > In an attempt to backtrack what the semantics of > should/need actually be (becau

Re: [PATCH] net/nfp: add support of UDP fragmentation offload

2024-02-17 Thread Stephen Hemminger
On Sat, 17 Feb 2024 09:54:10 +0800 Chaoyong He wrote: > Add the support of UDP fragmentation offload feature. > > Signed-off-by: Chaoyong He > Reviewed-by: Long Wu > Reviewed-by: Peng Zhang > --- > drivers/common/nfp/nfp_common_ctrl.h | 1 + > drivers/net/nfp/nfd3/nfp_nfd3_dp.c | 7 ++-

RE: [PATCH] net/nfp: add support of UDP fragmentation offload

2024-02-17 Thread Morten Brørup
> From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Saturday, 17 February 2024 17.47 > > On Sat, 17 Feb 2024 09:54:10 +0800 > Chaoyong He wrote: > > > Add the support of UDP fragmentation offload feature. > > > > Signed-off-by: Chaoyong He > > Reviewed-by: Long Wu > > Reviewe

Re: [PATCH] net/nfp: add support of UDP fragmentation offload

2024-02-17 Thread Stephen Hemminger
On Sat, 17 Feb 2024 19:02:30 +0100 Morten Brørup wrote: > Not formally... it follows the official DPDK Coding Style [1]. > > [1]: https://doc.dpdk.org/guides/contributing/coding_style.html#general > > > Should be: > > > > if ((ol_flags & RTE_MBUF_F_TX_TCP_SEG) == 0 && > > (ol_flags

Re: [PATCH] doc: update minimum Linux kernel version

2024-02-17 Thread Patrick Robb
+Gao, DaxueX +Mcnamara, John Hello, As you say the Community Lab dropped main and next-* testing for RHEL7 when the requirement for a C11 compliant compiler was added last year, so we should already be good to go. We don't have any centos7 testing (centos8 was the first centos introduced for te

Re: [PATCH v4 01/18] mbuf: deprecate GCC marker in rte mbuf struct

2024-02-17 Thread fengchengwen
Some minor comments style may need adjust. With above fixed, Acked-by: Chengwen Feng On 2024/2/15 14:21, Tyler Retzlaff wrote: > Provide a macro that allows conditional expansion of RTE_MARKER fields > to empty to allow rte_mbuf to be used with MSVC. It is proposed that > we announce the fields

Re: [PATCH v4 02/18] mbuf: stop using zero sized marker fields

2024-02-17 Thread fengchengwen
Acked-by: Chengwen Feng On 2024/2/15 14:21, Tyler Retzlaff wrote: > Update to reference newly named anonymous union markers supported by > standard C and stop referencing zero sized compiler extension markers. > > Signed-off-by: Tyler Retzlaff > --- > lib/mbuf/rte_mbuf.h | 4 ++-- > 1 file cha

Re: [PATCH v4 12/18] net/hns3: stop using zero sized marker fields

2024-02-17 Thread fengchengwen
Acked-by: Chengwen Feng On 2024/2/15 14:21, Tyler Retzlaff wrote: > Update to reference newly named anonymous union markers supported by > standard C and stop referencing zero sized compiler extension markers. > > Signed-off-by: Tyler Retzlaff > --- ...

Re: [PATCH v2 3/3] add extension keyword to GCC statement expressions

2024-02-17 Thread fengchengwen
For drivers/dma/hisilicon/hisi_dmadev.c part, Acked-by: Chengwen Feng On 2024/2/16 18:24, David Marchand wrote: > From: Tyler Retzlaff > > Add __extension__ keyword to gcc statement expression extensions. > > Signed-off-by: Tyler Retzlaff > Reviewed-by: Ruifeng Wang > --- > drivers/bus/fslm

Re: [PATCH v2 0/3] replace use of EAL logtype in applications

2024-02-17 Thread fengchengwen
Series-acked-by: Chengwen Feng On 2024/2/16 11:36, Stephen Hemminger wrote: > There are some places EAL logtype is being used in testpmd > and examples where it should not be. Lets reserve EAL > logtype to only be used by DPDK internals. > > v2 - use TESTPMD_LOG() in testpmd log changes > > Ste

Re: [PATCH v2 0/6] use rte atomic thread fence

2024-02-17 Thread fengchengwen
Series-acked-by: Chengwen Feng On 2024/2/15 14:50, Tyler Retzlaff wrote: > Replace use of __atomic_thread_fence with rte_atomic_thread_fence. > > Notes: > > The rest of lib/lpm will be converted to rte_atomic in a separate > series (to be submitted soon). > > There are existing checkpatc

Re: [PATCH v3 0/7] fix race-condition of proactive error handling mode

2024-02-17 Thread fengchengwen
Hi Ferruh, This patchset will modify lib/ethdev/, Could you help review it before RC1? Thanks On 2024/1/29 9:16, fengchengwen wrote: > Hi Ferruh, > > Kindly ping for review. > > Thanks > > On 2024/1/15 9:44, fengchengwen wrote: >> Kindly ping. >> >> On 2023/12/5 10:30, fengchengwen wrote: >>>

[v2 02/10] net/mlx5/hws: add check for not supported fields in VXLAN

2024-02-17 Thread Itamar Gozlan
From: Erez Shitrit Don't allow the user to mask over rsvd1 / rsvd2 fields which are not supported. Fixes: dbff89ef806f ("net/mlx5/hws: fix tunnel protocol checks") Signed-off-by: Erez Shitrit Acked-by: Matan Azrad --- drivers/net/mlx5/hws/mlx5dr_definer.c | 7 +++ 1 file changed, 7 insert

[v2 01/10] net/mlx5/hws: skip RTE item when inserting rules by index

2024-02-17 Thread Itamar Gozlan
The location of indexed rules is determined by the index, not the item hash. A matcher test is added to prevent access to non-existent items. This avoids unnecessary processing and potential segmentation faults. Fixes: 405242c ("net/mlx5/hws: add rule object") Signed-off-by: Itamar Gozlan Acked-b

[v2 04/10] net/mlx5/hws: reordering the STE fields to improve hash

2024-02-17 Thread Itamar Gozlan
Inserting two rules with the same hash calculation result into the same matcher will cause collisions, which can cause degradation in PPS. Changing the order of some fields in the STE can change the hash result, and doing this for every value would give us a different hash distribution for the inpu

[v2 06/10] net/mlx5/hws: fix VLAN item handling on non relaxed mode

2024-02-17 Thread Itamar Gozlan
From: Hamdan Igbaria If a VLAN item was passed with null mask, the item handler would return immediately and thus won't set default values for non relax mode. Also change the non relax default set to single-tagged (CVLAN). Fixes: c55c2bf35333 ("net/mlx5/hws: add definer layer") Signed-off-by: Ha

[v2 03/10] net/mlx5/hws: add support for resizable matchers

2024-02-17 Thread Itamar Gozlan
From: Yevgeny Kliteynik Add support for matcher resize with the following new API calls: - mlx5dr_matcher_resize_set_target - mlx5dr_matcher_resize_rule_move The first function links two matchers and allows moving rules from src matcher to dst matcher. Both matchers should have the same charac

[v2 07/10] net/mlx5/hws: extend action template creation API

2024-02-17 Thread Itamar Gozlan
From: Hamdan Igbaria Extend mlx5dr_action_template_create function params to include flags parameter. Signed-off-by: Hamdan Igbaria Acked-by: Matan Azrad --- drivers/net/mlx5/hws/mlx5dr.h | 10 +- drivers/net/mlx5/hws/mlx5dr_action.c | 11 ++- drivers/net/mlx5/hws/mlx

[v2 05/10] net/mlx5/hws: check the rule status on rule update

2024-02-17 Thread Itamar Gozlan
From: Hamdan Igbaria Only allow rule updates for rules with their status value equal to MLX5DR_RULE_STATUS_CREATED. Otherwise, the rule may be in an unstable stage like deleting and this will result in a faulty unexpected scenario. Signed-off-by: Hamdan Igbaria Acked-by: Matan Azrad --- drive

[v2 08/10] net/mlx5/hws: add missing actions STE limitation

2024-02-17 Thread Itamar Gozlan
From: Hamdan Igbaria Today if we pass a remove header action and after it an insert header action then our action template builder will set two different STE setters, because it won't allow insert header in same STE as remove header. But if we have the opposite order of insert header and then rem

[v2 09/10] net/mlx5/hws: support push_esp flag for insert header action

2024-02-17 Thread Itamar Gozlan
From: Hamdan Igbaria support push_esp flag for insert header action, it must be set when inserting an ESP header, it's also sets the next_protocol field in the IPsec trailer. Signed-off-by: Hamdan Igbaria Acked-by: Matan Azrad --- drivers/common/mlx5/mlx5_prm.h | 3 ++- drivers/net/mlx5

[v2 10/10] net/mlx5/hws: typo fix parm to param

2024-02-17 Thread Itamar Gozlan
Fixing a typo in mlx5dr_cmd.c file, changing a variable name from stc_parm to stc_param, as short for parameter. Signed-off-by: Itamar Gozlan Acked-by: Matan Azrad --- drivers/net/mlx5/hws/mlx5dr_cmd.c | 68 +++ 1 file changed, 34 insertions(+), 34 deletions(-) diff