Message ID | 20210920074214.23747-1-venkatkumar.duvvuru@broadcom.com (mailing list archive) |
---|---|
Headers |
Return-Path: <dev-bounces@dpdk.org> X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id B9467A0548; Mon, 20 Sep 2021 09:42:21 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3650440DF7; Mon, 20 Sep 2021 09:42:21 +0200 (CEST) Received: from relay.smtp-ext.broadcom.com (relay.smtp-ext.broadcom.com [192.19.166.231]) by mails.dpdk.org (Postfix) with ESMTP id 8E32740DF5 for <dev@dpdk.org>; Mon, 20 Sep 2021 09:42:19 +0200 (CEST) Received: from S60.dhcp.broadcom.net (unknown [10.123.66.170]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by relay.smtp-ext.broadcom.com (Postfix) with ESMTPS id 8E2C7E5; Mon, 20 Sep 2021 00:42:17 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 relay.smtp-ext.broadcom.com 8E2C7E5 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=broadcom.com; s=dkimrelay; t=1632123738; bh=MDP7moRGX0neOLXkArDhRCejmBger5Icrrc3mgZBZwI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=pfM0+cJ4k1oMXtMx5p6+RG0T202UakJNiNnYcoERZI3RP/9wycefi36Ka9Gs2dCe3 pzqWv+ssvUDBCPVwMKk/xagC4gvRdhjlMppY68fVDzMDdXRw07DHhx1POHjQ9mZqe2 dCAvgUVJ7ehyPK+w0SJWRn4HwjSJTgsJ34U30Ork= From: Venkat Duvvuru <venkatkumar.duvvuru@broadcom.com> To: dev@dpdk.org Cc: Venkat Duvvuru <venkatkumar.duvvuru@broadcom.com> Date: Mon, 20 Sep 2021 13:12:01 +0530 Message-Id: <20210920074214.23747-1-venkatkumar.duvvuru@broadcom.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20210908050643.9989-1-venkatkumar.duvvuru@broadcom.com> References: <20210908050643.9989-1-venkatkumar.duvvuru@broadcom.com> Subject: [dpdk-dev] [PATCH v4 00/13] enhancements to host based flow table management X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions <dev.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/dev>, <mailto:dev-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/dev/> List-Post: <mailto:dev@dpdk.org> List-Help: <mailto:dev-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/dev>, <mailto:dev-request@dpdk.org?subject=subscribe> Errors-To: dev-bounces@dpdk.org Sender: "dev" <dev-bounces@dpdk.org> |
Series |
enhancements to host based flow table management
|
|
Message
Venkat Duvvuru
Sept. 20, 2021, 7:42 a.m. UTC
This patch set adds support for new offload features/enhancments for Thor adapters like VF representor support, new flow matches/actions & dynamic SRAM manager support. Farah Smith (4): net/bnxt: updates to TF core index table net/bnxt: add SRAM manager model net/bnxt: change log level to debug net/bnxt: add SRAM manager shared session Jay Ding (1): net/bnxt: add flow meter drop counter support Kishore Padmanabha (6): net/bnxt: add flow template support for Thor net/bnxt: add support for tunnel offload API net/bnxt: add support for dynamic encap action net/bnxt: add wild card TCAM byte order for Thor net/bnxt: add flow templates for Thor net/bnxt: add enhancements to TF ULP Peter Spreadborough (1): net/bnxt: enable dpool allocator Randy Schacher (1): net/bnxt: dynamically allocate space for EM defrag function doc/guides/rel_notes/release_21_11.rst | 6 + drivers/net/bnxt/tf_core/cfa_resource_types.h | 5 +- drivers/net/bnxt/tf_core/dpool.c | 38 +- drivers/net/bnxt/tf_core/ll.c | 3 + drivers/net/bnxt/tf_core/ll.h | 50 +- drivers/net/bnxt/tf_core/meson.build | 2 + drivers/net/bnxt/tf_core/tf_core.c | 169 +- drivers/net/bnxt/tf_core/tf_core.h | 159 +- drivers/net/bnxt/tf_core/tf_device.c | 40 +- drivers/net/bnxt/tf_core/tf_device.h | 137 +- drivers/net/bnxt/tf_core/tf_device_p4.c | 77 +- drivers/net/bnxt/tf_core/tf_device_p4.h | 50 +- drivers/net/bnxt/tf_core/tf_device_p58.c | 112 +- drivers/net/bnxt/tf_core/tf_device_p58.h | 70 +- drivers/net/bnxt/tf_core/tf_em.h | 10 - drivers/net/bnxt/tf_core/tf_em_common.c | 4 + .../net/bnxt/tf_core/tf_em_hash_internal.c | 34 - drivers/net/bnxt/tf_core/tf_em_internal.c | 185 +- drivers/net/bnxt/tf_core/tf_msg.c | 2 +- drivers/net/bnxt/tf_core/tf_rm.c | 180 +- drivers/net/bnxt/tf_core/tf_rm.h | 62 +- drivers/net/bnxt/tf_core/tf_session.c | 56 + drivers/net/bnxt/tf_core/tf_session.h | 58 +- drivers/net/bnxt/tf_core/tf_sram_mgr.c | 971 + drivers/net/bnxt/tf_core/tf_sram_mgr.h | 317 + drivers/net/bnxt/tf_core/tf_tbl.c | 259 +- drivers/net/bnxt/tf_core/tf_tbl.h | 87 +- drivers/net/bnxt/tf_core/tf_tbl_sram.c | 747 + drivers/net/bnxt/tf_core/tf_tbl_sram.h | 154 + drivers/net/bnxt/tf_core/tf_tcam.c | 16 +- drivers/net/bnxt/tf_core/tf_tcam.h | 7 + drivers/net/bnxt/tf_core/tf_tcam_shared.c | 28 +- drivers/net/bnxt/tf_core/tf_util.c | 12 + drivers/net/bnxt/tf_ulp/bnxt_tf_common.h | 10 +- drivers/net/bnxt/tf_ulp/bnxt_ulp.c | 52 +- drivers/net/bnxt/tf_ulp/bnxt_ulp.h | 20 +- drivers/net/bnxt/tf_ulp/bnxt_ulp_flow.c | 226 +- .../bnxt/tf_ulp/generic_templates/meson.build | 3 + .../generic_templates/ulp_template_db_act.c | 2 +- .../generic_templates/ulp_template_db_class.c | 12109 +++- .../generic_templates/ulp_template_db_enum.h | 618 +- .../generic_templates/ulp_template_db_field.h | 767 +- .../generic_templates/ulp_template_db_tbl.c | 2757 +- .../ulp_template_db_thor_act.c | 5079 +- .../ulp_template_db_thor_class.c | 45573 ++++++++++++++-- .../ulp_template_db_wh_plus_act.c | 1700 +- .../ulp_template_db_wh_plus_class.c | 8329 ++- drivers/net/bnxt/tf_ulp/ulp_fc_mgr.c | 48 +- drivers/net/bnxt/tf_ulp/ulp_fc_mgr.h | 8 +- drivers/net/bnxt/tf_ulp/ulp_flow_db.c | 678 +- drivers/net/bnxt/tf_ulp/ulp_flow_db.h | 68 +- drivers/net/bnxt/tf_ulp/ulp_gen_tbl.c | 9 +- drivers/net/bnxt/tf_ulp/ulp_mapper.c | 448 +- drivers/net/bnxt/tf_ulp/ulp_mapper.h | 10 +- drivers/net/bnxt/tf_ulp/ulp_matcher.c | 13 + drivers/net/bnxt/tf_ulp/ulp_port_db.c | 15 +- drivers/net/bnxt/tf_ulp/ulp_rte_handler_tbl.c | 31 + drivers/net/bnxt/tf_ulp/ulp_rte_parser.c | 663 +- drivers/net/bnxt/tf_ulp/ulp_rte_parser.h | 12 +- drivers/net/bnxt/tf_ulp/ulp_template_struct.h | 32 +- drivers/net/bnxt/tf_ulp/ulp_tun.c | 521 +- drivers/net/bnxt/tf_ulp/ulp_tun.h | 89 +- drivers/net/bnxt/tf_ulp/ulp_utils.c | 71 +- drivers/net/bnxt/tf_ulp/ulp_utils.h | 27 +- 64 files changed, 71146 insertions(+), 12949 deletions(-) create mode 100644 drivers/net/bnxt/tf_core/tf_sram_mgr.c create mode 100644 drivers/net/bnxt/tf_core/tf_sram_mgr.h create mode 100644 drivers/net/bnxt/tf_core/tf_tbl_sram.c create mode 100644 drivers/net/bnxt/tf_core/tf_tbl_sram.h
Comments
On Mon, Sep 20, 2021 at 12:42 AM Venkat Duvvuru <venkatkumar.duvvuru@broadcom.com> wrote: > > This patch set adds support for new offload features/enhancments for > Thor adapters like VF representor support, new flow matches/actions > & dynamic SRAM manager support. > > Farah Smith (4): > net/bnxt: updates to TF core index table > net/bnxt: add SRAM manager model > net/bnxt: change log level to debug > net/bnxt: add SRAM manager shared session > > Jay Ding (1): > net/bnxt: add flow meter drop counter support > > Kishore Padmanabha (6): > net/bnxt: add flow template support for Thor > net/bnxt: add support for tunnel offload API > net/bnxt: add support for dynamic encap action > net/bnxt: add wild card TCAM byte order for Thor > net/bnxt: add flow templates for Thor > net/bnxt: add enhancements to TF ULP > > Peter Spreadborough (1): > net/bnxt: enable dpool allocator > > Randy Schacher (1): > net/bnxt: dynamically allocate space for EM defrag function For the patchset, Acked-by: Ajit Khaparde <ajit.khaparde@broadcom.com> Patchset applied to dpdk-next-net-brcm. 1) Changed instance of TF to TRUFLOW during merge in patch 1/13 and 13/13. Please apply to dpdk-next-net. Thanks > > doc/guides/rel_notes/release_21_11.rst | 6 + > drivers/net/bnxt/tf_core/cfa_resource_types.h | 5 +- > drivers/net/bnxt/tf_core/dpool.c | 38 +- > drivers/net/bnxt/tf_core/ll.c | 3 + > drivers/net/bnxt/tf_core/ll.h | 50 +- > drivers/net/bnxt/tf_core/meson.build | 2 + > drivers/net/bnxt/tf_core/tf_core.c | 169 +- > drivers/net/bnxt/tf_core/tf_core.h | 159 +- > drivers/net/bnxt/tf_core/tf_device.c | 40 +- > drivers/net/bnxt/tf_core/tf_device.h | 137 +- > drivers/net/bnxt/tf_core/tf_device_p4.c | 77 +- > drivers/net/bnxt/tf_core/tf_device_p4.h | 50 +- > drivers/net/bnxt/tf_core/tf_device_p58.c | 112 +- > drivers/net/bnxt/tf_core/tf_device_p58.h | 70 +- > drivers/net/bnxt/tf_core/tf_em.h | 10 - > drivers/net/bnxt/tf_core/tf_em_common.c | 4 + > .../net/bnxt/tf_core/tf_em_hash_internal.c | 34 - > drivers/net/bnxt/tf_core/tf_em_internal.c | 185 +- > drivers/net/bnxt/tf_core/tf_msg.c | 2 +- > drivers/net/bnxt/tf_core/tf_rm.c | 180 +- > drivers/net/bnxt/tf_core/tf_rm.h | 62 +- > drivers/net/bnxt/tf_core/tf_session.c | 56 + > drivers/net/bnxt/tf_core/tf_session.h | 58 +- > drivers/net/bnxt/tf_core/tf_sram_mgr.c | 971 + > drivers/net/bnxt/tf_core/tf_sram_mgr.h | 317 + > drivers/net/bnxt/tf_core/tf_tbl.c | 259 +- > drivers/net/bnxt/tf_core/tf_tbl.h | 87 +- > drivers/net/bnxt/tf_core/tf_tbl_sram.c | 747 + > drivers/net/bnxt/tf_core/tf_tbl_sram.h | 154 + > drivers/net/bnxt/tf_core/tf_tcam.c | 16 +- > drivers/net/bnxt/tf_core/tf_tcam.h | 7 + > drivers/net/bnxt/tf_core/tf_tcam_shared.c | 28 +- > drivers/net/bnxt/tf_core/tf_util.c | 12 + > drivers/net/bnxt/tf_ulp/bnxt_tf_common.h | 10 +- > drivers/net/bnxt/tf_ulp/bnxt_ulp.c | 52 +- > drivers/net/bnxt/tf_ulp/bnxt_ulp.h | 20 +- > drivers/net/bnxt/tf_ulp/bnxt_ulp_flow.c | 226 +- > .../bnxt/tf_ulp/generic_templates/meson.build | 3 + > .../generic_templates/ulp_template_db_act.c | 2 +- > .../generic_templates/ulp_template_db_class.c | 12109 +++- > .../generic_templates/ulp_template_db_enum.h | 618 +- > .../generic_templates/ulp_template_db_field.h | 767 +- > .../generic_templates/ulp_template_db_tbl.c | 2757 +- > .../ulp_template_db_thor_act.c | 5079 +- > .../ulp_template_db_thor_class.c | 45573 ++++++++++++++-- > .../ulp_template_db_wh_plus_act.c | 1700 +- > .../ulp_template_db_wh_plus_class.c | 8329 ++- > drivers/net/bnxt/tf_ulp/ulp_fc_mgr.c | 48 +- > drivers/net/bnxt/tf_ulp/ulp_fc_mgr.h | 8 +- > drivers/net/bnxt/tf_ulp/ulp_flow_db.c | 678 +- > drivers/net/bnxt/tf_ulp/ulp_flow_db.h | 68 +- > drivers/net/bnxt/tf_ulp/ulp_gen_tbl.c | 9 +- > drivers/net/bnxt/tf_ulp/ulp_mapper.c | 448 +- > drivers/net/bnxt/tf_ulp/ulp_mapper.h | 10 +- > drivers/net/bnxt/tf_ulp/ulp_matcher.c | 13 + > drivers/net/bnxt/tf_ulp/ulp_port_db.c | 15 +- > drivers/net/bnxt/tf_ulp/ulp_rte_handler_tbl.c | 31 + > drivers/net/bnxt/tf_ulp/ulp_rte_parser.c | 663 +- > drivers/net/bnxt/tf_ulp/ulp_rte_parser.h | 12 +- > drivers/net/bnxt/tf_ulp/ulp_template_struct.h | 32 +- > drivers/net/bnxt/tf_ulp/ulp_tun.c | 521 +- > drivers/net/bnxt/tf_ulp/ulp_tun.h | 89 +- > drivers/net/bnxt/tf_ulp/ulp_utils.c | 71 +- > drivers/net/bnxt/tf_ulp/ulp_utils.h | 27 +- > 64 files changed, 71146 insertions(+), 12949 deletions(-) > create mode 100644 drivers/net/bnxt/tf_core/tf_sram_mgr.c > create mode 100644 drivers/net/bnxt/tf_core/tf_sram_mgr.h > create mode 100644 drivers/net/bnxt/tf_core/tf_tbl_sram.c > create mode 100644 drivers/net/bnxt/tf_core/tf_tbl_sram.h > > -- > 2.17.1 >
On 9/21/2021 5:50 AM, Ajit Khaparde wrote: > On Mon, Sep 20, 2021 at 12:42 AM Venkat Duvvuru > <venkatkumar.duvvuru@broadcom.com> wrote: >> >> This patch set adds support for new offload features/enhancments for >> Thor adapters like VF representor support, new flow matches/actions >> & dynamic SRAM manager support. >> >> Farah Smith (4): >> net/bnxt: updates to TF core index table >> net/bnxt: add SRAM manager model >> net/bnxt: change log level to debug >> net/bnxt: add SRAM manager shared session >> >> Jay Ding (1): >> net/bnxt: add flow meter drop counter support >> >> Kishore Padmanabha (6): >> net/bnxt: add flow template support for Thor >> net/bnxt: add support for tunnel offload API >> net/bnxt: add support for dynamic encap action >> net/bnxt: add wild card TCAM byte order for Thor >> net/bnxt: add flow templates for Thor >> net/bnxt: add enhancements to TF ULP >> >> Peter Spreadborough (1): >> net/bnxt: enable dpool allocator >> >> Randy Schacher (1): >> net/bnxt: dynamically allocate space for EM defrag function > > For the patchset, > Acked-by: Ajit Khaparde <ajit.khaparde@broadcom.com> > > Patchset applied to dpdk-next-net-brcm. > 1) Changed instance of TF to TRUFLOW during merge in patch 1/13 and 13/13. > > Please apply to dpdk-next-net. Thanks > Hi Ajit, The github actions fails on build for gcc, please check it on my personal github repo: https://github.com/ferruhy/dpdk/actions/runs/1262767538 I don't have this error in my environment, this can be related to the slightly older compiler in the github (gcc 7.5) Can you please check the build error? I will keep the set in next-net for now, but won't mark it to pull to main until issue is resolved. If the fix is trivial, we can update it in the next-net (after issue recorded in mail list), if it is not trivial may require a new version of the set. btw, in git history 'TruFlow' is used, so I continue to use it, fyi. Thanks, ferruh
On Wed, Sep 22, 2021 at 10:36 AM Ferruh Yigit <ferruh.yigit@intel.com> wrote: > > On 9/21/2021 5:50 AM, Ajit Khaparde wrote: > > On Mon, Sep 20, 2021 at 12:42 AM Venkat Duvvuru > > <venkatkumar.duvvuru@broadcom.com> wrote: > >> > >> This patch set adds support for new offload features/enhancments for > >> Thor adapters like VF representor support, new flow matches/actions > >> & dynamic SRAM manager support. > >> > >> Farah Smith (4): > >> net/bnxt: updates to TF core index table > >> net/bnxt: add SRAM manager model > >> net/bnxt: change log level to debug > >> net/bnxt: add SRAM manager shared session > >> > >> Jay Ding (1): > >> net/bnxt: add flow meter drop counter support > >> > >> Kishore Padmanabha (6): > >> net/bnxt: add flow template support for Thor > >> net/bnxt: add support for tunnel offload API > >> net/bnxt: add support for dynamic encap action > >> net/bnxt: add wild card TCAM byte order for Thor > >> net/bnxt: add flow templates for Thor > >> net/bnxt: add enhancements to TF ULP > >> > >> Peter Spreadborough (1): > >> net/bnxt: enable dpool allocator > >> > >> Randy Schacher (1): > >> net/bnxt: dynamically allocate space for EM defrag function > > > > For the patchset, > > Acked-by: Ajit Khaparde <ajit.khaparde@broadcom.com> > > > > Patchset applied to dpdk-next-net-brcm. > > 1) Changed instance of TF to TRUFLOW during merge in patch 1/13 and 13/13. > > > > Please apply to dpdk-next-net. Thanks > > > > Hi Ajit, > > The github actions fails on build for gcc, please check it on my personal github > repo: > https://github.com/ferruhy/dpdk/actions/runs/1262767538 > > I don't have this error in my environment, this can be related to the slightly > older compiler in the github (gcc 7.5) Yes, even I did not see this. Looks genuine and likely because of some different compiler. I will try to submit a fix. Will you be able to squash it with the relevant commit? FAILED: drivers/a715181@@tmp_rte_net_bnxt@sta/net_bnxt_tf_core_tf_sram_mgr.c.o ccache gcc -Idrivers/a715181@@tmp_rte_net_bnxt@sta -Idrivers -I../drivers -Idrivers/net/bnxt -I../drivers/net/bnxt -Idrivers/net/bnxt/tf_ulp -I../drivers/net/bnxt/tf_ulp -Idrivers/net/bnxt/tf_ulp/generic_templates -I../drivers/net/bnxt/tf_ulp/generic_templates -Idrivers/net/bnxt/tf_core -I../drivers/net/bnxt/tf_core -Idrivers/net/bnxt/hcapi/cfa -I../drivers/net/bnxt/hcapi/cfa -Ilib/ethdev -I../lib/ethdev -I. -I../ -Iconfig -I../config -Ilib/eal/include -I../lib/eal/include -Ilib/eal/linux/include -I../lib/eal/linux/include -Ilib/eal/x86/include -I../lib/eal/x86/include -Ilib/eal/common -I../lib/eal/common -Ilib/eal -I../lib/eal -Ilib/kvargs -I../lib/kvargs -Ilib/telemetry/../metrics -I../lib/telemetry/../metrics -Ilib/telemetry -I../lib/telemetry -Ilib/net -I../lib/net -Ilib/mbuf -I../lib/mbuf -Ilib/mempool -I../lib/mempool -Ilib/ring -I../lib/ring -Ilib/meter -I../lib/meter -Idrivers/bus/pci -I../drivers/bus/pci -I../drivers/bus/pci/linux -Ilib/pci -I../lib/pci -Idrivers/bus/vdev -I../drivers/bus/vdev -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Werror -O2 -g -include rte_config.h -Wextra -Wcast-qual -Wdeprecated -Wformat -Wformat-nonliteral -Wformat-security -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpointer-arith -Wsign-compare -Wstrict-prototypes -Wundef -Wwrite-strings -Wno-missing-field-initializers -D_GNU_SOURCE -fPIC -march=corei7 -DALLOW_EXPERIMENTAL_API -DALLOW_INTERNAL_API -Wno-format-truncation -DRTE_LIBRTE_BNXT_TF -DSUPPORT_CFA_HW_ALL=1 -DCC_AVX2_SUPPORT -DRTE_LOG_DEFAULT_LOGTYPE=pmd.net.bnxt -MD -MQ 'drivers/a715181@@tmp_rte_net_bnxt@sta/net_bnxt_tf_core_tf_sram_mgr.c.o' -MF 'drivers/a715181@@tmp_rte_net_bnxt@sta/net_bnxt_tf_core_tf_sram_mgr.c.o.d' -o 'drivers/a715181@@tmp_rte_net_bnxt@sta/net_bnxt_tf_core_tf_sram_mgr.c.o' -c ../drivers/net/bnxt/tf_core/tf_sram_mgr.c ../drivers/net/bnxt/tf_core/tf_sram_mgr.c: In function ‘tf_sram_mgr_bind’: ../drivers/net/bnxt/tf_core/tf_sram_mgr.c:418:19: error: ‘slice_list’ may be used uninitialized in this function [-Werror=maybe-uninitialized] slice_list->tail = NULL; ^ ../drivers/net/bnxt/tf_core/tf_sram_mgr.c:574:29: note: ‘slice_list’ was declared here struct tf_sram_slice_list *slice_list; ^~~~~~~~~~ cc1: all warnings being treated as errors > > Can you please check the build error? I will keep the set in next-net for now, > but won't mark it to pull to main until issue is resolved. > If the fix is trivial, we can update it in the next-net (after issue recorded in > mail list), if it is not trivial may require a new version of the set. > > > btw, in git history 'TruFlow' is used, so I continue to use it, fyi. No problem. Thanks > > Thanks, > ferruh >
On 9/22/2021 9:21 PM, Ajit Khaparde wrote: > On Wed, Sep 22, 2021 at 10:36 AM Ferruh Yigit <ferruh.yigit@intel.com> wrote: >> >> On 9/21/2021 5:50 AM, Ajit Khaparde wrote: >>> On Mon, Sep 20, 2021 at 12:42 AM Venkat Duvvuru >>> <venkatkumar.duvvuru@broadcom.com> wrote: >>>> >>>> This patch set adds support for new offload features/enhancments for >>>> Thor adapters like VF representor support, new flow matches/actions >>>> & dynamic SRAM manager support. >>>> >>>> Farah Smith (4): >>>> net/bnxt: updates to TF core index table >>>> net/bnxt: add SRAM manager model >>>> net/bnxt: change log level to debug >>>> net/bnxt: add SRAM manager shared session >>>> >>>> Jay Ding (1): >>>> net/bnxt: add flow meter drop counter support >>>> >>>> Kishore Padmanabha (6): >>>> net/bnxt: add flow template support for Thor >>>> net/bnxt: add support for tunnel offload API >>>> net/bnxt: add support for dynamic encap action >>>> net/bnxt: add wild card TCAM byte order for Thor >>>> net/bnxt: add flow templates for Thor >>>> net/bnxt: add enhancements to TF ULP >>>> >>>> Peter Spreadborough (1): >>>> net/bnxt: enable dpool allocator >>>> >>>> Randy Schacher (1): >>>> net/bnxt: dynamically allocate space for EM defrag function >>> >>> For the patchset, >>> Acked-by: Ajit Khaparde <ajit.khaparde@broadcom.com> >>> >>> Patchset applied to dpdk-next-net-brcm. >>> 1) Changed instance of TF to TRUFLOW during merge in patch 1/13 and 13/13. >>> >>> Please apply to dpdk-next-net. Thanks >>> >> >> Hi Ajit, >> >> The github actions fails on build for gcc, please check it on my personal github >> repo: >> https://github.com/ferruhy/dpdk/actions/runs/1262767538 >> >> I don't have this error in my environment, this can be related to the slightly >> older compiler in the github (gcc 7.5) > > Yes, even I did not see this. Looks genuine and likely because of some > different compiler. > I will try to submit a fix. Will you be able to squash it with the > relevant commit? > If you can send the fix on top of latest next-net, I can squash it in next-net, assuming the fix is simple. > > > FAILED: drivers/a715181@@tmp_rte_net_bnxt@sta/net_bnxt_tf_core_tf_sram_mgr.c.o > ccache gcc -Idrivers/a715181@@tmp_rte_net_bnxt@sta -Idrivers > -I../drivers -Idrivers/net/bnxt -I../drivers/net/bnxt > -Idrivers/net/bnxt/tf_ulp -I../drivers/net/bnxt/tf_ulp > -Idrivers/net/bnxt/tf_ulp/generic_templates > -I../drivers/net/bnxt/tf_ulp/generic_templates > -Idrivers/net/bnxt/tf_core -I../drivers/net/bnxt/tf_core > -Idrivers/net/bnxt/hcapi/cfa -I../drivers/net/bnxt/hcapi/cfa > -Ilib/ethdev -I../lib/ethdev -I. -I../ -Iconfig -I../config > -Ilib/eal/include -I../lib/eal/include -Ilib/eal/linux/include > -I../lib/eal/linux/include -Ilib/eal/x86/include > -I../lib/eal/x86/include -Ilib/eal/common -I../lib/eal/common > -Ilib/eal -I../lib/eal -Ilib/kvargs -I../lib/kvargs > -Ilib/telemetry/../metrics -I../lib/telemetry/../metrics > -Ilib/telemetry -I../lib/telemetry -Ilib/net -I../lib/net -Ilib/mbuf > -I../lib/mbuf -Ilib/mempool -I../lib/mempool -Ilib/ring -I../lib/ring > -Ilib/meter -I../lib/meter -Idrivers/bus/pci -I../drivers/bus/pci > -I../drivers/bus/pci/linux -Ilib/pci -I../lib/pci -Idrivers/bus/vdev > -I../drivers/bus/vdev -fdiagnostics-color=always -pipe > -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Werror -O2 -g -include > rte_config.h -Wextra -Wcast-qual -Wdeprecated -Wformat > -Wformat-nonliteral -Wformat-security -Wmissing-declarations > -Wmissing-prototypes -Wnested-externs -Wold-style-definition > -Wpointer-arith -Wsign-compare -Wstrict-prototypes -Wundef > -Wwrite-strings -Wno-missing-field-initializers -D_GNU_SOURCE -fPIC > -march=corei7 -DALLOW_EXPERIMENTAL_API -DALLOW_INTERNAL_API > -Wno-format-truncation -DRTE_LIBRTE_BNXT_TF -DSUPPORT_CFA_HW_ALL=1 > -DCC_AVX2_SUPPORT -DRTE_LOG_DEFAULT_LOGTYPE=pmd.net.bnxt -MD -MQ > 'drivers/a715181@@tmp_rte_net_bnxt@sta/net_bnxt_tf_core_tf_sram_mgr.c.o' > -MF 'drivers/a715181@@tmp_rte_net_bnxt@sta/net_bnxt_tf_core_tf_sram_mgr.c.o.d' > -o 'drivers/a715181@@tmp_rte_net_bnxt@sta/net_bnxt_tf_core_tf_sram_mgr.c.o' > -c ../drivers/net/bnxt/tf_core/tf_sram_mgr.c > ../drivers/net/bnxt/tf_core/tf_sram_mgr.c: In function ‘tf_sram_mgr_bind’: > ../drivers/net/bnxt/tf_core/tf_sram_mgr.c:418:19: error: ‘slice_list’ > may be used uninitialized in this function > [-Werror=maybe-uninitialized] > slice_list->tail = NULL; > ^ > ../drivers/net/bnxt/tf_core/tf_sram_mgr.c:574:29: note: ‘slice_list’ > was declared here > struct tf_sram_slice_list *slice_list; > ^~~~~~~~~~ > cc1: all warnings being treated as errors > >> >> Can you please check the build error? I will keep the set in next-net for now, >> but won't mark it to pull to main until issue is resolved. >> If the fix is trivial, we can update it in the next-net (after issue recorded in >> mail list), if it is not trivial may require a new version of the set. >> >> >> btw, in git history 'TruFlow' is used, so I continue to use it, fyi. > No problem. Thanks > >> >> Thanks, >> ferruh >>